diff --git a/python/RatioPlots.py b/python/RatioPlots.py new file mode 100644 index 000000000..ba014415a --- /dev/null +++ b/python/RatioPlots.py @@ -0,0 +1,174 @@ +import matplotlib +matplotlib.use("Agg") +import ROOT +from root_numpy import root2array, tree2array +import numpy as np +import matplotlib.pyplot as plt +from rootpy.plotting import Hist, HistStack +import rootpy.plotting.root2matplotlib as rplt +from rootpy.io import root_open +from matplotlib.ticker import AutoMinorLocator +import matplotlib.lines as mlines +import matplotlib.patches as mpatches +import rootpy + +varnames = { + "sl_jge6_tge4__jetsByPt_1_bjet_pt" : r"subleading b-jet $p_T$ [GeV]", + "sl_jge6_tge4__jetsByPt_0_lightjet_pt" : r"leading light jet $p_T$ [GeV]", + "dl_jge4_tge4__jetsByPt_1_bjet_pt" : r"subleading b-jet $p_T$ [GeV]", + "dl_jge4_tge4__jetsByPt_0_lightjet_pt" : r"leading light jet $p_T$ [GeV]" +} + +template = { + "sl_jge6_tge4__jetsByPt_0_lightjet_pt" : rootpy.plotting.Hist(30,0,200), + "sl_jge6_tge4__jetsByPt_1_bjet_pt" : rootpy.plotting.Hist(30,0,300), + "dl_jge4_tge4__jetsByPt_0_lightjet_pt" : rootpy.plotting.Hist(30,0,200), + "dl_jge4_tge4__jetsByPt_1_bjet_pt" : rootpy.plotting.Hist(30,0,300) +} + +regions_Znn = [ + "SR_high1_Znn", + "SR_high1_Znn_BOOST", + "SR_high2_Znn", + "SR_high2_Znn_BOOST", + "SR_med_Znn_0j", + "SR_med_Znn_ge1j", + "Zhf_high_Znn", + "Zhf_high_Znn_BOOST", + "Zhf_med_Znn" +] + +regions_Zee = [ + "SR_high1_Zee", + "SR_high1_Zee_BOOST", + "SR_high2_Zee", + "SR_high2_Zee_BOOST", + "SR_med_Zee_0j", + "SR_med_Zee_ge1j", + "SR_low_Zee", + "Zhf_high_Zee", + "Zhf_high_Zee_BOOST", + "Zhf_med_Zee", + "Zhf_low_Zee" +] + +regions_Zmm = [ + "SR_high1_Zmm", + "SR_high1_Zmm_BOOST", + "SR_high2_Zmm", + "SR_high2_Zmm_BOOST", + "SR_med_Zmm_0j", + "SR_med_Zmm_ge1j", + "SR_low_Zmm", + "Zhf_high_Zmm", + "Zhf_high_Zmm_BOOST", + "Zhf_med_Zmm", + "Zhf_low_Zmm" +] + +regions_Wen = [ + "SR_high1_Wen", + "SR_high1_Wen_BOOST", + "SR_high2_Wen", + "SR_high2_Wen_BOOST", + "SR_med_Wen", + "Whf_high_Wen", + "Whf_high_Wen_BOOST", + "Whf_med_Wen", +] + +regions_Wmn = [ + "SR_high1_Wmn", + "SR_high1_Wmn_BOOST", + "SR_high2_Wmn", + "SR_high2_Wmn_BOOST", + "SR_med_Wmn", + "Whf_high_Wmn", + "Whf_high_Wmn_BOOST", + "Whf_med_Wmn", +] + + + + +# function to post the post-fit shapes +def draw_prefit_postfit_shape(shapefile1, shapefile2, region, process): + + f1 = root_open(shapefile1, 'read') + f2 = root_open(shapefile2, 'read') + + b1_w = f1.Get(region + "/" + process + "1b") + b1_wo = f2.Get(region + "/" + process + "1b") + + b2_w = f1.Get(region + "/" + process + "2b") + b2_wo = f2.Get(region + "/" + process + "2b") + + temp1 = (b1_w + b2_w) + temp2 = (b1_wo + b2_wo) + + #temp1 = template[cat].Clone(wStitching.GetName()) + #temp2 = template[cat].Clone(woStitching.GetName()) + #for ibin in range(pre.GetNbinsX()+2): + # temp1.SetBinContent(ibin, wStitching.GetBinContent(ibin)) + # temp1.SetBinContent(ibin, wStitching.GetBinContent(ibin)) + # temp2.SetBinContent(ibin, woStitching.GetBinContent(ibin)) + # temp2.SetBinContent(ibin, woStitching.GetBinContent(ibin)) + + fig = plt.figure(figsize=(6,6)) + a1 = plt.axes([0.0,0.22,1.0,0.8]) + + # do top panel + fig.suptitle(r"$\mathbf{CMS}$ private work", y=1.02, x=0.02, horizontalalignment="left", verticalalignment="bottom", fontsize=16) + + # do main plot + temp1.linecolor = "blue" + temp2.linecolor = "red" + + p1, = rplt.step(temp1) + p2, = rplt.step(temp2) + + plt.legend([p1,p2], ['Old Stitching', 'w/o Stitching'], loc='best', prop={'size':16}) + + xmin = temp1.GetXaxis().GetXmin() + xmax = temp2.GetXaxis().GetXmax() + print xmin, xmax + a1.set_xlim(xmin,xmax) + a1.get_xaxis().set_visible(False) + a1.set_ylim(bottom=0, top=1.2*a1.get_ylim()[1]) + + #a1.grid(zorder=100000) + plt.ylabel("events / bin", fontsize=24) + + # do ratio plot + a2 = plt.axes([0.0,0.0, 1.0, 0.18], sharex=a1) + minorLocator = AutoMinorLocator() + a2.yaxis.set_minor_locator(minorLocator) + + plt.xlabel("Discriminant", fontsize=24) + #a2.grid(which='minor', axis='y', linestyle='-') + + ratio = temp2.clone() + ratio.linecolor = "green" + ratio.Divide(temp1) + + rplt.step(ratio) + plt.ylabel("ratio", fontsize=16) + plt.axhline(1.0, color="black") + + a2.set_ylim(0.4, 1.6) + ticks = a1.get_xticks() + a2.set_xticks(ticks) + a2.set_xlim(xmin, xmax) + + fig.savefig("shapes_"+region+"_"+process+".png", pad_inches=0.5, bbox_inches='tight') + fig.savefig("shapes_"+region+"_"+process+".pdf", pad_inches=0.5, bbox_inches='tight') + +if __name__=="__main__": + + shapefile1 = "/work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/logs_Wlv2016/rundc-2021-03-09/Limits/vhbb_Wmn-2016.root" + shapefile2 = "/work/creissel/VHbb/CMSSW_10_2_13/src/CombineHarvester/VHLegacy/shapes/Xbb_2021-03-06/vhbb_Wmn-2016.root" + + for reg in regions_Wmn: + for proc in ["Wj"]: + draw_prefit_postfit_shape(shapefile1, shapefile2, reg, proc) + diff --git a/python/VHbb2016commonconfig/EventCounts2016V11.ini b/python/VHbb2016commonconfig/EventCounts2016V11.ini new file mode 100644 index 000000000..24eb27d7f --- /dev/null +++ b/python/VHbb2016commonconfig/EventCounts2016V11.ini @@ -0,0 +1,7 @@ +[EventCounts] +DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 8646942 +DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 7659109 +DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 8292957 +DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2673066 +ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8: 73379299.18 +WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8: 194300496.6 diff --git a/python/VHbb2016commonconfig/general.ini b/python/VHbb2016commonconfig/general.ini index e66f847d2..b98cd401d 100644 --- a/python/VHbb2016commonconfig/general.ini +++ b/python/VHbb2016commonconfig/general.ini @@ -14,12 +14,13 @@ electronMVA = MVAtype = DNN dataset = 2016 +nTupleVersion = V11 #VjetFlavor = Default VjetFlavor = VJ4 # -------------------------------------------------------------------------------------------------- -# b-taging +# b-tagging # -------------------------------------------------------------------------------------------------- # CMVA/DeepCSV #btagMethod = CMVA @@ -28,6 +29,7 @@ btagMethod = DeepCSV hJidx_CMVA = hJidxCMVA hJidx_DeepCSV = hJidx +hJidx_DeepJet = hJidx hJidx = !> btagidx0 = [0] @@ -50,10 +52,10 @@ btagWP_Tight_DeepCSV = 0.8953 ; DeepJet settings -Jet_btag_CMVA = Jet_btagDeepFlavB -btagWP_Loose_CMVA = 0.0614 -btagWP_Medium_CMVA = 0.3093 -btagWP_Tight_CMVA = 0.7221 +Jet_btag_DeepJet = Jet_btagDeepFlavB +btagWP_Loose_DeepJet = 0.0614 +btagWP_Medium_DeepJet = 0.3093 +btagWP_Tight_DeepJet = 0.7221 ; select WP depending on tagger selected in samples_nosplit.ini (The goal is to select from general.ini) Jet_btag = !> @@ -127,9 +129,13 @@ SF_ZJets = !> trackedOptions = [['Configuration','cmsswbase'],['Directories','samplefiles'],['Cuts','OverlapResolvedBoosted'],['General','VjetFlavor'],['Stitching','MethodDY'],['Stitching','MethodWJ'],['Stitching','MethodZJ'],['Stitching','ReweightLHEVpt'],['Weights','weightF(raw)'],['Weights','weightF'],['General','btagMethod'],['General','SFmethod'],['General','JetFlavor(raw)']] -DeepAK8weightApplies = () -DeepCSVweightApplies = () +#DeepAK8weightApplies = ( (isBoosted || isBoosted_VZ) && (isSignal || sampleIndex==3401 || sampleIndex==3402 || sampleIndex==3501 || sampleIndex==3502 || sampleIndex==3201 || sampleIndex==3202 || sampleIndex==34601 || sampleIndex==34602 || sampleIndex==3701 || sampleIndex==3702) ) +DeepAK8weightApplies = ( ( || ) && (isSignal) ) +#DeepAK8weightApplies = ((isBoosted_VZ)&&(isSignal)) +DeepCSVweightApplies = ( || ) +#DeepCSVweightApplies = () +sanitizeExpression = [['[Hbb_fjidx]','[max(Hbb_fjidx,0)]'],['[hJidx[0]]','[max(hJidx[0],0)]'],['[hJidx[1]]','[max(hJidx[1],0)]']] [SLURM] options = --account=t3 @@ -142,10 +148,12 @@ TreeCopierPSI = True files_per_job = 50 nprocesses = 0 run_locally = False +maxCutStringLength = 16000 # NanoAOD format treeName = Events countTreeName = genEventSumw +#countTreeName = genWtHist AllowDuplicateTrees = True countsFromAutoPU = False @@ -178,11 +186,22 @@ UseTrainSample = False ;ALWAYS set to False, unless training to produce correlation plots Data_as_signal = False +# update V13 + [systematics] -#systematics = Nominal jer_Up jer_Down jerReg_Up jerReg_Down jesAbsoluteStat_Up jesAbsoluteStat_Down jesAbsoluteScale_Up jesAbsoluteScale_Down jesAbsoluteFlavMap_Up jesAbsoluteFlavMap_Down jesAbsoluteMPFBias_Up jesAbsoluteMPFBias_Down jesFragmentation_Up jesFragmentation_Down jesSinglePionECAL_Up jesSinglePionECAL_Down jesSinglePionHCAL_Up jesSinglePionHCAL_Down jesFlavorQCD_Up jesFlavorQCD_Down jesRelativeJEREC1_Up jesRelativeJEREC1_Down jesRelativeJEREC2_Up jesRelativeJEREC2_Down jesRelativeJERHF_Up jesRelativeJERHF_Down jesRelativePtBB_Up jesRelativePtBB_Down jesRelativePtEC1_Up jesRelativePtEC1_Down jesRelativePtEC2_Up jesRelativePtEC2_Down jesRelativePtHF_Up jesRelativePtHF_Down jesRelativeBal_Up jesRelativeBal_Down jesRelativeFSR_Up jesRelativeFSR_Down jesRelativeStatFSR_Up jesRelativeStatFSR_Down jesRelativeStatEC_Up jesRelativeStatEC_Down jesRelativeStatHF_Up jesRelativeStatHF_Down jesPileUpDataMC_Up jesPileUpDataMC_Down jesPileUpPtRef_Up jesPileUpPtRef_Down jesPileUpPtBB_Up jesPileUpPtBB_Down jesPileUpPtEC1_Up jesPileUpPtEC1_Down jesPileUpPtEC2_Up jesPileUpPtEC2_Down jesPileUpPtHF_Up jesPileUpPtHF_Down jesPileUpMuZero_Up jesPileUpMuZero_Down jesPileUpEnvelope_Up jesPileUpEnvelope_Down jesTotal_Up jesTotal_Down unclustEn_Up unclustEn_Down -systematics = Nominal jer_Up jer_Down jesAbsoluteStat_Up jesAbsoluteStat_Down jesAbsoluteScale_Up jesAbsoluteScale_Down jesAbsoluteFlavMap_Up jesAbsoluteFlavMap_Down jesAbsoluteMPFBias_Up jesAbsoluteMPFBias_Down jesFragmentation_Up jesFragmentation_Down jesSinglePionECAL_Up jesSinglePionECAL_Down jesSinglePionHCAL_Up jesSinglePionHCAL_Down jesFlavorQCD_Up jesFlavorQCD_Down jesRelativeJEREC1_Up jesRelativeJEREC1_Down jesRelativeJEREC2_Up jesRelativeJEREC2_Down jesRelativeJERHF_Up jesRelativeJERHF_Down jesRelativePtBB_Up jesRelativePtBB_Down jesRelativePtEC1_Up jesRelativePtEC1_Down jesRelativePtEC2_Up jesRelativePtEC2_Down jesRelativePtHF_Up jesRelativePtHF_Down jesRelativeBal_Up jesRelativeBal_Down jesRelativeFSR_Up jesRelativeFSR_Down jesRelativeStatFSR_Up jesRelativeStatFSR_Down jesRelativeStatEC_Up jesRelativeStatEC_Down jesRelativeStatHF_Up jesRelativeStatHF_Down jesPileUpDataMC_Up jesPileUpDataMC_Down jesPileUpPtRef_Up jesPileUpPtRef_Down jesPileUpPtBB_Up jesPileUpPtBB_Down jesPileUpPtEC1_Up jesPileUpPtEC1_Down jesPileUpPtEC2_Up jesPileUpPtEC2_Down jesPileUpPtHF_Up jesPileUpPtHF_Down jesPileUpMuZero_Up jesPileUpMuZero_Down jesPileUpEnvelope_Up jesPileUpEnvelope_Down jesTotal_Up jesTotal_Down unclustEn_Up unclustEn_Down -systematics_BOOST = Nominal jer_Up jer_Down jesAbsoluteStat_Up jesAbsoluteStat_Down jesAbsoluteScale_Up jesAbsoluteScale_Down jesAbsoluteFlavMap_Up jesAbsoluteFlavMap_Down jesAbsoluteMPFBias_Up jesAbsoluteMPFBias_Down jesFragmentation_Up jesFragmentation_Down jesSinglePionECAL_Up jesSinglePionECAL_Down jesSinglePionHCAL_Up jesSinglePionHCAL_Down jesFlavorQCD_Up jesFlavorQCD_Down jesRelativeJEREC1_Up jesRelativeJEREC1_Down jesRelativeJEREC2_Up jesRelativeJEREC2_Down jesRelativeJERHF_Up jesRelativeJERHF_Down jesRelativePtBB_Up jesRelativePtBB_Down jesRelativePtEC1_Up jesRelativePtEC1_Down jesRelativePtEC2_Up jesRelativePtEC2_Down jesRelativePtHF_Up jesRelativePtHF_Down jesRelativeBal_Up jesRelativeBal_Down jesRelativeFSR_Up jesRelativeFSR_Down jesRelativeStatFSR_Up jesRelativeStatFSR_Down jesRelativeStatEC_Up jesRelativeStatEC_Down jesRelativeStatHF_Up jesRelativeStatHF_Down jesPileUpDataMC_Up jesPileUpDataMC_Down jesPileUpPtRef_Up jesPileUpPtRef_Down jesPileUpPtBB_Up jesPileUpPtBB_Down jesPileUpPtEC1_Up jesPileUpPtEC1_Down jesPileUpPtEC2_Up jesPileUpPtEC2_Down jesPileUpPtHF_Up jesPileUpPtHF_Down jesPileUpMuZero_Up jesPileUpMuZero_Down jesPileUpEnvelope_Up jesPileUpEnvelope_Down jesTotal_Up jesTotal_Down unclustEn_Up unclustEn_Down jms_Up jms_Down jmr_Up jmr_Down +JEC = ['jer','jerReg','jerRegScale','jerRegSmear','jesAbsolute','jesAbsolute_2016','jesBBEC1','jesBBEC1_2016','jesEC2','jesEC2_2016','jesFlavorQCD','jesHF','jesHF_2016','jesRelativeBal','jesRelativeSample_2016'] +#JEC = ['jer','jerReg','jesAbsolute','jesAbsolute_2016','jesBBEC1','jesBBEC1_2016','jesEC2','jesEC2_2016','jesFlavorQCD','jesHF','jesHF_2016','jesRelativeBal','jesRelativeSample_2016'] +JEC_Preselection = +JEC_METXY = +JEC_VReco = +JEC_Top = + +JEC_reduced = + +systematics = Nominal jer_Up jer_Down jerReg_Up jerReg_Down jerRegSmear_Up jerRegSmear_Down jerRegScale_Up jerRegScale_Down jesAbsolute_Up jesAbsolute_Down jesAbsolute_2016_Up jesAbsolute_2016_Down jesBBEC1_Up jesBBEC1_Down jesBBEC1_2016_Up jesBBEC1_2016_Down jesEC2_Up jesEC2_Down jesEC2_2016_Up jesEC2_2016_Down jesFlavorQCD_Up jesFlavorQCD_Down jesHF_Up jesHF_Down jesHF_2016_Up jesHF_2016_Down jesRelativeBal_Up jesRelativeBal_Down jesRelativeSample_2016_Up jesRelativeSample_2016_Down unclustEn_Up unclustEn_Down + +systematics_BOOST = Nominal jer_Up jer_Down jerReg_Up jerReg_Down jerRegSmear_Up jerRegSmear_Down jerRegScale_Up jerRegScale_Down jesAbsolute_Up jesAbsolute_Down jesAbsolute_2016_Up jesAbsolute_2016_Down jesBBEC1_Up jesBBEC1_Down jesBBEC1_2016_Up jesBBEC1_2016_Down jesEC2_Up jesEC2_Down jesEC2_2016_Up jesEC2_2016_Down jesFlavorQCD_Up jesFlavorQCD_Down jesHF_Up jesHF_Down jesHF_2016_Up jesHF_2016_Down jesRelativeBal_Up jesRelativeBal_Down jesRelativeSample_2016_Up jesRelativeSample_2016_Down unclustEn_Up unclustEn_Down jms_Up jms_Down jmr_Up jmr_Down [LimitGeneral] @@ -195,42 +214,27 @@ useMinmaxCuts = False ;!! configuration of systematics effects and behaviour sys_factor = { - 'jesTotal':1.0, 'jer':1.0, 'jerReg':1.0, - 'jesAbsoluteStat':1.0, - 'jesAbsoluteScale':1.0, - 'jesAbsoluteFlavMap':1.0, - 'jesAbsoluteMPFBias':1.0, - 'jesFragmentation':1.0, - 'jesSinglePionECAL':1.0, - 'jesSinglePionHCAL':1.0, + 'jerRegSmear':1.0, + 'jerRegScale':1.0, + 'jesAbsolute':1.0, + 'jesAbsolute_2016':1.0, + 'jesBBEC1':1.0, + 'jesBBEC1_2016':1.0, + 'jesEC2':1.0, + 'jesEC2_2016':1.0, 'jesFlavorQCD':1.0, - 'jesRelativeJEREC1':1.0, - 'jesRelativeJEREC2':1.0, - 'jesRelativeJERHF':1.0, - 'jesRelativePtBB':1.0, - 'jesRelativePtEC1':1.0, - 'jesRelativePtEC2':1.0, - 'jesRelativePtHF':1.0, + 'jesHF':1.0, + 'jesHF_2016':1.0, 'jesRelativeBal':1.0, - 'jesRelativeFSR':1.0, - 'jesRelativeStatFSR':1.0, - 'jesRelativeStatEC':1.0, - 'jesRelativeStatHF':1.0, - 'jesPileUpDataMC':1.0, - 'jesPileUpPtRef':1.0, - 'jesPileUpPtBB':1.0, - 'jesPileUpPtEC1':1.0, - 'jesPileUpPtEC2':1.0, - 'jesPileUpPtHF':1.0, - 'jesPileUpMuZero':1.0, - 'jesPileUpEnvelope':1.0, + 'jesRelativeSample_2016':1.0, + 'unclustEn':1.0, } ;now affecting_all = ['ZH', 'WH', 'ggZH', 'VVHF', 'VVLF', 'ZJets_0b', 'ZJets_1b', 'ZJets_2b', 'WJets_0b', 'WJets_1b', 'WJets_2b', 'TT', 'ST', 'QCD'] -sys_affecting = {'jer':,'jerReg':,'jesAbsoluteStat':,'jesAbsoluteScale':,'jesAbsoluteFlavMap':,'jesAbsoluteMPFBias':,'jesFragmentation':,'jesSinglePionECAL':,'jesSinglePionHCAL':,'jesFlavorQCD':,'jesRelativeJEREC1':,'jesRelativeJEREC2':,'jesRelativeJERHF':,'jesRelativePtBB':,'jesRelativePtEC1':,'jesRelativePtEC2':,'jesRelativePtHF':,'jesRelativeBal':,'jesRelativeFSR':,'jesRelativeStatFSR':,'jesRelativeStatEC':,'jesRelativeStatHF':,'jesPileUpDataMC':,'jesPileUpPtRef':,'jesPileUpPtBB':,'jesPileUpPtEC1':,'jesPileUpPtEC2':,'jesPileUpPtHF':,'jesPileUpMuZero':,'jesPileUpEnvelope':} +sys_affecting = {'jer':,'jerReg':,'jerRegScale':,'jerRegSmear':,'jesAbsoluteStaR':,'jesAbsoluteStat_2016':,'jesBBEC1':,'jesBBEC1_2016':,'jesEC2':,'jesEC2_2016':,'jesFlavorQCD':,'jesHF':,'jesHF_2016':,'jesRelativeBal':,'jesRelativeSample_2016':,'unclustEn':} # these lists are used to replace variables in the cuts to make the datacards @@ -252,12 +256,23 @@ replace_cut_base_kinfit = [ ] replace_cut_base_Higgs = [ + 'dPhiVH>dPhiVH_{syst}_{UD}', 'H_mass_noFSR>H_mass_noFSR_{syst}_{UD}', 'H_pt_noFSR>H_pt_noFSR_{syst}_{UD}', 'H_mass>H_mass_{syst}_{UD}', 'H_phi>H_phi_{syst}_{UD}', 'H_pt>H_pt_{syst}_{UD}', 'H_eta>H_eta_{syst}_{UD}', + 'isBoosted>isBoosted_{syst}_{UD}', + 'isBoosted_VZ>isBoosted_VZ_{syst}_{UD}', + 'resolvedCR_VZ>resolvedCR_VZ_{syst}_{UD}', + 'resolvedSR_VZ>resolvedSR_VZ_{syst}_{UD}', + 'boostedCR_VZ>boostedCR_VZ_{syst}_{UD}', + 'boostedSR_VZ>boostedSR_VZ_{syst}_{UD}', + 'resolvedCR>resolvedCR_{syst}_{UD}', + 'resolvedSR>resolvedSR_{syst}_{UD}', + 'boostedCR>boostedCR_{syst}_{UD}', + 'boostedSR>boostedSR_{syst}_{UD}', ] replace_cut_base_jets = [ @@ -276,6 +291,12 @@ replace_cut_base_jets = [ replace_cut_jerReg_jets = [ 'Jet_PtReg>Jet_PtReg{UD}', ] +replace_cut_jerRegScale_jets = [ + 'Jet_PtReg>Jet_PtRegScale{UD}', + ] +replace_cut_jerRegSmear_jets = [ + 'Jet_PtReg>Jet_PtRegSmear{UD}', + ] replace_cut_base_met = [ 'MET_Phi>MET_phi_{syst}{UD}', @@ -311,6 +332,8 @@ replace_cut = +++++ +replace_cut_jerRegScale = +++ +replace_cut_jerRegSmear = +++ # different convention for BOOSTED only, standard one in resolved replace_cut_jer = ++ @@ -329,7 +352,7 @@ replace_cut_unclustEn = [ 'MET_sig30puid>MET_sig30puid_{syst}_{UD}', ] -sys_cut_suffix = {'jesTotal':,'jer':,'jerReg':,'jesAbsoluteStat':,'jesAbsoluteScale':,'jesAbsoluteFlavMap':,'jesAbsoluteMPFBias':,'jesFragmentation':,'jesSinglePionECAL':,'jesSinglePionHCAL':,'jesFlavorQCD':,'jesRelativeJEREC1':,'jesRelativeJEREC2':,'jesRelativeJERHF':,'jesRelativePtBB':,'jesRelativePtEC1':,'jesRelativePtEC2':,'jesRelativePtHF':,'jesRelativeBal':,'jesRelativeFSR':,'jesRelativeStatFSR':,'jesRelativeStatEC':,'jesRelativeStatHF':,'jesPileUpDataMC':,'jesPileUpPtRef':,'jesPileUpPtBB':,'jesPileUpPtEC1':,'jesPileUpPtEC2':,'jesPileUpPtHF':,'jesPileUpMuZero':,'jesPileUpEnvelope':,'jmr':,'jms':,'unclustEn':} +sys_cut_suffix = {'jer':,'jerReg':,'jerRegScale':,'jerRegSmear':,'jesAbsolute':,'jesAbsolute_2016':,'jesBBEC1':,'jesBBEC1_2016':,'jesEC2':,'jesEC2_2016':,'jesFlavorQCD':,'jesHF':,'jesHF_2016':,'jesRelativeBal':,'jesRelativeSample_2016':,'jmr':,'jms':,'unclustEn':} sys_weight_corr = {} @@ -374,18 +397,29 @@ EvalCut = ((event%%2)==0||isData) # -------------------------------------------------------------------------------------------------- # where to place the overlap between BOOSTED and RESOLVED analysis -OverlapResolvedBoosted = BOOSTED +#OverlapResolvedBoosted = BOOSTED #OverlapResolvedBoosted = RESOLVED +#OverlapResolvedBoosted = SR_A +OverlapResolvedBoosted = SR_B resolvedJets = (hJidx[0]>-1&&hJidx[1]>-1) boostedJets = (Hbb_fjidx>-1) # isResolved should be required for all resolved regions and isBoosted for all boosted regions -isResolved_BOOSTED = ( && (!)) -isResolved_RESOLVED = +#isResolved_BOOSTED = ( && (!)) + +# flag isBoosted = +isResolved_BOOSTED = ( && !(boostedCR||boostedSR)) +isResolved_RESOLVED = () +isResolved_SR_A = ( && (hJidx[0]>-1&&hJidx[1]>-1) && (!(boostedCR||boostedSR)||(resolvedSR&&boostedCR))) +isResolved_SR_B = ( && !(boostedSR&&!resolvedSR)) isResolved = !> -isBoosted_BOOSTED = -isBoosted_RESOLVED = ( && (!)) -isBoosted = !> +isBoosted_BOOSTED = () +isBoosted_RESOLVED = ( && !(resolvedCR||resolvedSR)) +isBoosted_SR_A = ( && !(!(boostedCR||boostedSR)||(resolvedSR&&boostedCR))) +isBoosted_SR_B = ( && (!(resolvedSR||resolvedCR)||(boostedSR&&resolvedCR))) +isBoosted = !> +isBoosted_VZ = ( && (!(resolvedSR_VZ||resolvedCR_VZ)||(boostedSR_VZ&&resolvedCR_VZ))) +isResolved_VZ = ( && !(boostedSR_VZ&&!resolvedSR_VZ)) diff --git a/python/VHbb2016commonconfig/samples_mc.ini b/python/VHbb2016commonconfig/samples_mc.ini index 71d79e4f5..5258d23ed 100644 --- a/python/VHbb2016commonconfig/samples_mc.ini +++ b/python/VHbb2016commonconfig/samples_mc.ini @@ -70,21 +70,25 @@ preselectionCut = 1 # OFF: only use inclusive + HT binned samples # EXCL: use b-enriched exclusively in their phase-space (throw away overlap) -MethodWJ = OFF +#MethodWJ = OFF #MethodWJ = EXCL +MethodWJ = V11 -MethodZJ = OFF +#MethodZJ = OFF #MethodZJ = EXCL +MethodZJ = V11 -MethodDY = OFF +#MethodDY = OFF #MethodDY = EXCL +MethodDY = V11 # differential reweighting of b-enriched/filtered samples to inclusive+ht binned #ReweightLHEVpt = ON # normlization reweighting of b-enriched/filtered samples to inclusive+ht binned ReweightLHEVpt = OFF -WJincl_OFF = (LHE_HT<100) +WJincl_OFF = (LHE_HT<70) +WJ70_OFF = (LHE_HT>=70&&LHE_HT<100) WJ100_OFF = (LHE_HT>=100&&LHE_HT<200) WJ200_OFF = (LHE_HT>=200&&LHE_HT<400) WJ400_OFF = (LHE_HT>=400&&LHE_HT<600) @@ -98,6 +102,7 @@ WJGBF100_OFF = 0.0 WJGBF200_OFF = 0.0 WJincl_EXCL = (((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100)&&LHE_HT<100) +WJ70_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) WJ100_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) WJ200_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) WJ400_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) @@ -110,7 +115,22 @@ WJB200_EXCL = (LHE_Nb>0&&LHE_Vpt>=200) WJGBF100_EXCL = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200) WJGBF200_EXCL = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200) +WJincl_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT<70) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=70&&LHE_HT<100)*0.23585 + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=70&&LHE_HT<100)*0.22727 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT<70) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=70&&LHE_HT<100)*0.20230 +WJ70_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=70&&LHE_HT<100)*0.76415 + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=70&&LHE_HT<100)*0.77273 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=70&&LHE_HT<100)*0.79770 +WJ100_V11 = (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=100&&LHE_HT<200) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=100&&LHE_HT<200) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200) + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=100&&LHE_HT<200) + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200)*0.07534 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200)*0.15244 +WJ200_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400)*0.26579 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=200&&LHE_HT<400) + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400)*0.13654 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400)*0.14765 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400)*0.14107 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400) + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=200&&LHE_HT<400) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=200&&LHE_HT<400) +WJ400_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=400&&LHE_HT<600)*0.16662 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=400&&LHE_HT<600)*0.16061 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=400&&LHE_HT<600) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=400&&LHE_HT<600) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=400&&LHE_HT<600) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=200&&LHE_HT>=400&&LHE_HT<600) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=400&&LHE_HT<600)*0.32103 + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=400&&LHE_HT<600) + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=400&&LHE_HT<600)*0.15363 +WJ600_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=600&&LHE_HT<800)*0.86357 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=600&&LHE_HT<800) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=600&&LHE_HT<800) + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=600&&LHE_HT<800) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=600&&LHE_HT<800)*0.72478 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=200&&LHE_HT>=600&&LHE_HT<800) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=600&&LHE_HT<800) + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=600&&LHE_HT<800)*0.70966 + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=600&&LHE_HT<800)*0.69911 +WJ800_V11 = (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=800&&LHE_HT<1200) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=800&&LHE_HT<1200) + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=800&&LHE_HT<1200) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=200&&LHE_HT>=800&&LHE_HT<1200) + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=800&&LHE_HT<1200)*0.61701 + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=800&&LHE_HT<1200)*0.60700 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=800&&LHE_HT<1200)*0.80900 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=800&&LHE_HT<1200) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=800&&LHE_HT<1200)*0.63745 +WJ1200_V11 = (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=1200&&LHE_HT<2500) + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=1200&&LHE_HT<2500)*0.81403 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=1200&&LHE_HT<2500)*0.82198 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=1200&&LHE_HT<2500) + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=1200&&LHE_HT<2500) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=200&&LHE_HT>=1200&&LHE_HT<2500) + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=1200&&LHE_HT<2500)*0.79851 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=1200&&LHE_HT<2500) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=1200&&LHE_HT<2500)*0.92324 +WJ2500_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=2500) + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=2500) + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=2500) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=2500) + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=2500) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=200&&LHE_HT>=2500) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=2500) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=2500) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=2500) +WJB100_V11 = (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400)*0.86346 + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=1200&&LHE_HT<2500)*0.18597 + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=600&&LHE_HT<800)*0.30089 + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=400&&LHE_HT<600)*0.84637 + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=800&&LHE_HT<1200)*0.39300 + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200)*0.92466 +WJB200_V11 = (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=400&&LHE_HT<600)*0.83939 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=600&&LHE_HT<800)*0.29034 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400)*0.85235 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=800&&LHE_HT<1200)*0.38299 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=1200&&LHE_HT<2500)*0.20149 +WJGBF100_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400)*0.73421 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=600&&LHE_HT<800)*0.13643 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=400&&LHE_HT<600)*0.67897 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=800&&LHE_HT<1200)*0.19100 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=1200&&LHE_HT<2500)*0.07676 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200)*0.84756 +WJGBF200_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=400&&LHE_HT<600)*0.83338 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=600&&LHE_HT<800)*0.27522 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=1200&&LHE_HT<2500)*0.17802 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400)*0.85893 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=800&&LHE_HT<1200)*0.36255 + WJincl = !> +WJ70 = !> WJ100 = !> WJ200 = !> WJ400 = !> @@ -125,6 +145,7 @@ WJGBF200 = !> # don't use b-enriched samples DYincl_OFF = (LHE_HT<100) +DY_HT70_OFF = (LHE_HT>=70&&LHE_HT<100) DY_HT100_OFF = (LHE_HT>=100&&LHE_HT<200) DY_HT200_OFF = (LHE_HT>=200&&LHE_HT<400) DY_HT400_OFF = (LHE_HT>=400&&LHE_HT<600) @@ -138,7 +159,8 @@ DY_F100_OFF = 0.0 DY_F200_OFF = 0.0 # don't use HT bins and b-enriched samples -DYincl_NOHT = 1.0 +DYincl_NOHT = 1.0 +DY_HT70_NOHT = 0.0 DY_HT100_NOHT = 0.0 DY_HT200_NOHT = 0.0 DY_HT400_NOHT = 0.0 @@ -152,7 +174,8 @@ DY_F100_NOHT = 0.0 DY_F200_NOHT = 0.0 # use b-enriched and GenFilter, exclusively -DYincl_EXCL = (LHE_Vpt<100 || (nGenStatus2bHad==0 && LHE_Nb==0))*() +DYincl_EXCL = (LHE_Vpt<100 || (nGenStatus2bHad==0 && LHE_Nb==0))*() +DY_HT70_EXCL = (LHE_Vpt<100 || (nGenStatus2bHad==0 && LHE_Nb==0))*() DY_HT100_EXCL = (LHE_Vpt<100 || (nGenStatus2bHad==0 && LHE_Nb==0))*() DY_HT200_EXCL = (LHE_Vpt<100 || (nGenStatus2bHad==0 && LHE_Nb==0))*() DY_HT400_EXCL = (LHE_Vpt<100 || (nGenStatus2bHad==0 && LHE_Nb==0))*() @@ -165,7 +188,22 @@ DY_B200_EXCL = (LHE_Nb>0&&LHE_Vpt>=200) DY_F100_EXCL = (LHE_Vpt>=100 && LHE_Nb==0 && nGenStatus2bHad > 0) DY_F200_EXCL = (LHE_Vpt>=200 && LHE_Nb==0 && nGenStatus2bHad > 0) +DYincl_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT<70) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=100&&LHE_HT<200)*0.31946 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400)*0.12398 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=200&&LHE_HT<400)*0.12548 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=70&&LHE_HT<100)*0.28268 + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=70&&LHE_HT<100)*0.27279 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT<70) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=70&&LHE_HT<100)*0.30715 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=100&&LHE_HT<200)*0.32764 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200)*0.32056 + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=100&&LHE_HT<200)*0.31862 + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT<70) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400)*0.12202 + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=200&&LHE_HT<400)*0.12281 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=200&&LHE_HT<400)*0.12411 +DY_HT70_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=70&&LHE_HT<100)*0.71732 + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=70&&LHE_HT<100)*0.72721 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=70&&LHE_HT<100)*0.69285 +DY_HT100_V11 = (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=100&&LHE_HT<200)*0.68054 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=100&&LHE_HT<200)*0.67236 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200)*0.67944 + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=100&&LHE_HT<200)*0.68138 +DY_HT200_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400)*0.11761 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400)*0.87602 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=200&&LHE_HT<400)*0.87452 + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400)*0.07108 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400)*0.87798 + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=200&&LHE_HT<400)*0.87719 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=200&&LHE_HT<400)*0.87589 +DY_HT400_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=400&&LHE_HT<600)*0.20681 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=400&&LHE_HT<600)*0.23783 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=400&&LHE_HT<600) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=400&&LHE_HT<600) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=400&&LHE_HT<600) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=200&&LHE_HT>=400&&LHE_HT<600) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=400&&LHE_HT<600)*0.47196 + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=400&&LHE_HT<600) + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=400&&LHE_HT<600)*0.31831 +DY_HT600_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=600&&LHE_HT<800)*0.78585 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=600&&LHE_HT<800) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=600&&LHE_HT<800) + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=600&&LHE_HT<800) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=600&&LHE_HT<800)*0.52043 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=200&&LHE_HT>=600&&LHE_HT<800) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=600&&LHE_HT<800) + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=600&&LHE_HT<800)*0.54871 + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=600&&LHE_HT<800)*0.64131 +DY_HT800_V11 = (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=800&&LHE_HT<1200) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=800&&LHE_HT<1200) + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=800&&LHE_HT<1200) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=200&&LHE_HT>=800&&LHE_HT<1200) + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=800&&LHE_HT<1200)*0.52057 + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=800&&LHE_HT<1200)*0.61759 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=800&&LHE_HT<1200)*0.77253 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=800&&LHE_HT<1200) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=800&&LHE_HT<1200)*0.50309 +DY_HT1200_V11 = (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=1200&&LHE_HT<2500) + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=1200&&LHE_HT<2500)*0.63020 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=1200&&LHE_HT<2500)*0.51114 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=1200&&LHE_HT<2500) + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=1200&&LHE_HT<2500) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=200&&LHE_HT>=1200&&LHE_HT<2500) + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=1200&&LHE_HT<2500)*0.51277 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=1200&&LHE_HT<2500) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=1200&&LHE_HT<2500)*0.77982 +DY_HT2500_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=2500) + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=2500) + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=2500) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=2500) + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=2500) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=200&&LHE_HT>=2500) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=2500) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=2500) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=2500) +DY_B100_V11 = (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400)*0.92892 + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=1200&&LHE_HT<2500)*0.36980 + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=600&&LHE_HT<800)*0.35869 + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=400&&LHE_HT<600)*0.68169 + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=800&&LHE_HT<1200)*0.38241 + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200) +DY_B200_V11 = (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=400&&LHE_HT<600)*0.76217 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=600&&LHE_HT<800)*0.45129 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400) + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=800&&LHE_HT<1200)*0.47943 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=1200&&LHE_HT<2500)*0.48723 +DY_F100_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400)*0.88239 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=600&&LHE_HT<800)*0.21415 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=400&&LHE_HT<600)*0.52804 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=800&&LHE_HT<1200)*0.22747 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=1200&&LHE_HT<2500)*0.22018 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200) +DY_F200_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=400&&LHE_HT<600)*0.79319 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=600&&LHE_HT<800)*0.47957 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=1200&&LHE_HT<2500)*0.48886 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=800&&LHE_HT<1200)*0.49691 + DYincl = !> +DY_HT70 = !> DY_HT100 = !> DY_HT200 = !> DY_HT400 = !> @@ -215,21 +253,31 @@ ZJB200_EXCL = (LHE_Nb>0&&LHE_Vpt>=200) ZJGBF100_EXCL = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200) ZJGBF200_EXCL = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200) - +ZJ100_V11 = (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=100&&LHE_HT<200) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=100&&LHE_HT<200) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200) + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=100&&LHE_HT<200) + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200)*0.06973 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200)*0.15130 +ZJ200_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400)*0.40491 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=200&&LHE_HT<400) + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400)*0.21924 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400)*0.30136 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400)*0.13056 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400) + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=200&&LHE_HT<400) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=200&&LHE_HT<400) +ZJ400_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=400&&LHE_HT<600)*0.29610 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=400&&LHE_HT<600)*0.52803 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=200&&LHE_HT>=400&&LHE_HT<600) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=400&&LHE_HT<600) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=400&&LHE_HT<600) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=400&&LHE_HT<600) + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=400&&LHE_HT<600)*0.42546 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=400&&LHE_HT<600)*0.66758 + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=400&&LHE_HT<600) +ZJ600_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=600&&LHE_HT<800)*0.85252 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=600&&LHE_HT<800) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=600&&LHE_HT<800) + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=600&&LHE_HT<800) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=200&&LHE_HT>=600&&LHE_HT<800) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=600&&LHE_HT<800) + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=600&&LHE_HT<800)*0.75105 + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=600&&LHE_HT<800)*0.66250 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=600&&LHE_HT<800)*0.55019 +ZJ800_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=800&&LHE_HT<1200) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=800&&LHE_HT<1200) + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=800&&LHE_HT<1200) + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=800&&LHE_HT<1200)*0.71788 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=200&&LHE_HT>=800&&LHE_HT<1200) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=800&&LHE_HT<1200) + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=800&&LHE_HT<1200)*0.63090 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=800&&LHE_HT<1200)*0.83685 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=800&&LHE_HT<1200)*0.52090 +ZJ1200_V11 = (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=1200&&LHE_HT<2500) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=1200&&LHE_HT<2500) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=1200&&LHE_HT<2500)*0.85301 + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=1200&&LHE_HT<2500)*0.64030 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=1200&&LHE_HT<2500)*0.55169 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=1200&&LHE_HT<2500) + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=1200&&LHE_HT<2500)*0.72707 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=200&&LHE_HT>=1200&&LHE_HT<2500) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=1200&&LHE_HT<2500) +ZJ2500_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=2500) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=200&&LHE_HT>=2500) + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=2500) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=2500) + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=2500) + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=2500) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=2500) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=2500) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=2500) +ZJB100_V11 = (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400)*0.78076 + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=1200&&LHE_HT<2500)*0.35970 + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=600&&LHE_HT<800)*0.33750 + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=400&&LHE_HT<600)*0.57454 + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=800&&LHE_HT<1200)*0.36910 + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200)*0.93027 +ZJB200_V11 = (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=400&&LHE_HT<600)*0.47197 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=600&&LHE_HT<800)*0.24895 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400)*0.69864 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=800&&LHE_HT<1200)*0.28212 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=1200&&LHE_HT<2500)*0.27293 +ZJGBF100_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400)*0.59509 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=600&&LHE_HT<800)*0.14748 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=1200&&LHE_HT<2500)*0.14699 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=400&&LHE_HT<600)*0.33242 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=800&&LHE_HT<1200)*0.16315 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200)*0.84870 +ZJGBF200_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=400&&LHE_HT<600)*0.70390 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=1200&&LHE_HT<2500)*0.44831 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400)*0.86944 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=600&&LHE_HT<800)*0.44981 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=800&&LHE_HT<1200)*0.47910 ;----------------------------Background---------------------------- #DIBOSON -[ZZ_TuneCUETP8M1_13TeV-pythia8] -sampleIndex = [3500,3501,3502] -sampleName = ZZ_pythia -sampleType = BKG -subsamples = True -subnames = ['ZZ_0b', 'ZZ_1b', 'ZZ_2b'] -subcuts = -sampleGroup = -xSec = [14.6]*3 -SF = [1,1,1] +#[ZZ_TuneCUETP8M1_13TeV-pythia8] +#sampleIndex = [3500,3501,3502] +#sampleName = ZZ_pythia +#sampleType = BKG +#subsamples = True +#subnames = ['ZZ_0b', 'ZZ_1b', 'ZZ_2b'] +#subcuts = +#sampleGroup = +#xSec = [14.6]*3 +#SF = [1,1,1] [ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8] sampleIndex = [34600,34601,34602] @@ -245,6 +293,18 @@ xSec = [3.688]*3 #xSec = [2.038]*3 SF = [1,1,1] +[ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8] +sampleIndex = [3700,3701,3702] +sampleName = ZZTo2Q2Nu +sampleType = BKG +subsamples = True +subnames = ['ZZTo2Q2Nu_0b', 'ZZTo2Q2Nu_1b', 'ZZTo2Q2Nu_2b'] +subcuts = +sampleGroup = +xSec = 4.040 +SF = [1,1,1] +cut = + #[ZZTo4L_13TeV_powheg_pythia8] #sampleIndex = [34500,34501,34502] #sampleName = ZZ4l @@ -256,18 +316,17 @@ SF = [1,1,1] #xSec = [1.256]*3 #SF = [1,1,1] - -[WZ_TuneCUETP8M1_13TeV-pythia8] -sampleIndex = [3000,3001,3002] -sampleName = WZ_pythia -sampleType = BKG -subsamples = False -subsamples = True -subcuts = -subnames = ['WZ_0b', 'WZ_1b', 'WZ_2b'] -sampleGroup = -xSec = [48.1]*3 -SF = [1,1,1] +#[WZ_TuneCUETP8M1_13TeV-pythia8] +#sampleIndex = [3000,3001,3002] +#sampleName = WZ_pythia +#sampleType = BKG +#subsamples = False +#subsamples = True +#subcuts = +#subnames = ['WZ_0b', 'WZ_1b', 'WZ_2b'] +#sampleGroup = +#xSec = [48.1]*3 +#SF = [1,1,1] [WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8] @@ -282,19 +341,29 @@ sampleGroup = xSec = [10.87]*3 SF = [1,1,1] - - -[WW_TuneCUETP8M1_13TeV-pythia8] -sampleIndex = [3300,3301,3302] -sampleName = WW_pythia +[WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8] +sampleIndex = [3600,3601,3602] +sampleName = WZTo2L2Q sampleType = BKG -subsamples = False subsamples = True -subnames = ['WW_0b', 'WW_1b', 'WW_2b'] +subnames = ['WZTo2L2Qnlo_0b', 'WZTo2L2Qnlo_1b', 'WZTo2L2Qnlo_2b'] subcuts = sampleGroup = -xSec = [115.3]*3 -SF = [1,1,1] +xSec = 5.596 +SF = [1,1,1] +cut = + +#[WW_TuneCUETP8M1_13TeV-pythia8] +#sampleIndex = [3300,3301,3302] +#sampleName = WW_pythia +#sampleType = BKG +#subsamples = False +#subsamples = True +#subnames = ['WW_0b', 'WW_1b', 'WW_2b'] +#subcuts = +#sampleGroup = +#xSec = [115.3]*3 +#SF = [1,1,1] [WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8] @@ -308,6 +377,19 @@ sampleGroup = xSec = [50.85883]*3 SF = [1,1,1] +[WWTo2L2Nu_13TeV-powheg] +sampleIndex = [3500,3501,3502] +sampleName = WWTo2L2Nu +sampleType = BKG +subsamples = True +subnames = ['WWTo2L2Nunlo_0b', 'WWTo2L2Nunlo_1b', 'WWTo2L2Nunlo_2b'] +subcuts = +sampleGroup = +xSec = 10.48 +SF = [1,1,1] +cut = + + #-- W+Jets Samples --# [WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] @@ -323,8 +405,23 @@ offsets = SF = specialweight = -[WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +[WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] sampleIndex = 4100 +sampleName = WJetsHT70 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 1352.0 +SF = +cut = +specialweight = +dcChunkSize = 20 + +[WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 4200 sampleName = WJetsHT100 sampleType = BKG subsamples = True @@ -338,7 +435,7 @@ specialweight = dcChunkSize = 20 [WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] -sampleIndex = 4200 +sampleIndex = 4300 sampleName = WJetsHT200 sampleType = BKG subsamples = True @@ -352,7 +449,7 @@ specialweight = dcChunkSize = 20 [WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] -sampleIndex = 4300 +sampleIndex = 4400 sampleName = WJetsHT400 sampleType = BKG subsamples = True @@ -366,7 +463,7 @@ specialweight = dcChunkSize = 20 [WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] -sampleIndex = 4400 +sampleIndex = 4500 sampleName = WJetsHT600 sampleType = BKG subsamples = True @@ -380,7 +477,7 @@ specialweight = dcChunkSize = 20 [WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] -sampleIndex = 4500 +sampleIndex = 4600 sampleName = WJetsHT800 sampleType = BKG subsamples = True @@ -394,7 +491,7 @@ specialweight = dcChunkSize = 20 [WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] -sampleIndex = 4600 +sampleIndex = 4700 sampleName = WJetsHT1200 sampleType = BKG subsamples = True @@ -408,7 +505,7 @@ specialweight = dcChunkSize = 20 [WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] -sampleIndex = 4700 +sampleIndex = 4800 sampleName = WJetsHT2500 sampleType = BKG subsamples = True @@ -423,66 +520,73 @@ dcChunkSize = 20 # b-enriched W + jets -#[WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] -#sampleIndex = [5000,5001,5002] -#sampleName = WBJets100 -#sampleType = BKG -#subsamples = True -#subnames = ['WBJets100_0b', 'WBJets100_1b', 'WBJets100_2b'] -#subcuts = -#sampleGroup = -#xSec = [6.004 * 1.21] * 3 -#SF = -#specialweight_ON = () -#specialweight_OFF = () -#specialweight = !> - -#[WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] -#sampleIndex = [5100,5101,5102] -#sampleName = WBJets200 -#sampleType = BKG -#subsamples = True -#subnames = ['WBJets200_0b', 'WBJets200_1b', 'WBJets200_2b'] -#subcuts = -#sampleGroup = -#xSec = [0.8524 * 1.21] * 3 -#SF = -#specialweight_ON = () -#specialweight_OFF = () -#specialweight = !> - -#[WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] -#sampleIndex = [5300,5301,5302] -#sampleName = WBGenFilter100 -#sampleType = BKG -#subsamples = True -#subnames = ['WBGenFilter100_0b', 'WBGenFilter100_1b', 'WBGenFilter100_2b'] -#subcuts = -#sampleGroup = -#xSec = [26.1 * 1.21] * 3 -#SF = -#specialweight_ON = () -#specialweight_OFF = () -#specialweight = !> - -#[WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] -#sampleIndex = [5400,5401,5402] -#sampleName = WBGenFilter200 -#sampleType = BKG -#subsamples = True -#subnames = ['WBGenFilter200_0b', 'WBGenFilter200_1b', 'WBGenFilter200_2b'] -#subcuts = -#sampleGroup = -#xSec = [3.545 * 1.21] * 3 -#SF = -#specialweight_ON = () -#specialweight_OFF = () -#specialweight = !> +[WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 5000 +sampleName = WBJets100 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 5.967 * 1.21 +SF = +cut = +#specialweight_ON = ()*(9.820e-01 + 4.927e-04*min(LHE_Vpt,800) - 3.805e-07*min(LHE_Vpt,800)**2) +specialweight_OFF = ()*1.04 +specialweight = !> +[WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 5100 +sampleName = WBJets200 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 0.8757 * 1.21 +SF = +cut = +#specialweight_ON = ()*(1.04 + 2.7774e-06*LHE_Vpt - 3.805e-07*min(LHE_Vpt,800)**2) +specialweight_OFF = ()*1.04 +specialweight = !> -#TT +[WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 5300 +sampleName = WBGenFilter100 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 26.89 * 1.21 +SF = +cut = +#specialweight_ON = ()*(1.039e+00 + 1.316e-03*min(LHE_Vpt,800) - 1.331e-06*min(LHE_Vpt,800)**2) +specialweight_OFF = ()*0.99 +specialweight = !> -[TT_TuneCUETP8M2T4_13TeV-powheg-pythia8] +[WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 5400 +sampleName = WBGenFilter200 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 3.786 * 1.21 +SF = +cut = +#specialweight_ON = ()*(1.039e+00 + 1.316e-03*min(LHE_Vpt,800) - 1.331e-06*min(LHE_Vpt,800)**2) +specialweight_OFF = ()*0.99 +specialweight = !> + + +#TT +[TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8] sampleIndex = 200 sampleName = TT sampleType = BKG @@ -493,6 +597,18 @@ SF = specialweight = 1.0 dcChunkSize = 15 + +#[TT_TuneCUETP8M2T4_13TeV-powheg-pythia8] +#sampleIndex = 200 +#sampleName = TT +#sampleType = BKG +#subsamples = False +#sampleGroup = TT +#xSec = [831.76] +#SF = +#specialweight = 1.0 +#dcChunkSize = 15 + #ST [ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1] @@ -545,8 +661,8 @@ SF = 1.0 #Jet binned M-4to50 # sample broken!!! -#[DYJetsToLL_M-4to50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] -#sampleName = DYJetsToLL_M-4to50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +#[DYJetsToLL_M-4to50_HT-70to100_TuneCP5_13TeV-madgraphMLM-pythia8] +#sampleName = DYJetsToLL_M-4to50_HT-70to100_TuneCP5_13TeV-madgraphMLM-pythia8 #sampleType = BKG #subsamples = True #subnames =['M4HT70to100_0b','M4HT70to100_1b','M4HT70to100_2b'] @@ -554,51 +670,74 @@ SF = 1.0 #sampleGroup = #xSec = [145.5*1.23]*3 #SF = +#cut = -#[DYJetsToLL_M-4to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] -#sampleIndex = [12500,12501,12502] -#sampleName = DYJetsToLL_M-4to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 -#sampleType = BKG -#subsamples = True -#subnames =['M4HT100to200_0b','M4HT100to200_1b','M4HT100to200_2b'] -#subcuts= -#sampleGroup = -#xSec = [204.0*1.23]*3 -#SF = +[DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 12500 +sampleName = M4HT100to200 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 224.2*0.93 +SF = +cut = -#[DYJetsToLL_M-4to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] -#sampleIndex = [12600,12601,12602] -#sampleName = DYJetsToLL_M-4to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 -#sampleType = BKG -#subsamples = True -#subnames =['M4HT200to400_0b','M4HT200to400_1b','M4HT200to400_2b'] -#subcuts= -#sampleGroup = -#xSec = [54.39*1.23]*3 -#SF = +[DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 12600 +sampleName = M4HT200to400 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 37.88*0.93 +SF = +cut = -#[DYJetsToLL_M-4to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] -#sampleIndex = [12700,12701,12702] -#sampleName = DYJetsToLL_M-4to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 -#sampleType = BKG -#subsamples = True -#subnames =['M4HT400to600_0b','M4HT400to600_1b','M4HT400to600_2b'] -#subcuts= -#sampleGroup = -#xSec = [5.697*1.23]*3 -#SF = +[DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 12700 +sampleName = M4HT400to600 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 3.644*0.93 +SF = +cut = -#[DYJetsToLL_M-4to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] -#sampleIndex = [12800,12801,12802] -#sampleName = DYJetsToLL_M-4to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 -#sampleType = BKG -#subsamples = True -#subnames = ['M4HT600toInf_0b','M4HT600toInf_1b','M4HT600toInf_2b'] -#subcuts= -#sampleGroup = -#xSec = [1.850*1.23]*3 -#SF = +[DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 12800 +sampleName = M4HT600toInf +sampleType = KG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 1.009*0.93 +SF = +cut = +[DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 11800 +sampleName = HT70to100ZJets +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 170.2*1.23 +SF = +cut = +dcChunkSize = 3 +specialweight = ()*() [DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] sampleIndex = 11100 @@ -675,35 +814,39 @@ SF = cut = specialweight = ()*() -#[DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] -#sampleIndex = [11600,11601,11602] -#sampleName = DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 -#sampleType = BKG -#subsamples = True -#subnames =['HT1200to2500ZJets_0b','HT1200to2500ZJets_1b','HT1200to2500ZJets_2b'] -#subcuts= -#sampleGroup = -#;x-sec from https://twiki.cern.ch/twiki/bin/view/CMS/SummaryTable1G25ns#DY_Z -#xSec = [0.1514*1.23]*3 -#SF = -#specialweight = ()*() +[DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 11600 +sampleName = HT1200to2500ZJets +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +;x-sec from https://twiki.cern.ch/twiki/bin/view/CMS/SummaryTable1G25ns#DY_Z +xSec = 0.1512*1.23 +SF = +cut = +specialweight = ()*() -#[DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] -#sampleIndex = [11700,11701,11702] -#sampleName = DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 -#sampleType = BKG -#subsamples = True -#subnames =['HT2500toinfZJets_0b','HT2500toinfZJets_1b','HT2500toinfZJets_2b'] -#subcuts= -#sampleGroup = -#;x-sec from https://twiki.cern.ch/twiki/bin/view/CMS/SummaryTable1G25ns#DY_Z -#xSec = [0.003565*1.23]*3 -#SF = -#specialweight = ()*() +[DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 11700 +sampleName = HT2500toinfZJets +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +;x-sec from https://twiki.cern.ch/twiki/bin/view/CMS/SummaryTable1G25ns#DY_Z +xSec = 0.003659*1.23 +SF = +cut = +specialweight = ()*() [DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] sampleIndex = 11000 -sampleName = HT0to100ZJets +sampleName = HTinclZJets sampleType = BKG subsamples = True subcuts = @@ -730,8 +873,8 @@ offsets = xSec = 3.027 * 1.23 SF = cut = -specialweight_ON = ()*() -specialweight_OFF = ()*() +#specialweight_ON = ()*() +specialweight_OFF = ()*()*1.04 specialweight = !> @@ -747,8 +890,8 @@ offsets = xSec = 0.297 * 1.23 SF = cut = -specialweight_ON = ()*() -specialweight_OFF = ()*() +#specialweight_ON = ()*() +specialweight_OFF = ()*()*1.04 specialweight = !> [DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] @@ -763,8 +906,8 @@ offsets = xSec = 3.41 * 1.23 SF = cut = -specialweight_ON = ()*() -specialweight_OFF = ()*() +#specialweight_ON = ()*() +specialweight_OFF = ()*()*0.94 specialweight = !> @@ -780,8 +923,8 @@ offsets = xSec = 0.5082 * 1.23 SF = cut = -specialweight_ON = ()*() -specialweight_OFF = ()*() +#specialweight_ON = ()*() +specialweight_OFF = ()*()*0.94 specialweight = !> #[DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8] @@ -967,19 +1110,21 @@ specialweight = # b-enriched -#[ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] -#sampleIndex = [16000,16001,16002] -#sampleName = ZBJets100 -#sampleType = BKG -#subsamples = True -#subnames = ['ZBJets100_0b','ZBJets100_1b','ZBJets100_2b'] -#subcuts = -#sampleGroup = -#xSec = [5.93 * 1.23] * 3 -#SF = -#specialweight_ON = () -#specialweight_OFF = () -#specialweight = !> +[ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 16000 +sampleName = ZBJets100 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 5.939 * 1.23 +SF = +cut = +#specialweight_ON = ()*(9.282e-01 + 2.350e-03*min(LHE_Vpt,800) - 2.032e-06*min(LHE_Vpt,800)**2) +specialweight_OFF = ()*1.02 +specialweight = !> [ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] sampleIndex = 16100 @@ -992,8 +1137,8 @@ xSec = 0.6068 * 1.23 suffixes = offsets = SF = -specialweight_ON = () -specialweight_OFF = () +#specialweight_ON = () +specialweight_OFF = ()*1.02 specialweight = !> [ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] @@ -1007,8 +1152,8 @@ xSec = 2.16 * 1.23 suffixes = offsets = SF = -specialweight_ON = () -specialweight_OFF = () +#specialweight_ON = () +specialweight_OFF = ()*0.92 specialweight = !> [ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] @@ -1022,8 +1167,8 @@ xSec = 0.3155 * 1.23 suffixes = offsets = SF = -specialweight_ON = () -specialweight_OFF = () +#specialweight_ON = () +specialweight_OFF = ()*0.92 specialweight = !> @@ -1032,13 +1177,14 @@ specialweight = !> [Samples] #----- VH -----# -ZHsignal = 'ZllH_lep_PTV_0_75_hbb','ZllH_lep_PTV_75_150_hbb','ZllH_lep_PTV_150_250_0J_hbb','ZllH_lep_PTV_150_250_GE1J_hbb','ZllH_lep_PTV_GT250_hbb','ZnnH_lep_PTV_0_75_hbb','ZnnH_lep_PTV_75_150_hbb','ZnnH_lep_PTV_150_250_0J_hbb','ZnnH_lep_PTV_150_250_GE1J_hbb','ZnnH_lep_PTV_GT250_hbb' -ggZHsignal = 'ggZllH_lep_PTV_0_75_hbb','ggZllH_lep_PTV_75_150_hbb','ggZllH_lep_PTV_150_250_0J_hbb','ggZllH_lep_PTV_150_250_GE1J_hbb','ggZllH_lep_PTV_GT250_hbb','ggZnnH_lep_PTV_0_75_hbb','ggZnnH_lep_PTV_75_150_hbb','ggZnnH_lep_PTV_150_250_0J_hbb','ggZnnH_lep_PTV_150_250_GE1J_hbb','ggZnnH_lep_PTV_GT250_hbb' -WHsignal = 'WminusH_lep_PTV_0_75_hbb','WminusH_lep_PTV_75_150_hbb','WminusH_lep_PTV_150_250_0J_hbb','WminusH_lep_PTV_150_250_GE1J_hbb','WminusH_lep_PTV_GT250_hbb','WplusH_lep_PTV_0_75_hbb','WplusH_lep_PTV_75_150_hbb','WplusH_lep_PTV_150_250_0J_hbb','WplusH_lep_PTV_150_250_GE1J_hbb','WplusH_lep_PTV_GT250_hbb' +ZHsignal = 'ZnnH_lep_PTV_0_75_hbb','ZnnH_lep_PTV_75_150_hbb','ZnnH_lep_PTV_150_250_0J_hbb','ZnnH_lep_PTV_150_250_GE1J_hbb','ZnnH_lep_PTV_250_400_hbb','ZnnH_lep_PTV_GT400_hbb','ZllH_lep_PTV_0_75_hbb','ZllH_lep_PTV_75_150_hbb','ZllH_lep_PTV_150_250_0J_hbb','ZllH_lep_PTV_150_250_GE1J_hbb','ZllH_lep_PTV_250_400_hbb','ZllH_lep_PTV_GT400_hbb' +ggZHsignal = 'ggZllH_lep_PTV_0_75_hbb','ggZllH_lep_PTV_75_150_hbb','ggZllH_lep_PTV_150_250_0J_hbb','ggZllH_lep_PTV_150_250_GE1J_hbb','ggZllH_lep_PTV_250_400_hbb','ggZllH_lep_PTV_GT400_hbb','ggZnnH_lep_PTV_0_75_hbb','ggZnnH_lep_PTV_75_150_hbb','ggZnnH_lep_PTV_150_250_0J_hbb','ggZnnH_lep_PTV_150_250_GE1J_hbb','ggZnnH_lep_PTV_250_400_hbb','ggZnnH_lep_PTV_GT400_hbb' +WHsignal = 'WminusH_lep_PTV_0_75_hbb','WminusH_lep_PTV_75_150_hbb','WminusH_lep_PTV_150_250_0J_hbb','WminusH_lep_PTV_150_250_GE1J_hbb','WminusH_lep_PTV_250_400_hbb','WminusH_lep_PTV_GT400_hbb','WplusH_lep_PTV_0_75_hbb','WplusH_lep_PTV_75_150_hbb','WplusH_lep_PTV_150_250_0J_hbb','WplusH_lep_PTV_150_250_GE1J_hbb','WplusH_lep_PTV_250_400_hbb','WplusH_lep_PTV_GT400_hbb' signals = ,, #----- W+jets -----# WJetsHT0_VJ4 = 'WJetsHT0_0b_udsg', 'WJetsHT0_0b_c', 'WJetsHT0_1b', 'WJetsHT0_2b' +WJetsHT70_VJ4 = 'WJetsHT70_0b_udsg', 'WJetsHT70_0b_c', 'WJetsHT70_1b', 'WJetsHT70_2b' WJetsHT100_VJ4 = 'WJetsHT100_0b_udsg', 'WJetsHT100_0b_c', 'WJetsHT100_1b', 'WJetsHT100_2b' WJetsHT200_VJ4 = 'WJetsHT200_0b_udsg', 'WJetsHT200_0b_c', 'WJetsHT200_1b', 'WJetsHT200_2b' WJetsHT400_VJ4 = 'WJetsHT400_0b_udsg', 'WJetsHT400_0b_c', 'WJetsHT400_1b', 'WJetsHT400_2b' @@ -1049,6 +1195,7 @@ WJetsHT2500_VJ4 = 'WJetsHT2500_0b_udsg', 'WJetsHT2500_0b_c', 'WJetsHT2500_1b', ' WJetsB_VJ4 = 'WBJets100_0b_udsg', 'WBJets100_0b_c', 'WBJets100_1b', 'WBJets100_2b','WBJets200_0b_udsg','WBJets200_0b_c', 'WBJets200_1b', 'WBJets200_2b','WBGenFilter100_0b_udsg','WBGenFilter100_0b_c', 'WBGenFilter100_1b', 'WBGenFilter100_2b','WBGenFilter200_0b_udsg','WBGenFilter200_0b_c', 'WBGenFilter200_1b', 'WBGenFilter200_2b' WJetsHT0_Default = 'WJetsHT0_0b', 'WJetsHT0_1b', 'WJetsHT0_2b' +WJetsHT70_Default = 'WJetsHT70_0b', 'WJetsHT70_1b', 'WJetsHT70_2b' WJetsHT100_Default = 'WJetsHT100_0b', 'WJetsHT100_1b', 'WJetsHT100_2b' WJetsHT200_Default = 'WJetsHT200_0b', 'WJetsHT200_1b', 'WJetsHT200_2b' WJetsHT400_Default = 'WJetsHT400_0b', 'WJetsHT400_1b', 'WJetsHT400_2b' @@ -1059,6 +1206,7 @@ WJetsHT2500_Default = 'WJetsHT2500_0b', 'WJetsHT2500_1b', 'WJetsHT2500_2b' WJetsB_Default = 'WBJets100_0b', 'WBJets100_1b', 'WBJets100_2b','WBJets200_0b', 'WBJets200_1b', 'WBJets200_2b','WBGenFilter100_0b', 'WBGenFilter100_1b', 'WBGenFilter100_2b','WBGenFilter200_0b', 'WBGenFilter200_1b', 'WBGenFilter200_2b' WJetsHT0 = !> +WJetsHT70 = !> WJetsHT100 = !> WJetsHT200 = !> WJetsHT400 = !> @@ -1068,16 +1216,18 @@ WJetsHT1200 = !> WJetsHT2500 = !> WJetsB = !> -WJets = ,,,,,, +WJets = ,,,,,,,,, +#WJets = ,,,,,,,, -WJets_0b_udsg = 'WJetsHT0_0b_udsg', 'WJetsHT100_0b_udsg','WJetsHT200_0b_udsg','WJetsHT400_0b_udsg','WJetsHT600_0b_udsg','WJetsHT800_0b_udsg','WJetsHT1200_0b_udsg' -WJets_0b_c = 'WJetsHT0_0b_c','WJetsHT100_0b_c','WJetsHT200_0b_c','WJetsHT400_0b_c','WJetsHT600_0b_c','WJetsHT800_0b_c','WJetsHT1200_0b_c' -WJets_0b_2c = 'WJetsHT0_0b_2c','WJetsHT100_0b_2c','WJetsHT200_0b_2c','WJetsHT400_0b_2c','WJetsHT600_0b_2c','WJetsHT800_0b_2c','WJetsHT1200_0b_2c' +WJets_0b_udsg = 'WJetsHT0_0b_udsg', 'WJetsHT100_0b_udsg','WJetsHT200_0b_udsg','WJetsHT400_0b_udsg','WJetsHT600_0b_udsg','WJetsHT800_0b_udsg','WJetsHT1200_0b_udsg','WBJets100_0b_udsg','WBJets200_0b_udsg','WBGenFilter100_0b_udsg','WBGenFilter200_0b_udsg' +WJets_0b_c = 'WJetsHT0_0b_c','WJetsHT100_0b_c','WJetsHT200_0b_c','WJetsHT400_0b_c','WJetsHT600_0b_c','WJetsHT800_0b_c','WJetsHT1200_0b_c','WBJets100_0b_c','WBJets200_0b_c','WBGenFilter100_0b_c','WBGenFilter200_0b_c' +WJets_0b_2c = 'WJetsHT0_0b_2c','WJetsHT100_0b_2c','WJetsHT200_0b_2c','WJetsHT400_0b_2c','WJetsHT600_0b_2c','WJetsHT800_0b_2c','WJetsHT1200_0b_2c','WBJets100_0b_2c','WBJets200_0b_2c','WBGenFilter100_0b_2c','WBGenFilter200_0b_2c' WJets_0b = , -WJets_1b = 'WJetsHT0_1b','WJetsHT100_1b','WJetsHT200_1b','WJetsHT400_1b','WJetsHT600_1b','WJetsHT800_1b','WJetsHT1200_1b' -WJets_1b_udsg = 'WJetsHT0_1b_udsg','WJetsHT100_1b_udsg','WJetsHT200_1b_udsg','WJetsHT400_1b_udsg','WJetsHT600_1b_udsg','WJetsHT800_1b_udsg','WJetsHT1200_1b_udsg' -WJets_1b_c = 'WJetsHT0_1b_c','WJetsHT100_1b_c','WJetsHT200_1b_c','WJetsHT400_1b_c','WJetsHT600_1b_c','WJetsHT800_1b_c','WJetsHT1200_1b_c' -WJets_2b = 'WJetsHT0_2b','WJetsHT100_2b','WJetsHT200_2b','WJetsHT400_2b','WJetsHT600_2b','WJetsHT800_2b','WJetsHT1200_2b' +WJets_1b = 'WJetsHT0_1b','WJetsHT100_1b','WJetsHT200_1b','WJetsHT400_1b','WJetsHT600_1b','WJetsHT800_1b','WJetsHT1200_1b','WBJets100_1b','WBJets200_1b','WBGenFilter100_1b','WBGenFilter200_1b' +WJets_1b_udsg = 'WJetsHT0_1b_udsg','WJetsHT100_1b_udsg','WJetsHT200_1b_udsg','WJetsHT400_1b_udsg','WJetsHT600_1b_udsg','WJetsHT800_1b_udsg','WJetsHT1200_1b_udsg','WBJets100_1b_udsg','WBJets200_1b_udsg','WBGenFilter100_1b_udsg','WBGenFilter200_1b_udsg' +WJets_1b_c = 'WJetsHT0_1b_c','WJetsHT100_1b_c','WJetsHT200_1b_c','WJetsHT400_1b_c','WJetsHT600_1b_c','WJetsHT800_1b_c','WJetsHT1200_1b_c','WBJets100_1b_c','WBJets200_1b_c','WBGenFilter100_1b_c','WBGenFilter200_1b_c' +WJets_2b = 'WJetsHT0_2b','WJetsHT100_2b','WJetsHT200_2b','WJetsHT400_2b','WJetsHT600_2b','WJetsHT800_2b','WJetsHT1200_2b','WBJets100_2b','WBJets200_2b','WBGenFilter100_2b','WBGenFilter200_2b' + #----- Z+jets -----# ZJetsHT100_VJ4 = 'ZJetsHT100_0b_udsg', 'ZJetsHT100_2b','ZJetsHT100_0b_c', 'ZJetsHT100_1b' @@ -1087,10 +1237,14 @@ ZJetsHT600_VJ4 = 'ZJetsHT600_0b_udsg', 'ZJetsHT600_2b','ZJetsHT600_0b_c', 'ZJet ZJetsHT800_VJ4 = 'ZJetsHT800_0b_udsg', 'ZJetsHT800_2b','ZJetsHT800_0b_c', 'ZJetsHT800_1b' ZJetsHT1200_VJ4 = 'ZJetsHT1200_0b_udsg', 'ZJetsHT1200_2b','ZJetsHT1200_0b_c', 'ZJetsHT1200_1b' ZJetsHT2500_VJ4 = 'ZJetsHT2500_0b_udsg', 'ZJetsHT2500_2b','ZJetsHT2500_0b_c', 'ZJetsHT2500_1b' -#ZJB_VJ4 = 'ZBJets100_0b_udsg','ZBJets100_1b','ZBJets100_2b','ZBJets200_0b_udsg','ZBJets200_1b','ZBJets200_2b','ZBGenFilter100_0b_udsg','ZBGenFilter100_1b','ZBGenFilter100_2b','ZBGenFilter200_0b_udsg','ZBGenFilter200_1b','ZBGenFilter200_2b','ZBJets100_0b_c','ZBJets200_0b_c','ZBGenFilter100_0b_c','ZBGenFilter200_0b_c' -ZJB_VJ4 = 'ZBJets200_0b_udsg','ZBJets200_1b','ZBJets200_2b','ZBGenFilter100_0b_udsg','ZBGenFilter100_1b','ZBGenFilter100_2b','ZBGenFilter200_0b_udsg','ZBGenFilter200_1b','ZBGenFilter200_2b','ZBJets200_0b_c','ZBGenFilter100_0b_c','ZBGenFilter200_0b_c' - -ZJetsHT100_Default = 'ZJetsHT100_0b', 'ZJetsHT100_2b', 'ZJetsHT100_1b' ZJetsHT200_Default = 'ZJetsHT200_0b', 'ZJetsHT200_2b', 'ZJetsHT200_1b' ZJetsHT400_Default = 'ZJetsHT400_0b', 'ZJetsHT400_2b', 'ZJetsHT400_1b' ZJetsHT600_Default = 'ZJetsHT600_0b', 'ZJetsHT600_2b', 'ZJetsHT600_1b' ZJetsHT800_Default = 'ZJetsHT800_0b', 'ZJetsHT800_2b', 'ZJetsHT800_1b' ZJetsHT1200_Default = 'ZJetsHT1200_0b', 'ZJetsHT1200_2b', 'ZJetsHT1200_1b' +ZJB_VJ4 = 'ZBJets100_0b_udsg','ZBJets100_1b','ZBJets100_2b','ZBJets200_0b_udsg','ZBJets200_1b','ZBJets200_2b','ZBGenFilter100_0b_udsg','ZBGenFilter100_1b','ZBGenFilter100_2b','ZBGenFilter200_0b_udsg','ZBGenFilter200_1b','ZBGenFilter200_2b','ZBJets100_0b_c','ZBJets200_0b_c','ZBGenFilter100_0b_c','ZBGenFilter200_0b_c' + +ZJetsHT100_Default = 'ZJetsHT100_0b', 'ZJetsHT100_2b', 'ZJetsHT100_1b' +ZJetsHT200_Default = 'ZJetsHT200_0b', 'ZJetsHT200_2b', 'ZJetsHT200_1b' +ZJetsHT400_Default = 'ZJetsHT400_0b', 'ZJetsHT400_2b', 'ZJetsHT400_1b' +ZJetsHT600_Default = 'ZJetsHT600_0b', 'ZJetsHT600_2b', 'ZJetsHT600_1b' +ZJetsHT800_Default = 'ZJetsHT800_0b', 'ZJetsHT800_2b', 'ZJetsHT800_1b' +ZJetsHT1200_Default = 'ZJetsHT1200_0b', 'ZJetsHT1200_2b', 'ZJetsHT1200_1b' ZJetsHT2500_Default = 'ZJetsHT2500_0b', 'ZJetsHT2500_2b', 'ZJetsHT2500_1b' ZJB_Default = 'ZBJets100_0b','ZBJets100_1b','ZBJets100_2b','ZBJets200_0b','ZBJets200_1b','ZBJets200_2b','ZBGenFilter100_0b','ZBGenFilter100_1b','ZBGenFilter100_2b','ZBGenFilter200_0b','ZBGenFilter200_1b','ZBGenFilter200_2b' @@ -1105,22 +1259,32 @@ ZJB = !> ZJets = , , , , , , , - -ZJets_0b = 'ZJetsHT100_0b','ZJetsHT200_0b','ZJetsHT400_0b','ZJetsHT600_0b','ZJetsHT800_0b','ZJetsHT1200_0b','ZJetsHT2500_0b','ZBJets200_0b','ZBGenFilter100_0b','ZBGenFilter200_0b' -ZJets_0b_udsg = 'ZJetsHT100_0b_udsg','ZJetsHT200_0b_udsg','ZJetsHT400_0b_udsg','ZJetsHT600_0b_udsg','ZJetsHT800_0b_udsg','ZJetsHT1200_0b_udsg','ZJetsHT2500_0b_udsg','ZBJets200_0b_udsg','ZBGenFilter100_0b_udsg','ZBGenFilter200_0b_udsg' -ZJets_1b_udsg = 'ZJetsHT100_1b_udsg','ZJetsHT200_1b_udsg','ZJetsHT400_1b_udsg','ZJetsHT600_1b_udsg','ZJetsHT800_1b_udsg','ZJetsHT1200_1b_udsg','ZJetsHT2500_1b_udsg','ZBJets200_1b_udsg','ZBGenFilter100_1b_udsg','ZBGenFilter200_1b_udsg' -ZJets_1b = 'ZJetsHT100_1b','ZJetsHT200_1b','ZJetsHT400_1b','ZJetsHT600_1b','ZJetsHT800_1b','ZJetsHT1200_1b','ZJetsHT2500_1b','ZBJets200_1b','ZBGenFilter100_1b','ZBGenFilter200_1b' -ZJets_2b = 'ZJetsHT100_2b','ZJetsHT200_2b','ZJetsHT400_2b','ZJetsHT600_2b','ZJetsHT800_2b','ZJetsHT1200_2b','ZJetsHT2500_2b','ZBJets200_2b','ZBGenFilter100_2b','ZBGenFilter200_2b' -ZJets_0b_c = 'ZJetsHT100_0b_c','ZJetsHT200_0b_c','ZJetsHT400_0b_c','ZJetsHT600_0b_c','ZJetsHT800_0b_c','ZJetsHT1200_0b_c','ZJetsHT2500_0b_c','ZBJets200_0b_c','ZBGenFilter100_0b_c','ZBGenFilter200_0b_c' -ZJets_1b_c = 'ZJetsHT100_1b_c','ZJetsHT200_1b_c','ZJetsHT400_1b_c','ZJetsHT600_1b_c','ZJetsHT800_1b_c','ZJetsHT1200_1b_c','ZJetsHT2500_1b_c','ZBJets200_1b_c','ZBGenFilter100_1b_c','ZBGenFilter200_1b_c' -ZJets_0b_2c = 'ZJetsHT100_0b_2c','ZJetsHT200_0b_2c','ZJetsHT400_0b_2c','ZJetsHT600_0b_2c','ZJetsHT800_0b_2c','ZJetsHT1200_0b_2c','ZJetsHT2500_0b_2c','ZBJets200_0b_2c','ZBGenFilter100_0b_2c','ZBGenFilter200_0b_2c' - - +ZJets_0b = 'ZJetsHT100_0b','ZJetsHT200_0b','ZJetsHT400_0b','ZJetsHT600_0b','ZJetsHT800_0b','ZJetsHT1200_0b','ZJetsHT2500_0b','ZBJets100_0b','ZBJets200_0b','ZBGenFilter100_0b','ZBGenFilter200_0b' +ZJets_0b_udsg = 'ZJetsHT100_0b_udsg','ZJetsHT200_0b_udsg','ZJetsHT400_0b_udsg','ZJetsHT600_0b_udsg','ZJetsHT800_0b_udsg','ZJetsHT1200_0b_udsg','ZJetsHT2500_0b_udsg','ZBJets100_0b_udsg','ZBJets200_0b_udsg','ZBGenFilter100_0b_udsg','ZBGenFilter200_0b_udsg' +ZJets_1b_udsg = 'ZJetsHT100_1b_udsg','ZJetsHT200_1b_udsg','ZJetsHT400_1b_udsg','ZJetsHT600_1b_udsg','ZJetsHT800_1b_udsg','ZJetsHT1200_1b_udsg','ZJetsHT2500_1b_udsg','ZBJets100_1b_udsg','ZBJets200_1b_udsg','ZBGenFilter100_1b_udsg','ZBGenFilter200_1b_udsg' +ZJets_1b = 'ZJetsHT100_1b','ZJetsHT200_1b','ZJetsHT400_1b','ZJetsHT600_1b','ZJetsHT800_1b','ZJetsHT1200_1b','ZJetsHT2500_1b','ZBJets100_1b','ZBJets200_1b','ZBGenFilter100_1b','ZBGenFilter200_1b' +ZJets_2b = 'ZJetsHT100_2b','ZJetsHT200_2b','ZJetsHT400_2b','ZJetsHT600_2b','ZJetsHT800_2b','ZJetsHT1200_2b','ZJetsHT2500_2b','ZBJets100_2b','ZBJets200_2b','ZBGenFilter100_2b','ZBGenFilter200_2b' +ZJets_0b_c = 'ZJetsHT100_0b_c','ZJetsHT200_0b_c','ZJetsHT400_0b_c','ZJetsHT600_0b_c','ZJetsHT800_0b_c','ZJetsHT1200_0b_c','ZJetsHT2500_0b_c','ZBJets100_0b_c','ZBJets200_0b_c','ZBGenFilter100_0b_c','ZBGenFilter200_0b_c' +ZJets_1b_c = 'ZJetsHT100_1b_c','ZJetsHT200_1b_c','ZJetsHT400_1b_c','ZJetsHT600_1b_c','ZJetsHT800_1b_c','ZJetsHT1200_1b_c','ZJetsHT2500_1b_c','ZBJets100_1b_c','ZBJets200_1b_c','ZBGenFilter100_1b_c','ZBGenFilter200_1b_c' +ZJets_0b_2c = 'ZJetsHT100_0b_2c','ZJetsHT200_0b_2c','ZJetsHT400_0b_2c','ZJetsHT600_0b_2c','ZJetsHT800_0b_2c','ZJetsHT1200_0b_2c','ZJetsHT2500_0b_2c','ZBJets100_0b_2c','ZBJets200_0b_2c','ZBGenFilter100_0b_2c','ZBGenFilter200_0b_2c' #----- DY -----# -# DYm4 not available - -DYHT0_VJ4 = 'HT0to100ZJets_0b_udsg', 'HT0to100ZJets_0b_c', 'HT0to100ZJets_1b', 'HT0to100ZJets_2b' +;70to100 broken in 2017 +;DYm4HT70 = 'M4HT70to100_0b','M4HT70to100_1b','M4HT70to100_2b' +DYm4HT100_VJ4 = 'M4HT100to200_0b_udsg','M4HT100to200_0b_c','M4HT100to200_1b','M4HT100to200_2b' +DYm4HT200_VJ4 = 'M4HT200to400_0b_udsg','M4HT200to400_0b_c','M4HT200to400_1b','M4HT200to400_2b' +DYm4HT400_VJ4 = 'M4HT400to600_0b_udsg','M4HT400to600_0b_c','M4HT400to600_1b','M4HT400to600_2b' +DYm4HT600_VJ4 = 'M4HT600toInf_0b_udsg','M4HT600toInf_0b_c','M4HT600toInf_1b','M4HT600toInf_2b' + +;DYm4HT100_Default = 'M4HT100to200_0b','M4HT100to200_1b','M4HT100to200_2b' +;DYm4HT200_Default = 'M4HT200to400_0b','M4HT200to400_1b','M4HT200to400_2b' +;DYm4HT400_Default = 'M4HT400to600_0b','M4HT400to600_1b','M4HT400to600_2b' +;DYm4HT600_Default = 'M4HT600toInf_0b','M4HT600toInf_1b','M4HT600toInf_2b' + +DYm4 = !>,!>,!>,!> + +DYHT0_VJ4 = 'HTinclZJets_0b_udsg', 'HTinclZJets_0b_c', 'HTinclZJets_1b', 'HTinclZJets_2b' +DYHT70_VJ4 = 'HT70to100ZJets_0b_udsg', 'HT70to100ZJets_0b_c', 'HT70to100ZJets_1b', 'HT70to100ZJets_2b' DYHT100_VJ4 = 'HT100to200ZJets_0b_udsg', 'HT100to200ZJets_0b_c', 'HT100to200ZJets_1b', 'HT100to200ZJets_2b' DYHT200_VJ4 = 'HT200to400ZJets_0b_udsg', 'HT200to400ZJets_0b_c', 'HT200to400ZJets_1b', 'HT200to400ZJets_2b' DYHT400_VJ4 = 'HT400to600ZJets_0b_udsg', 'HT400to600ZJets_0b_c', 'HT400to600ZJets_1b', 'HT400to600ZJets_2b' @@ -1135,32 +1299,37 @@ DYHT200_Default = 'HT200to400ZJets_0b', 'HT200to400ZJets_1b', 'HT200to400ZJ DYHT400_Default = 'HT400to600ZJets_0b', 'HT400to600ZJets_1b', 'HT400to600ZJets_2b' DYHT600_Default = 'HT600to800ZJets_0b', 'HT600to800ZJets_1b', 'HT600to800ZJets_2b' DYHT800_Default = 'HT800to1200ZJets_0b', 'HT800to1200ZJets_1b', 'HT800to1200ZJets_2b' -#DYHT1200_Default = 'HT1200to2500ZJets_0b', 'HT1200to2500ZJets_1b', 'HT1200to2500ZJets_2b' -#DYHT2500_Default = 'HT2500toinfZJets_0b', 'HT2500toinfZJets_1b', 'HT2500toinfZJets_2b' +DYHT1200_Default = 'HT1200to2500ZJets_0b', 'HT1200to2500ZJets_1b', 'HT1200to2500ZJets_2b' +DYHT2500_Default = 'HT2500toinfZJets_0b', 'HT2500toinfZJets_1b', 'HT2500toinfZJets_2b' -DYm50 = !>,!>,!>,!>,!>,!> +DYm50 = !>,!>,!>,!>,!>,!>,!>,!>,!> +#DYm50 = !>,!>,!>,!>,!>,!>,!>,!> -DYBJets_VJ4 = 'DYBJets_100to200_0b_udsg','DYBJets_100to200_0b_c','DYBJets_100to200_1b','DYBJets_100to200_2b','DYBJets_200toInf_0b_udsg','DYBJets_200toInf_0b_c','DYBJets_200toInf_1b','DYBJets_200toInf_2b' -DYJetsBGenFilter_VJ4 = 'DYJetsBGenFilter_100to200_0b_udsg','DYJetsBGenFilter_100to200_0b_c','DYJetsBGenFilter_100to200_1b','DYJetsBGenFilter_100to200_2b','DYJetsBGenFilter_200toInf_0b_udsg','DYJetsBGenFilter_200toInf_0b_c','DYJetsBGenFilter_200toInf_1b','DYJetsBGenFilter_200toInf_2b' -DYBJets_Default = 'DYBJets_100to200_0b','DYBJets_100to200_1b','DYBJets_100to200_2b','DYBJets_200toInf_0b','DYBJets_200toInf_1b','DYBJets_200toInf_2b' -DYJetsBGenFilter_Default = 'DYJetsBGenFilter_100to200_0b','DYJetsBGenFilter_100to200_1b','DYJetsBGenFilter_100to200_2b','DYJetsBGenFilter_200toInf_0b','DYJetsBGenFilter_200toInf_1b','DYJetsBGenFilter_200toInf_2b' +DYBJets_VJ4 = 'DYBJets_100to200_0b_udsg','DYBJets_100to200_0b_c','DYBJets_100to200_1b','DYBJets_100to200_2b','DYBJets_200toInf_0b_udsg','DYBJets_200toInf_0b_c','DYBJets_200toInf_1b','DYBJets_200toInf_2b' +DYJetsBGenFilter_VJ4 = 'DYJetsBGenFilter_100to200_0b_udsg','DYJetsBGenFilter_100to200_0b_c','DYJetsBGenFilter_100to200_1b','DYJetsBGenFilter_100to200_2b','DYJetsBGenFilter_200toInf_0b_udsg','DYJetsBGenFilter_200toInf_0b_c','DYJetsBGenFilter_200toInf_1b','DYJetsBGenFilter_200toInf_2b' +DYBJets_Default = 'DYBJets_100to200_0b','DYBJets_100to200_1b','DYBJets_100to200_2b','DYBJets_200toInf_0b','DYBJets_200toInf_1b','DYBJets_200toInf_2b' +DYJetsBGenFilter_Default = 'DYJetsBGenFilter_100to200_0b','DYJetsBGenFilter_100to200_1b','DYJetsBGenFilter_100to200_2b','DYJetsBGenFilter_200toInf_0b','DYJetsBGenFilter_200toInf_1b','DYJetsBGenFilter_200toInf_2b' DYBJets = !> DYJetsBGenFilter = !> -#DYlo = ,,, -DYlo = ,, +DYlo = ,,, DY = DynloIncl = 'DYnloIncl_0b','DYnloIncl_1b','DYnloIncl_2b' DYnlom50 = DYnlo = -DY_0b_udsg = 'HT0to100ZJets_0b_udsg','HT100to200ZJets_0b_udsg','HT200to400ZJets_0b_udsg','HT400to600ZJets_0b_udsg','HT600to800ZJets_0b_udsg','HT800to1200ZJets_0b_udsg','DYBJets_100to200_0b_udsg','DYBJets_200toInf_0b_udsg','DYJetsBGenFilter_100to200_0b_udsg','DYJetsBGenFilter_200toInf_0b_udsg' -DY_0b_c = 'HT0to100ZJets_0b_c','HT100to200ZJets_0b_c','HT200to400ZJets_0b_c','HT400to600ZJets_0b_c','HT600to800ZJets_0b_c','HT800to1200ZJets_0b_c','DYBJets_100to200_0b_c','DYBJets_200toInf_0b_c','DYJetsBGenFilter_100to200_0b_c','DYJetsBGenFilter_200toInf_0b_c' -DY_1b = 'HT0to100ZJets_1b','HT100to200ZJets_1b','HT200to400ZJets_1b','HT400to600ZJets_1b','HT600to800ZJets_1b','HT800to1200ZJets_1b','DYBJets_100to200_1b','DYBJets_200toInf_1b','DYJetsBGenFilter_100to200_1b','DYJetsBGenFilter_200toInf_1b' -DY_2b = 'HT0to100ZJets_2b','HT100to200ZJets_2b','HT200to400ZJets_2b','HT400to600ZJets_2b','HT600to800ZJets_2b','HT800to1200ZJets_2b','DYBJets_100to200_2b','DYBJets_200toInf_2b','DYJetsBGenFilter_100to200_2b','DYJetsBGenFilter_200toInf_2b' +#DY_0b = 'M4HT100to200_0b','M4HT200to400_0b','M4HT400to600_0b','M4HT600toInf_0b','HT0to100ZJets_0b','HT100to200ZJets_0b','HT200to400ZJets_0b','HT400to600ZJets_0b','HT600to800ZJets_0b','HT800to1200ZJets_0b','HT1200to2500ZJets_0b','HT2500toinfZJets_0b','DYBJets_100to200_0b','DYBJets_200toInf_0b','DYJetsBGenFilter_100to200_0b','DYJetsBGenFilter_200toInf_0b' +#DY_1b = 'M4HT100to200_1b','M4HT200to400_1b','M4HT400to600_1b','M4HT600toInf_1b','HT0to100ZJets_1b','HT100to200ZJets_1b','HT200to400ZJets_1b','HT400to600ZJets_1b','HT600to800ZJets_1b','HT800to1200ZJets_1b','HT1200to2500ZJets_1b','HT2500toinfZJets_1b','DYBJets_100to200_1b','DYBJets_200toInf_1b','DYJetsBGenFilter_100to200_1b','DYJetsBGenFilter_200toInf_1b' +#DY_2b = 'M4HT100to200_2b','M4HT200to400_2b','M4HT400to600_2b','M4HT600toInf_2b','HT0to100ZJets_2b','HT100to200ZJets_2b','HT200to400ZJets_2b','HT400to600ZJets_2b','HT600to800ZJets_2b','HT800to1200ZJets_2b','HT1200to2500ZJets_2b','HT2500toinfZJets_2b','DYBJets_100to200_2b','DYBJets_200toInf_2b','DYJetsBGenFilter_100to200_2b','DYJetsBGenFilter_200toInf_2b' +#DY_0b_udsg = 'M4HT100to200_0b_udsg','M4HT200to400_0b_udsg','M4HT400to600_0b_udsg','M4HT600toInf_0b_udsg','HT0to100ZJets_0b_udsg','HT100to200ZJets_0b_udsg','HT200to400ZJets_0b_udsg','HT400to600ZJets_0b_udsg','HT600to800ZJets_0b_udsg','HT800to1200ZJets_0b_udsg','HT1200to2500ZJets_0b_udsg','HT2500toinfZJets_0b_udsg','DYBJets_100to200_0b_udsg','DYBJets_200toInf_0b_udsg','DYJetsBGenFilter_100to200_0b_udsg','DYJetsBGenFilter_200toInf_0b_udsg' +#DY_0b_c = 'M4HT100to200_0b_c','M4HT200to400_0b_c','M4HT400to600_0b_c','M4HT600toInf_0b_c','HT0to100ZJets_0b_c','HT100to200ZJets_0b_c','HT200to400ZJets_0b_c','HT400to600ZJets_0b_c','HT600to800ZJets_0b_c','HT800to1200ZJets_0b_c','HT1200to2500ZJets_0b_c','HT2500toinfZJets_0b_c','DYBJets_100to200_0b_c','DYBJets_200toInf_0b_c','DYJetsBGenFilter_100to200_0b_c','DYJetsBGenFilter_200toInf_0b_c' +DY_1b = 'M4HT100to200_1b','M4HT200to400_1b','M4HT400to600_1b','M4HT600toInf_1b','HTinclZJets_1b','HT100to200ZJets_1b','HT200to400ZJets_1b','HT400to600ZJets_1b','HT600to800ZJets_1b','HT800to1200ZJets_1b','HT1200to2500ZJets_1b','HT2500toinfZJets_1b','DYBJets_100to200_1b','DYBJets_200toInf_1b','DYJetsBGenFilter_100to200_1b','DYJetsBGenFilter_200toInf_1b' +DY_2b = 'M4HT100to200_2b','M4HT200to400_2b','M4HT400to600_2b','M4HT600toInf_2b','HTinclZJets_2b','HT100to200ZJets_2b','HT200to400ZJets_2b','HT400to600ZJets_2b','HT600to800ZJets_2b','HT800to1200ZJets_2b','HT1200to2500ZJets_2b','HT2500toinfZJets_2b','DYBJets_100to200_2b','DYBJets_200toInf_2b','DYJetsBGenFilter_100to200_2b','DYJetsBGenFilter_200toInf_2b' +DY_0b_udsg = 'M4HT100to200_0b_udsg','M4HT200to400_0b_udsg','M4HT400to600_0b_udsg','M4HT600toInf_0b_udsg','HTinclZJets_0b_udsg','HT100to200ZJets_0b_udsg','HT200to400ZJets_0b_udsg','HT400to600ZJets_0b_udsg','HT600to800ZJets_0b_udsg','HT800to1200ZJets_0b_udsg','HT1200to2500ZJets_0b_udsg','HT2500toinfZJets_0b_udsg','DYBJets_100to200_0b_udsg','DYBJets_200toInf_0b_udsg','DYJetsBGenFilter_100to200_0b_udsg','DYJetsBGenFilter_200toInf_0b_udsg' +DY_0b_c = 'M4HT100to200_0b_c','M4HT200to400_0b_c','M4HT400to600_0b_c','M4HT600toInf_0b_c','HTinclZJets_0b_c','HT100to200ZJets_0b_c','HT200to400ZJets_0b_c','HT400to600ZJets_0b_c','HT600to800ZJets_0b_c','HT800to1200ZJets_0b_c','HT1200to2500ZJets_0b_c','HT2500toinfZJets_0b_c','DYBJets_100to200_0b_c','DYBJets_200toInf_0b_c','DYJetsBGenFilter_100to200_0b_c','DYJetsBGenFilter_200toInf_0b_c' DYm50_0b = 'HT0to100ZJets_0b','HT100to200ZJets_0b','HT200to400ZJets_0b','HT400to600ZJets_0b','HT600to800ZJets_0b','HT800to1200ZJets_0b','HT1200to2500ZJets_0b','HT2500toinfZJets_0b','DYBJets_100to200_0b','DYBJets_200toInf_0b','DYJetsBGenFilter_100to200_0b','DYJetsBGenFilter_200toInf_0b' DYm50_1b = 'HT0to100ZJets_1b','HT100to200ZJets_1b','HT200to400ZJets_1b','HT400to600ZJets_1b','HT600to800ZJets_1b','HT800to1200ZJets_1b','HT1200to2500ZJets_1b','HT2500toinfZJets_1b','DYBJets_100to200_1b','DYBJets_200toInf_1b','DYJetsBGenFilter_100to200_1b','DYJetsBGenFilter_200toInf_1b' @@ -1177,14 +1346,22 @@ ST = 'ST_tW_antitop','ST_tW_top','ST_s-channel_4f','ST_t-channel_top_4f','ST_t- #----- QCD Samples -----# QCD = 'QCDHT200', 'QCDHT300', 'QCDHT500', 'QCDHT700', 'QCDHT1000', 'QCDHT1500', 'QCDHT2000' +QCDEME = 'QCD15EME','QCD20EME','QCD30EME','QCD50EME','QCD120EME','QCD170EME','QCD300EME' +QCDb = 'QCD100b','QCD200b','QCD300b','QCD500b','QCD700b','QCD1000b','QCD1500b','QCD2000b' +QCDbcToE = 'QCD20bcToE','QCD30bcToE','QCD80bcToE','QCD170bcToE','QCD250bcToE' +#QCDPt = 'QCDPt15','QCDPt30','QCDPt50','QCDPt80','QCDPt120','QCDPt170','QCDPt300','QCDPt470','QCDPt600','QCDPt800','QCDPt1000','QCDPt1400','QCDPt1800','QCDPt2400','QCDPt3200' +QCDPt = 'QCDPt15','QCDPt30','QCDPt50','QCDPt80','QCDPt120','QCDPt170','QCDPt300','QCDPt470','QCDPt600','QCDPt800','QCDPt1000','QCDPt1800','QCDPt2400','QCDPt3200' +QCDPtNoLargeWeights = 'QCDPt170','QCDPt300','QCDPt470','QCDPt600','QCDPt800','QCDPt1000','QCDPt1800','QCDPt2400','QCDPt3200' + #----- Diboson Samples -----# -WWLF = 'WWTo1L1Nu2Qnlo_0b' + +WWLF = 'WWTo1L1Nu2Qnlo_0b','WWTo2L2Nunlo_0b' WZLF = 'WZTo1L1Nu2Qnlo_0b' -ZZLF = 'ZZTo2L2Qnlo_0b' +ZZLF = 'ZZTo2L2Qnlo_0b','ZZTo2Q2Nu_0b' -WWHF = 'WWTo1L1Nu2Qnlo_1b','WWTo1L1Nu2Qnlo_2b' +WWHF = 'WWTo1L1Nu2Qnlo_1b','WWTo1L1Nu2Qnlo_2b','WWTo2L2Nunlo_1b', 'WWTo2L2Nunlo_2b' WZHF = 'WZTo1L1Nu2Qnlo_1b','WZTo1L1Nu2Qnlo_2b' -ZZHF = 'ZZTo2L2Qnlo_1b','ZZTo2L2Qnlo_2b' +ZZHF = 'ZZTo2L2Qnlo_1b','ZZTo2L2Qnlo_2b','ZZTo2Q2Nu_1b', 'ZZTo2Q2Nu_2b' VVLF = ,, VVHF = ,, diff --git a/python/VHbb2016commonconfig/samples_mc_V11.ini b/python/VHbb2016commonconfig/samples_mc_V11.ini new file mode 100644 index 000000000..71d79e4f5 --- /dev/null +++ b/python/VHbb2016commonconfig/samples_mc_V11.ini @@ -0,0 +1,1236 @@ +# common samples config for 2016 analysis + +[General] +allDYweight = 1.0 +VVpythia_sampleGroup = ['VVLF', 'VVLF', 'VVHF'] + +# default +ZJetsGroup_Default = ['ZJets_0b', 'ZJets_1b', 'ZJets_2b'] +ZJetsSuffix_Default = ['0b', '1b', '2b'] +ZJetsOffsets_Default = [0, 1, 2] +WJetsGroup_Default = ['WJets_0b', 'WJets_1b', 'WJets_2b'] +WJetsSuffix_Default = ['0b', '1b', '2b'] +WJetsOffsets_Default = [0, 1, 2] + +# separate V+c components +ZJetsGroup_VJ4 = ['ZJets_0b_udsg', 'ZJets_0b_c', 'ZJets_1b', 'ZJets_2b'] +ZJetsSuffix_VJ4 = ['0b_udsg', '0b_c', '1b', '2b'] +ZJetsOffsets_VJ4 = [0, 4, 1, 2] +WJetsGroup_VJ4 = ['WJets_0b_udsg', 'WJets_0b_c', 'WJets_1b', 'WJets_2b'] +WJetsSuffix_VJ4 = ['0b_udsg', '0b_c', '1b', '2b'] +WJetsOffsets_VJ4 = [0, 4, 1, 2] + +# select based on General.VjetFlavor setting +ZJetsGroup = !> +ZJetsSuffix = !> +ZJetsOffsets = !> +WJetsGroup = !> +WJetsSuffix = !> +WJetsOffsets = !> + +JetFlavor25 = [ + 'Sum$(GenJet_pt>25 && abs(GenJet_eta)<2.4 && GenJet_hadronFlavour==5)<1', # udscg jets + 'Sum$(GenJet_pt>25 && abs(GenJet_eta)<2.4 && GenJet_hadronFlavour==5)==1', # single b-jet + 'Sum$(GenJet_pt>25 && abs(GenJet_eta)<2.4 && GenJet_hadronFlavour==5)>=2', # double b-jets + ] + +JetFlavor20 = [ + 'Sum$(GenJet_pt>20 && abs(GenJet_eta)<2.4 && GenJet_hadronFlavour==5)<1', # udscg jets + 'Sum$(GenJet_pt>20 && abs(GenJet_eta)<2.4 && GenJet_hadronFlavour==5)==1', # single b-jet + 'Sum$(GenJet_pt>20 && abs(GenJet_eta)<2.4 && GenJet_hadronFlavour==5)>=2', # double b-jets + ] + +JetFlavorBhadrons25withC = [ + '(nGenBpt25eta2p6<1&&nGenDpt25eta2p6<1)', + '(nGenBpt25eta2p6<1&&nGenDpt25eta2p6>0)', + '(nGenBpt25eta2p6==1)', + '(nGenBpt25eta2p6>1)', + ] + +JetFlavor_Default = +JetFlavor_VJ4 = + +JetFlavor = !> + +DibosonFlavorXbb = [ + '(Sum$(GenPart_genPartIdxMother>=0&&abs(GenPart_pdgId)==5&&(GenPart_pdgId[GenPart_genPartIdxMother]==23||abs(GenPart_pdgId[GenPart_genPartIdxMother])==24)&&GenPart_status[GenPart_genPartIdxMother]==62))<1', + '(Sum$(GenPart_genPartIdxMother>=0&&abs(GenPart_pdgId)==5&&(GenPart_pdgId[GenPart_genPartIdxMother]==23||abs(GenPart_pdgId[GenPart_genPartIdxMother])==24)&&GenPart_status[GenPart_genPartIdxMother]==62))==1', + '(Sum$(GenPart_genPartIdxMother>=0&&abs(GenPart_pdgId)==5&&(GenPart_pdgId[GenPart_genPartIdxMother]==23||abs(GenPart_pdgId[GenPart_genPartIdxMother])==24)&&GenPart_status[GenPart_genPartIdxMother]==62))>=2', + ] + +DibosonFlavorAT = +DibosonFlavor = + +# test AT definition: --set='General.DibosonFlavor=' + +preselectionCut = 1 + +[Stitching] + +# OFF: only use inclusive + HT binned samples +# EXCL: use b-enriched exclusively in their phase-space (throw away overlap) + +MethodWJ = OFF +#MethodWJ = EXCL + +MethodZJ = OFF +#MethodZJ = EXCL + +MethodDY = OFF +#MethodDY = EXCL + +# differential reweighting of b-enriched/filtered samples to inclusive+ht binned +#ReweightLHEVpt = ON +# normlization reweighting of b-enriched/filtered samples to inclusive+ht binned +ReweightLHEVpt = OFF + +WJincl_OFF = (LHE_HT<100) +WJ100_OFF = (LHE_HT>=100&&LHE_HT<200) +WJ200_OFF = (LHE_HT>=200&&LHE_HT<400) +WJ400_OFF = (LHE_HT>=400&&LHE_HT<600) +WJ600_OFF = (LHE_HT>=600&&LHE_HT<800) +WJ800_OFF = (LHE_HT>=800&&LHE_HT<1200) +WJ1200_OFF = (LHE_HT>=1200&&LHE_HT<2500) +WJ2500_OFF = (LHE_HT>=2500) +WJB100_OFF = 0.0 +WJB200_OFF = 0.0 +WJGBF100_OFF = 0.0 +WJGBF200_OFF = 0.0 + +WJincl_EXCL = (((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100)&&LHE_HT<100) +WJ100_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) +WJ200_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) +WJ400_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) +WJ600_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) +WJ800_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) +WJ1200_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) +WJ2500_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) +WJB100_EXCL = (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200) +WJB200_EXCL = (LHE_Nb>0&&LHE_Vpt>=200) +WJGBF100_EXCL = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200) +WJGBF200_EXCL = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200) + +WJincl = !> +WJ100 = !> +WJ200 = !> +WJ400 = !> +WJ600 = !> +WJ800 = !> +WJ1200 = !> +WJ2500 = !> +WJB100 = !> +WJB200 = !> +WJGBF100 = !> +WJGBF200 = !> + +# don't use b-enriched samples +DYincl_OFF = (LHE_HT<100) +DY_HT100_OFF = (LHE_HT>=100&&LHE_HT<200) +DY_HT200_OFF = (LHE_HT>=200&&LHE_HT<400) +DY_HT400_OFF = (LHE_HT>=400&&LHE_HT<600) +DY_HT600_OFF = (LHE_HT>=600&&LHE_HT<800) +DY_HT800_OFF = (LHE_HT>=800&&LHE_HT<1200) +DY_HT1200_OFF = (LHE_HT>=1200&&LHE_HT<2500) +DY_HT2500_OFF = (LHE_HT>=2500) +DY_B100_OFF = 0.0 +DY_B200_OFF = 0.0 +DY_F100_OFF = 0.0 +DY_F200_OFF = 0.0 + +# don't use HT bins and b-enriched samples +DYincl_NOHT = 1.0 +DY_HT100_NOHT = 0.0 +DY_HT200_NOHT = 0.0 +DY_HT400_NOHT = 0.0 +DY_HT600_NOHT = 0.0 +DY_HT800_NOHT = 0.0 +DY_HT1200_NOHT = 0.0 +DY_HT2500_NOHT = 0.0 +DY_B100_NOHT = 0.0 +DY_B200_NOHT = 0.0 +DY_F100_NOHT = 0.0 +DY_F200_NOHT = 0.0 + +# use b-enriched and GenFilter, exclusively +DYincl_EXCL = (LHE_Vpt<100 || (nGenStatus2bHad==0 && LHE_Nb==0))*() +DY_HT100_EXCL = (LHE_Vpt<100 || (nGenStatus2bHad==0 && LHE_Nb==0))*() +DY_HT200_EXCL = (LHE_Vpt<100 || (nGenStatus2bHad==0 && LHE_Nb==0))*() +DY_HT400_EXCL = (LHE_Vpt<100 || (nGenStatus2bHad==0 && LHE_Nb==0))*() +DY_HT600_EXCL = (LHE_Vpt<100 || (nGenStatus2bHad==0 && LHE_Nb==0))*() +DY_HT800_EXCL = (LHE_Vpt<100 || (nGenStatus2bHad==0 && LHE_Nb==0))*() +DY_HT1200_EXCL = (LHE_Vpt<100 || (nGenStatus2bHad==0 && LHE_Nb==0))*() +DY_HT2500_EXCL = (LHE_Vpt<100 || (nGenStatus2bHad==0 && LHE_Nb==0))*() +DY_B100_EXCL = (LHE_Nb>0&&LHE_Vpt>=100) +DY_B200_EXCL = (LHE_Nb>0&&LHE_Vpt>=200) +DY_F100_EXCL = (LHE_Vpt>=100 && LHE_Nb==0 && nGenStatus2bHad > 0) +DY_F200_EXCL = (LHE_Vpt>=200 && LHE_Nb==0 && nGenStatus2bHad > 0) + +DYincl = !> +DY_HT100 = !> +DY_HT200 = !> +DY_HT400 = !> +DY_HT600 = !> +DY_HT800 = !> +DY_HT1200 = !> +DY_HT2500 = !> +DY_B100 = !> +DY_B200 = !> +DY_F100 = !> +DY_F200 = !> + + +ZJ100 = !> +ZJ200 = !> +ZJ400 = !> +ZJ600 = !> +ZJ800 = !> +ZJ1200 = !> +ZJ2500 = !> +ZJB100 = !> +ZJB200 = !> +ZJGBF100 = !> +ZJGBF200 = !> + +ZJ100_OFF = 1.0 +ZJ200_OFF = 1.0 +ZJ400_OFF = 1.0 +ZJ600_OFF = 1.0 +ZJ800_OFF = 1.0 +ZJ1200_OFF = 1.0 +ZJ2500_OFF = 1.0 +ZJB100_OFF = 0.0 +ZJB200_OFF = 0.0 +ZJGBF100_OFF = 0.0 +ZJGBF200_OFF = 0.0 + +ZJ100_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) +ZJ200_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) +ZJ400_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) +ZJ600_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) +ZJ800_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) +ZJ1200_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) +ZJ2500_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) +ZJB100_EXCL = (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200) +ZJB200_EXCL = (LHE_Nb>0&&LHE_Vpt>=200) +ZJGBF100_EXCL = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200) +ZJGBF200_EXCL = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200) + + +;----------------------------Background---------------------------- + +#DIBOSON + +[ZZ_TuneCUETP8M1_13TeV-pythia8] +sampleIndex = [3500,3501,3502] +sampleName = ZZ_pythia +sampleType = BKG +subsamples = True +subnames = ['ZZ_0b', 'ZZ_1b', 'ZZ_2b'] +subcuts = +sampleGroup = +xSec = [14.6]*3 +SF = [1,1,1] + +[ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8] +sampleIndex = [34600,34601,34602] +sampleName = ZZ_amc +sampleType = BKG +subsamples = True +subnames = ['ZZTo2L2Qnlo_0b', 'ZZTo2L2Qnlo_1b', 'ZZTo2L2Qnlo_2b'] +subcuts = +sampleGroup = +# NLO calculation +xSec = [3.688]*3 +# SMP16-001: 14.6 * 0.1396 (BR) = 2.03816 +#xSec = [2.038]*3 +SF = [1,1,1] + +#[ZZTo4L_13TeV_powheg_pythia8] +#sampleIndex = [34500,34501,34502] +#sampleName = ZZ4l +#sampleType = BKG +#subsamples = True +#subnames = ['ZZ4l_0b', 'ZZ4l_1b', 'ZZ4l_2b'] +#subcuts = +#sampleGroup = +#xSec = [1.256]*3 +#SF = [1,1,1] + + +[WZ_TuneCUETP8M1_13TeV-pythia8] +sampleIndex = [3000,3001,3002] +sampleName = WZ_pythia +sampleType = BKG +subsamples = False +subsamples = True +subcuts = +subnames = ['WZ_0b', 'WZ_1b', 'WZ_2b'] +sampleGroup = +xSec = [48.1]*3 +SF = [1,1,1] + + +[WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8] +sampleIndex = [3200,3201,3202] +sampleName = WZ_amc +sampleType = BKG +subsamples = True +subnames = ['WZTo1L1Nu2Qnlo_0b', 'WZTo1L1Nu2Qnlo_1b', 'WZTo1L1Nu2Qnlo_2b'] +subcuts = +sampleGroup = +#xS from SMP18-002 +xSec = [10.87]*3 +SF = [1,1,1] + + + +[WW_TuneCUETP8M1_13TeV-pythia8] +sampleIndex = [3300,3301,3302] +sampleName = WW_pythia +sampleType = BKG +subsamples = False +subsamples = True +subnames = ['WW_0b', 'WW_1b', 'WW_2b'] +subcuts = +sampleGroup = +xSec = [115.3]*3 +SF = [1,1,1] + + +[WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8] +sampleIndex = [3400,3401,3402] +sampleName = WW_amc +sampleType = BKG +subsamples = True +subnames = ['WWTo1L1Nu2Qnlo_0b', 'WWTo1L1Nu2Qnlo_1b', 'WWTo1L1Nu2Qnlo_2b'] +subcuts = +sampleGroup = +xSec = [50.85883]*3 +SF = [1,1,1] + +#-- W+Jets Samples --# + +[WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 4000 +sampleName = WJetsHT0 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 61526.7 * 1.21 +suffixes = +offsets = +SF = +specialweight = + +[WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 4100 +sampleName = WJetsHT100 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 1345 * 1.21 +suffixes = +offsets = +SF = +specialweight = +dcChunkSize = 20 + +[WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 4200 +sampleName = WJetsHT200 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 359.7 * 1.21 +suffixes = +offsets = +SF = +specialweight = +dcChunkSize = 20 + +[WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 4300 +sampleName = WJetsHT400 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 48.8 * 1.21 +suffixes = +offsets = +SF = +specialweight = +dcChunkSize = 20 + +[WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 4400 +sampleName = WJetsHT600 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 12.07 * 1.21 +suffixes = +offsets = +SF = +specialweight = +dcChunkSize = 20 + +[WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 4500 +sampleName = WJetsHT800 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 5.497 *1.21 +suffixes = +offsets = +SF = +specialweight = +dcChunkSize = 20 + +[WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 4600 +sampleName = WJetsHT1200 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 1.329 * 1.21 +suffixes = +offsets = +SF = +specialweight = +dcChunkSize = 20 + +[WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 4700 +sampleName = WJetsHT2500 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 0.03209 * 1.21 +suffixes = +offsets = +SF = +specialweight = +dcChunkSize = 20 + +# b-enriched W + jets + +#[WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +#sampleIndex = [5000,5001,5002] +#sampleName = WBJets100 +#sampleType = BKG +#subsamples = True +#subnames = ['WBJets100_0b', 'WBJets100_1b', 'WBJets100_2b'] +#subcuts = +#sampleGroup = +#xSec = [6.004 * 1.21] * 3 +#SF = +#specialweight_ON = () +#specialweight_OFF = () +#specialweight = !> + +#[WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +#sampleIndex = [5100,5101,5102] +#sampleName = WBJets200 +#sampleType = BKG +#subsamples = True +#subnames = ['WBJets200_0b', 'WBJets200_1b', 'WBJets200_2b'] +#subcuts = +#sampleGroup = +#xSec = [0.8524 * 1.21] * 3 +#SF = +#specialweight_ON = () +#specialweight_OFF = () +#specialweight = !> + +#[WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +#sampleIndex = [5300,5301,5302] +#sampleName = WBGenFilter100 +#sampleType = BKG +#subsamples = True +#subnames = ['WBGenFilter100_0b', 'WBGenFilter100_1b', 'WBGenFilter100_2b'] +#subcuts = +#sampleGroup = +#xSec = [26.1 * 1.21] * 3 +#SF = +#specialweight_ON = () +#specialweight_OFF = () +#specialweight = !> + +#[WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +#sampleIndex = [5400,5401,5402] +#sampleName = WBGenFilter200 +#sampleType = BKG +#subsamples = True +#subnames = ['WBGenFilter200_0b', 'WBGenFilter200_1b', 'WBGenFilter200_2b'] +#subcuts = +#sampleGroup = +#xSec = [3.545 * 1.21] * 3 +#SF = +#specialweight_ON = () +#specialweight_OFF = () +#specialweight = !> + + +#TT + +[TT_TuneCUETP8M2T4_13TeV-powheg-pythia8] +sampleIndex = 200 +sampleName = TT +sampleType = BKG +subsamples = False +sampleGroup = TT +xSec = [831.76] +SF = +specialweight = 1.0 +dcChunkSize = 15 + +#ST + +[ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1] +sampleIndex = 21 +sampleName = ST_tW_antitop +sampleType = BKG +subsamples = False +sampleGroup = ST +xSec = [35.85] +SF = 1.0 + +[ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1] +sampleIndex = 20 +sampleName = ST_tW_top +sampleType = BKG +subsamples = False +sampleGroup = ST +xSec = [35.85] +SF = 1.0 + +[ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8] +sampleIndex = 16 +sampleName = ST_s-channel_4f +sampleType = BKG +subsamples = False +sampleGroup = ST +xSec = [3.692] +SF = 1.0 + +[ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1] +sampleIndex = 18 +sampleName = ST_t-channel_top_4f +sampleType = BKG +subsamples = False +sampleGroup = ST +xSec = [136.02] +SF = 1.0 + +[ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1] +sampleIndex = 19 +sampleName = ST_t-channel_antitop_4f +sampleType = BKG +subsamples = False +sampleGroup = ST +xSec = [80.95] +SF = 1.0 + +#----- DY -----# + +#Jet binned M-4to50 + +# sample broken!!! +#[DYJetsToLL_M-4to50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +#sampleName = DYJetsToLL_M-4to50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +#sampleType = BKG +#subsamples = True +#subnames =['M4HT70to100_0b','M4HT70to100_1b','M4HT70to100_2b'] +#subcuts= +#sampleGroup = +#xSec = [145.5*1.23]*3 +#SF = + +#[DYJetsToLL_M-4to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +#sampleIndex = [12500,12501,12502] +#sampleName = DYJetsToLL_M-4to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +#sampleType = BKG +#subsamples = True +#subnames =['M4HT100to200_0b','M4HT100to200_1b','M4HT100to200_2b'] +#subcuts= +#sampleGroup = +#xSec = [204.0*1.23]*3 +#SF = + +#[DYJetsToLL_M-4to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +#sampleIndex = [12600,12601,12602] +#sampleName = DYJetsToLL_M-4to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +#sampleType = BKG +#subsamples = True +#subnames =['M4HT200to400_0b','M4HT200to400_1b','M4HT200to400_2b'] +#subcuts= +#sampleGroup = +#xSec = [54.39*1.23]*3 +#SF = + +#[DYJetsToLL_M-4to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +#sampleIndex = [12700,12701,12702] +#sampleName = DYJetsToLL_M-4to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +#sampleType = BKG +#subsamples = True +#subnames =['M4HT400to600_0b','M4HT400to600_1b','M4HT400to600_2b'] +#subcuts= +#sampleGroup = +#xSec = [5.697*1.23]*3 +#SF = + +#[DYJetsToLL_M-4to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +#sampleIndex = [12800,12801,12802] +#sampleName = DYJetsToLL_M-4to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +#sampleType = BKG +#subsamples = True +#subnames = ['M4HT600toInf_0b','M4HT600toInf_1b','M4HT600toInf_2b'] +#subcuts= +#sampleGroup = +#xSec = [1.850*1.23]*3 +#SF = + + +[DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 11100 +sampleName = HT100to200ZJets +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 147.40*1.23 +SF = +cut = +dcChunkSize = 3 +specialweight = ()*() + +[DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 11200 +sampleName = HT200to400ZJets +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 40.99*1.23 +SF = +cut = +specialweight = ()*() +dcChunkSize = 3 + +[DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 11300 +sampleName = HT400to600ZJets +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 5.678*1.23 +SF = +cut = +specialweight = ()*() +dcChunkSize = 3 + + +[DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 11400 +sampleName = HT600to800ZJets +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 1.367*1.23 +SF = +cut = +specialweight = ()*() +dcChunkSize = 3 + +[DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 11500 +sampleName = HT800to1200ZJets +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 0.6304*1.23 +SF = +cut = +specialweight = ()*() + +#[DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +#sampleIndex = [11600,11601,11602] +#sampleName = DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +#sampleType = BKG +#subsamples = True +#subnames =['HT1200to2500ZJets_0b','HT1200to2500ZJets_1b','HT1200to2500ZJets_2b'] +#subcuts= +#sampleGroup = +#;x-sec from https://twiki.cern.ch/twiki/bin/view/CMS/SummaryTable1G25ns#DY_Z +#xSec = [0.1514*1.23]*3 +#SF = +#specialweight = ()*() + +#[DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +#sampleIndex = [11700,11701,11702] +#sampleName = DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +#sampleType = BKG +#subsamples = True +#subnames =['HT2500toinfZJets_0b','HT2500toinfZJets_1b','HT2500toinfZJets_2b'] +#subcuts= +#sampleGroup = +#;x-sec from https://twiki.cern.ch/twiki/bin/view/CMS/SummaryTable1G25ns#DY_Z +#xSec = [0.003565*1.23]*3 +#SF = +#specialweight = ()*() + +[DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 11000 +sampleName = HT0to100ZJets +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 5765.4*1.23 +SF = +cut = +specialweight = ()*() + + +#B enriched samples + +[DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 12100 +sampleName = DYBJets_100to200 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 3.027 * 1.23 +SF = +cut = +specialweight_ON = ()*() +specialweight_OFF = ()*() +specialweight = !> + + +[DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 12200 +sampleName = DYBJets_200toInf +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 0.297 * 1.23 +SF = +cut = +specialweight_ON = ()*() +specialweight_OFF = ()*() +specialweight = !> + +[DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 14100 +sampleName = DYJetsBGenFilter_100to200 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 3.41 * 1.23 +SF = +cut = +specialweight_ON = ()*() +specialweight_OFF = ()*() +specialweight = !> + + +[DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 14200 +sampleName = DYJetsBGenFilter_200toInf +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 0.5082 * 1.23 +SF = +cut = +specialweight_ON = ()*() +specialweight_OFF = ()*() +specialweight = !> + +#[DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8] +#sampleIndex = [20100,20101,20102] +#sampleName = DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8 +#sampleType = BKG +#subsamples = True +#subnames = ['DYnloIncl_0b','DYnloIncl_1b','DYnloIncl_2b'] +#subcuts = +#sampleGroup = +#xSec = [6529.0]*3 +#SF = +#specialweight = + +#-- QCD Samples --# + +[QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 1 +sampleName = QCDHT100 +sampleType = BKG +subsamples = False +sampleGroup = QCD +xSec = [23690000] +SF = + +[QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 2 +sampleName = QCDHT200 +sampleType = BKG +subsamples = False +sampleGroup = QCD +xSec = [1556000] +SF = + +[QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 3 +sampleName = QCDHT300 +sampleType = BKG +subsamples = False +sampleGroup = QCD +xSec = [323600] +SF = + +[QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 4 +sampleName = QCDHT500 +sampleType = BKG +subsamples = False +sampleGroup = QCD +xSec = [29930] +SF = + +[QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 5 +sampleName = QCDHT700 +sampleType = BKG +subsamples = False +sampleGroup = QCD +xSec = [6351] +SF = + +[QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 6 +sampleName = QCDHT1000 +sampleType = BKG +subsamples = False +sampleGroup = QCD +xSec = [1094] +SF = + +[QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 7 +sampleName = QCDHT1500 +sampleType = BKG +subsamples = False +sampleGroup = QCD +xSec = [98.99] +SF = + +[QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 8 +sampleName = QCDHT2000 +sampleType = BKG +subsamples = False +sampleGroup = QCD +xSec = [20.23] +SF = + + + +#-- Z+Jets Samples --# + +[ZJetsToNuNu_HT-100To200_13TeV-madgraph] +sampleIndex = 15000 +sampleName = ZJetsHT100 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 280.59 * 1.23 +suffixes = +offsets = +SF = +specialweight = + +[ZJetsToNuNu_HT-200To400_13TeV-madgraph] +sampleIndex = 15100 +sampleName = ZJetsHT200 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 77.79 * 1.23 +suffixes = +offsets = +SF = +specialweight = + +[ZJetsToNuNu_HT-400To600_13TeV-madgraph] +sampleIndex = 15200 +sampleName = ZJetsHT400 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 10.755 * 1.23 +suffixes = +offsets = +SF = +specialweight = + +[ZJetsToNuNu_HT-600To800_13TeV-madgraph] +sampleIndex = 15300 +sampleName = ZJetsHT600 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 2.5644 * 1.23 +suffixes = +offsets = +SF = +specialweight = + +[ZJetsToNuNu_HT-800To1200_13TeV-madgraph] +sampleIndex = 15400 +sampleName = ZJetsHT800 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 1.1802 * 1.23 +suffixes = +offsets = +SF = +specialweight = + +[ZJetsToNuNu_HT-1200To2500_13TeV-madgraph] +sampleIndex = 15500 +sampleName = ZJetsHT1200 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 0.28629 * 1.23 +suffixes = +offsets = +SF = +specialweight = + +[ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph] +sampleIndex = 15600 +sampleName = ZJetsHT2500 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 0.006912 * 1.23 +suffixes = +offsets = +SF = +specialweight = + +# b-enriched + +#[ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +#sampleIndex = [16000,16001,16002] +#sampleName = ZBJets100 +#sampleType = BKG +#subsamples = True +#subnames = ['ZBJets100_0b','ZBJets100_1b','ZBJets100_2b'] +#subcuts = +#sampleGroup = +#xSec = [5.93 * 1.23] * 3 +#SF = +#specialweight_ON = () +#specialweight_OFF = () +#specialweight = !> + +[ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 16100 +sampleName = ZBJets200 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 0.6068 * 1.23 +suffixes = +offsets = +SF = +specialweight_ON = () +specialweight_OFF = () +specialweight = !> + +[ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 16200 +sampleName = ZBGenFilter100 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 2.16 * 1.23 +suffixes = +offsets = +SF = +specialweight_ON = () +specialweight_OFF = () +specialweight = !> + +[ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 16300 +sampleName = ZBGenFilter200 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 0.3155 * 1.23 +suffixes = +offsets = +SF = +specialweight_ON = () +specialweight_OFF = () +specialweight = !> + + + +# this is the list of samples which will be used to construct the lists of samples to plot/for shape making +[Samples] + +#----- VH -----# +ZHsignal = 'ZllH_lep_PTV_0_75_hbb','ZllH_lep_PTV_75_150_hbb','ZllH_lep_PTV_150_250_0J_hbb','ZllH_lep_PTV_150_250_GE1J_hbb','ZllH_lep_PTV_GT250_hbb','ZnnH_lep_PTV_0_75_hbb','ZnnH_lep_PTV_75_150_hbb','ZnnH_lep_PTV_150_250_0J_hbb','ZnnH_lep_PTV_150_250_GE1J_hbb','ZnnH_lep_PTV_GT250_hbb' +ggZHsignal = 'ggZllH_lep_PTV_0_75_hbb','ggZllH_lep_PTV_75_150_hbb','ggZllH_lep_PTV_150_250_0J_hbb','ggZllH_lep_PTV_150_250_GE1J_hbb','ggZllH_lep_PTV_GT250_hbb','ggZnnH_lep_PTV_0_75_hbb','ggZnnH_lep_PTV_75_150_hbb','ggZnnH_lep_PTV_150_250_0J_hbb','ggZnnH_lep_PTV_150_250_GE1J_hbb','ggZnnH_lep_PTV_GT250_hbb' +WHsignal = 'WminusH_lep_PTV_0_75_hbb','WminusH_lep_PTV_75_150_hbb','WminusH_lep_PTV_150_250_0J_hbb','WminusH_lep_PTV_150_250_GE1J_hbb','WminusH_lep_PTV_GT250_hbb','WplusH_lep_PTV_0_75_hbb','WplusH_lep_PTV_75_150_hbb','WplusH_lep_PTV_150_250_0J_hbb','WplusH_lep_PTV_150_250_GE1J_hbb','WplusH_lep_PTV_GT250_hbb' +signals = ,, + +#----- W+jets -----# +WJetsHT0_VJ4 = 'WJetsHT0_0b_udsg', 'WJetsHT0_0b_c', 'WJetsHT0_1b', 'WJetsHT0_2b' +WJetsHT100_VJ4 = 'WJetsHT100_0b_udsg', 'WJetsHT100_0b_c', 'WJetsHT100_1b', 'WJetsHT100_2b' +WJetsHT200_VJ4 = 'WJetsHT200_0b_udsg', 'WJetsHT200_0b_c', 'WJetsHT200_1b', 'WJetsHT200_2b' +WJetsHT400_VJ4 = 'WJetsHT400_0b_udsg', 'WJetsHT400_0b_c', 'WJetsHT400_1b', 'WJetsHT400_2b' +WJetsHT600_VJ4 = 'WJetsHT600_0b_udsg', 'WJetsHT600_0b_c', 'WJetsHT600_1b', 'WJetsHT600_2b' +WJetsHT800_VJ4 = 'WJetsHT800_0b_udsg', 'WJetsHT800_0b_c', 'WJetsHT800_1b', 'WJetsHT800_2b' +WJetsHT1200_VJ4 = 'WJetsHT1200_0b_udsg', 'WJetsHT1200_0b_c', 'WJetsHT1200_1b', 'WJetsHT1200_2b' +WJetsHT2500_VJ4 = 'WJetsHT2500_0b_udsg', 'WJetsHT2500_0b_c', 'WJetsHT2500_1b', 'WJetsHT2500_2b' +WJetsB_VJ4 = 'WBJets100_0b_udsg', 'WBJets100_0b_c', 'WBJets100_1b', 'WBJets100_2b','WBJets200_0b_udsg','WBJets200_0b_c', 'WBJets200_1b', 'WBJets200_2b','WBGenFilter100_0b_udsg','WBGenFilter100_0b_c', 'WBGenFilter100_1b', 'WBGenFilter100_2b','WBGenFilter200_0b_udsg','WBGenFilter200_0b_c', 'WBGenFilter200_1b', 'WBGenFilter200_2b' + +WJetsHT0_Default = 'WJetsHT0_0b', 'WJetsHT0_1b', 'WJetsHT0_2b' +WJetsHT100_Default = 'WJetsHT100_0b', 'WJetsHT100_1b', 'WJetsHT100_2b' +WJetsHT200_Default = 'WJetsHT200_0b', 'WJetsHT200_1b', 'WJetsHT200_2b' +WJetsHT400_Default = 'WJetsHT400_0b', 'WJetsHT400_1b', 'WJetsHT400_2b' +WJetsHT600_Default = 'WJetsHT600_0b', 'WJetsHT600_1b', 'WJetsHT600_2b' +WJetsHT800_Default = 'WJetsHT800_0b', 'WJetsHT800_1b', 'WJetsHT800_2b' +WJetsHT1200_Default = 'WJetsHT1200_0b', 'WJetsHT1200_1b', 'WJetsHT1200_2b' +WJetsHT2500_Default = 'WJetsHT2500_0b', 'WJetsHT2500_1b', 'WJetsHT2500_2b' +WJetsB_Default = 'WBJets100_0b', 'WBJets100_1b', 'WBJets100_2b','WBJets200_0b', 'WBJets200_1b', 'WBJets200_2b','WBGenFilter100_0b', 'WBGenFilter100_1b', 'WBGenFilter100_2b','WBGenFilter200_0b', 'WBGenFilter200_1b', 'WBGenFilter200_2b' + +WJetsHT0 = !> +WJetsHT100 = !> +WJetsHT200 = !> +WJetsHT400 = !> +WJetsHT600 = !> +WJetsHT800 = !> +WJetsHT1200 = !> +WJetsHT2500 = !> +WJetsB = !> + +WJets = ,,,,,, + +WJets_0b_udsg = 'WJetsHT0_0b_udsg', 'WJetsHT100_0b_udsg','WJetsHT200_0b_udsg','WJetsHT400_0b_udsg','WJetsHT600_0b_udsg','WJetsHT800_0b_udsg','WJetsHT1200_0b_udsg' +WJets_0b_c = 'WJetsHT0_0b_c','WJetsHT100_0b_c','WJetsHT200_0b_c','WJetsHT400_0b_c','WJetsHT600_0b_c','WJetsHT800_0b_c','WJetsHT1200_0b_c' +WJets_0b_2c = 'WJetsHT0_0b_2c','WJetsHT100_0b_2c','WJetsHT200_0b_2c','WJetsHT400_0b_2c','WJetsHT600_0b_2c','WJetsHT800_0b_2c','WJetsHT1200_0b_2c' +WJets_0b = , +WJets_1b = 'WJetsHT0_1b','WJetsHT100_1b','WJetsHT200_1b','WJetsHT400_1b','WJetsHT600_1b','WJetsHT800_1b','WJetsHT1200_1b' +WJets_1b_udsg = 'WJetsHT0_1b_udsg','WJetsHT100_1b_udsg','WJetsHT200_1b_udsg','WJetsHT400_1b_udsg','WJetsHT600_1b_udsg','WJetsHT800_1b_udsg','WJetsHT1200_1b_udsg' +WJets_1b_c = 'WJetsHT0_1b_c','WJetsHT100_1b_c','WJetsHT200_1b_c','WJetsHT400_1b_c','WJetsHT600_1b_c','WJetsHT800_1b_c','WJetsHT1200_1b_c' +WJets_2b = 'WJetsHT0_2b','WJetsHT100_2b','WJetsHT200_2b','WJetsHT400_2b','WJetsHT600_2b','WJetsHT800_2b','WJetsHT1200_2b' + +#----- Z+jets -----# +ZJetsHT100_VJ4 = 'ZJetsHT100_0b_udsg', 'ZJetsHT100_2b','ZJetsHT100_0b_c', 'ZJetsHT100_1b' +ZJetsHT200_VJ4 = 'ZJetsHT200_0b_udsg', 'ZJetsHT200_2b','ZJetsHT200_0b_c', 'ZJetsHT200_1b' +ZJetsHT400_VJ4 = 'ZJetsHT400_0b_udsg', 'ZJetsHT400_2b','ZJetsHT400_0b_c', 'ZJetsHT400_1b' +ZJetsHT600_VJ4 = 'ZJetsHT600_0b_udsg', 'ZJetsHT600_2b','ZJetsHT600_0b_c', 'ZJetsHT600_1b' +ZJetsHT800_VJ4 = 'ZJetsHT800_0b_udsg', 'ZJetsHT800_2b','ZJetsHT800_0b_c', 'ZJetsHT800_1b' +ZJetsHT1200_VJ4 = 'ZJetsHT1200_0b_udsg', 'ZJetsHT1200_2b','ZJetsHT1200_0b_c', 'ZJetsHT1200_1b' +ZJetsHT2500_VJ4 = 'ZJetsHT2500_0b_udsg', 'ZJetsHT2500_2b','ZJetsHT2500_0b_c', 'ZJetsHT2500_1b' +#ZJB_VJ4 = 'ZBJets100_0b_udsg','ZBJets100_1b','ZBJets100_2b','ZBJets200_0b_udsg','ZBJets200_1b','ZBJets200_2b','ZBGenFilter100_0b_udsg','ZBGenFilter100_1b','ZBGenFilter100_2b','ZBGenFilter200_0b_udsg','ZBGenFilter200_1b','ZBGenFilter200_2b','ZBJets100_0b_c','ZBJets200_0b_c','ZBGenFilter100_0b_c','ZBGenFilter200_0b_c' +ZJB_VJ4 = 'ZBJets200_0b_udsg','ZBJets200_1b','ZBJets200_2b','ZBGenFilter100_0b_udsg','ZBGenFilter100_1b','ZBGenFilter100_2b','ZBGenFilter200_0b_udsg','ZBGenFilter200_1b','ZBGenFilter200_2b','ZBJets200_0b_c','ZBGenFilter100_0b_c','ZBGenFilter200_0b_c' + +ZJetsHT100_Default = 'ZJetsHT100_0b', 'ZJetsHT100_2b', 'ZJetsHT100_1b' ZJetsHT200_Default = 'ZJetsHT200_0b', 'ZJetsHT200_2b', 'ZJetsHT200_1b' ZJetsHT400_Default = 'ZJetsHT400_0b', 'ZJetsHT400_2b', 'ZJetsHT400_1b' ZJetsHT600_Default = 'ZJetsHT600_0b', 'ZJetsHT600_2b', 'ZJetsHT600_1b' ZJetsHT800_Default = 'ZJetsHT800_0b', 'ZJetsHT800_2b', 'ZJetsHT800_1b' ZJetsHT1200_Default = 'ZJetsHT1200_0b', 'ZJetsHT1200_2b', 'ZJetsHT1200_1b' +ZJetsHT2500_Default = 'ZJetsHT2500_0b', 'ZJetsHT2500_2b', 'ZJetsHT2500_1b' +ZJB_Default = 'ZBJets100_0b','ZBJets100_1b','ZBJets100_2b','ZBJets200_0b','ZBJets200_1b','ZBJets200_2b','ZBGenFilter100_0b','ZBGenFilter100_1b','ZBGenFilter100_2b','ZBGenFilter200_0b','ZBGenFilter200_1b','ZBGenFilter200_2b' + +ZJetsHT100 = !> +ZJetsHT200 = !> +ZJetsHT400 = !> +ZJetsHT600 = !> +ZJetsHT800 = !> +ZJetsHT1200 = !> +ZJetsHT2500 = !> +ZJB = !> + +ZJets = , , , , , , , + + +ZJets_0b = 'ZJetsHT100_0b','ZJetsHT200_0b','ZJetsHT400_0b','ZJetsHT600_0b','ZJetsHT800_0b','ZJetsHT1200_0b','ZJetsHT2500_0b','ZBJets200_0b','ZBGenFilter100_0b','ZBGenFilter200_0b' +ZJets_0b_udsg = 'ZJetsHT100_0b_udsg','ZJetsHT200_0b_udsg','ZJetsHT400_0b_udsg','ZJetsHT600_0b_udsg','ZJetsHT800_0b_udsg','ZJetsHT1200_0b_udsg','ZJetsHT2500_0b_udsg','ZBJets200_0b_udsg','ZBGenFilter100_0b_udsg','ZBGenFilter200_0b_udsg' +ZJets_1b_udsg = 'ZJetsHT100_1b_udsg','ZJetsHT200_1b_udsg','ZJetsHT400_1b_udsg','ZJetsHT600_1b_udsg','ZJetsHT800_1b_udsg','ZJetsHT1200_1b_udsg','ZJetsHT2500_1b_udsg','ZBJets200_1b_udsg','ZBGenFilter100_1b_udsg','ZBGenFilter200_1b_udsg' +ZJets_1b = 'ZJetsHT100_1b','ZJetsHT200_1b','ZJetsHT400_1b','ZJetsHT600_1b','ZJetsHT800_1b','ZJetsHT1200_1b','ZJetsHT2500_1b','ZBJets200_1b','ZBGenFilter100_1b','ZBGenFilter200_1b' +ZJets_2b = 'ZJetsHT100_2b','ZJetsHT200_2b','ZJetsHT400_2b','ZJetsHT600_2b','ZJetsHT800_2b','ZJetsHT1200_2b','ZJetsHT2500_2b','ZBJets200_2b','ZBGenFilter100_2b','ZBGenFilter200_2b' +ZJets_0b_c = 'ZJetsHT100_0b_c','ZJetsHT200_0b_c','ZJetsHT400_0b_c','ZJetsHT600_0b_c','ZJetsHT800_0b_c','ZJetsHT1200_0b_c','ZJetsHT2500_0b_c','ZBJets200_0b_c','ZBGenFilter100_0b_c','ZBGenFilter200_0b_c' +ZJets_1b_c = 'ZJetsHT100_1b_c','ZJetsHT200_1b_c','ZJetsHT400_1b_c','ZJetsHT600_1b_c','ZJetsHT800_1b_c','ZJetsHT1200_1b_c','ZJetsHT2500_1b_c','ZBJets200_1b_c','ZBGenFilter100_1b_c','ZBGenFilter200_1b_c' +ZJets_0b_2c = 'ZJetsHT100_0b_2c','ZJetsHT200_0b_2c','ZJetsHT400_0b_2c','ZJetsHT600_0b_2c','ZJetsHT800_0b_2c','ZJetsHT1200_0b_2c','ZJetsHT2500_0b_2c','ZBJets200_0b_2c','ZBGenFilter100_0b_2c','ZBGenFilter200_0b_2c' + + + +#----- DY -----# +# DYm4 not available + +DYHT0_VJ4 = 'HT0to100ZJets_0b_udsg', 'HT0to100ZJets_0b_c', 'HT0to100ZJets_1b', 'HT0to100ZJets_2b' +DYHT100_VJ4 = 'HT100to200ZJets_0b_udsg', 'HT100to200ZJets_0b_c', 'HT100to200ZJets_1b', 'HT100to200ZJets_2b' +DYHT200_VJ4 = 'HT200to400ZJets_0b_udsg', 'HT200to400ZJets_0b_c', 'HT200to400ZJets_1b', 'HT200to400ZJets_2b' +DYHT400_VJ4 = 'HT400to600ZJets_0b_udsg', 'HT400to600ZJets_0b_c', 'HT400to600ZJets_1b', 'HT400to600ZJets_2b' +DYHT600_VJ4 = 'HT600to800ZJets_0b_udsg', 'HT600to800ZJets_0b_c', 'HT600to800ZJets_1b', 'HT600to800ZJets_2b' +DYHT800_VJ4 = 'HT800to1200ZJets_0b_udsg', 'HT800to1200ZJets_0b_c', 'HT800to1200ZJets_1b', 'HT800to1200ZJets_2b' +DYHT1200_VJ4 = 'HT1200to2500ZJets_0b_udsg', 'HT1200to2500ZJets_0b_c', 'HT1200to2500ZJets_1b', 'HT1200to2500ZJets_2b' +DYHT2500_VJ4 = 'HT2500toinfZJets_0b_udsg', 'HT2500toinfZJets_0b_c', 'HT2500toinfZJets_1b', 'HT2500toinfZJets_2b' + +DYHT0_Default = 'HT0to100ZJets_0b', 'HT0to100ZJets_1b', 'HT0to100ZJets_2b' +DYHT100_Default = 'HT100to200ZJets_0b', 'HT100to200ZJets_1b', 'HT100to200ZJets_2b' +DYHT200_Default = 'HT200to400ZJets_0b', 'HT200to400ZJets_1b', 'HT200to400ZJets_2b' +DYHT400_Default = 'HT400to600ZJets_0b', 'HT400to600ZJets_1b', 'HT400to600ZJets_2b' +DYHT600_Default = 'HT600to800ZJets_0b', 'HT600to800ZJets_1b', 'HT600to800ZJets_2b' +DYHT800_Default = 'HT800to1200ZJets_0b', 'HT800to1200ZJets_1b', 'HT800to1200ZJets_2b' +#DYHT1200_Default = 'HT1200to2500ZJets_0b', 'HT1200to2500ZJets_1b', 'HT1200to2500ZJets_2b' +#DYHT2500_Default = 'HT2500toinfZJets_0b', 'HT2500toinfZJets_1b', 'HT2500toinfZJets_2b' + +DYm50 = !>,!>,!>,!>,!>,!> + +DYBJets_VJ4 = 'DYBJets_100to200_0b_udsg','DYBJets_100to200_0b_c','DYBJets_100to200_1b','DYBJets_100to200_2b','DYBJets_200toInf_0b_udsg','DYBJets_200toInf_0b_c','DYBJets_200toInf_1b','DYBJets_200toInf_2b' +DYJetsBGenFilter_VJ4 = 'DYJetsBGenFilter_100to200_0b_udsg','DYJetsBGenFilter_100to200_0b_c','DYJetsBGenFilter_100to200_1b','DYJetsBGenFilter_100to200_2b','DYJetsBGenFilter_200toInf_0b_udsg','DYJetsBGenFilter_200toInf_0b_c','DYJetsBGenFilter_200toInf_1b','DYJetsBGenFilter_200toInf_2b' +DYBJets_Default = 'DYBJets_100to200_0b','DYBJets_100to200_1b','DYBJets_100to200_2b','DYBJets_200toInf_0b','DYBJets_200toInf_1b','DYBJets_200toInf_2b' +DYJetsBGenFilter_Default = 'DYJetsBGenFilter_100to200_0b','DYJetsBGenFilter_100to200_1b','DYJetsBGenFilter_100to200_2b','DYJetsBGenFilter_200toInf_0b','DYJetsBGenFilter_200toInf_1b','DYJetsBGenFilter_200toInf_2b' + +DYBJets = !> +DYJetsBGenFilter = !> + +#DYlo = ,,, +DYlo = ,, +DY = + +DynloIncl = 'DYnloIncl_0b','DYnloIncl_1b','DYnloIncl_2b' +DYnlom50 = +DYnlo = + +DY_0b_udsg = 'HT0to100ZJets_0b_udsg','HT100to200ZJets_0b_udsg','HT200to400ZJets_0b_udsg','HT400to600ZJets_0b_udsg','HT600to800ZJets_0b_udsg','HT800to1200ZJets_0b_udsg','DYBJets_100to200_0b_udsg','DYBJets_200toInf_0b_udsg','DYJetsBGenFilter_100to200_0b_udsg','DYJetsBGenFilter_200toInf_0b_udsg' +DY_0b_c = 'HT0to100ZJets_0b_c','HT100to200ZJets_0b_c','HT200to400ZJets_0b_c','HT400to600ZJets_0b_c','HT600to800ZJets_0b_c','HT800to1200ZJets_0b_c','DYBJets_100to200_0b_c','DYBJets_200toInf_0b_c','DYJetsBGenFilter_100to200_0b_c','DYJetsBGenFilter_200toInf_0b_c' + +DY_1b = 'HT0to100ZJets_1b','HT100to200ZJets_1b','HT200to400ZJets_1b','HT400to600ZJets_1b','HT600to800ZJets_1b','HT800to1200ZJets_1b','DYBJets_100to200_1b','DYBJets_200toInf_1b','DYJetsBGenFilter_100to200_1b','DYJetsBGenFilter_200toInf_1b' +DY_2b = 'HT0to100ZJets_2b','HT100to200ZJets_2b','HT200to400ZJets_2b','HT400to600ZJets_2b','HT600to800ZJets_2b','HT800to1200ZJets_2b','DYBJets_100to200_2b','DYBJets_200toInf_2b','DYJetsBGenFilter_100to200_2b','DYJetsBGenFilter_200toInf_2b' + +DYm50_0b = 'HT0to100ZJets_0b','HT100to200ZJets_0b','HT200to400ZJets_0b','HT400to600ZJets_0b','HT600to800ZJets_0b','HT800to1200ZJets_0b','HT1200to2500ZJets_0b','HT2500toinfZJets_0b','DYBJets_100to200_0b','DYBJets_200toInf_0b','DYJetsBGenFilter_100to200_0b','DYJetsBGenFilter_200toInf_0b' +DYm50_1b = 'HT0to100ZJets_1b','HT100to200ZJets_1b','HT200to400ZJets_1b','HT400to600ZJets_1b','HT600to800ZJets_1b','HT800to1200ZJets_1b','HT1200to2500ZJets_1b','HT2500toinfZJets_1b','DYBJets_100to200_1b','DYBJets_200toInf_1b','DYJetsBGenFilter_100to200_1b','DYJetsBGenFilter_200toInf_1b' +DYm50_2b = 'HT0to100ZJets_2b','HT100to200ZJets_2b','HT200to400ZJets_2b','HT400to600ZJets_2b','HT600to800ZJets_2b','HT800to1200ZJets_2b','HT1200to2500ZJets_2b','HT2500toinfZJets_2b','DYBJets_100to200_2b','DYBJets_200toInf_2b','DYJetsBGenFilter_100to200_2b','DYJetsBGenFilter_200toInf_2b' + +DYnlo_0b = 'DYnloIncl_0b' +DYnlo_1b = 'DYnloIncl_1b' +DYnlo_2b = 'DYnloIncl_2b' + +#----- top Samples -----# +TT = 'TT' +ST = 'ST_tW_antitop','ST_tW_top','ST_s-channel_4f','ST_t-channel_top_4f','ST_t-channel_antitop_4f' + +#----- QCD Samples -----# +QCD = 'QCDHT200', 'QCDHT300', 'QCDHT500', 'QCDHT700', 'QCDHT1000', 'QCDHT1500', 'QCDHT2000' + +#----- Diboson Samples -----# +WWLF = 'WWTo1L1Nu2Qnlo_0b' +WZLF = 'WZTo1L1Nu2Qnlo_0b' +ZZLF = 'ZZTo2L2Qnlo_0b' + +WWHF = 'WWTo1L1Nu2Qnlo_1b','WWTo1L1Nu2Qnlo_2b' +WZHF = 'WZTo1L1Nu2Qnlo_1b','WZTo1L1Nu2Qnlo_2b' +ZZHF = 'ZZTo2L2Qnlo_1b','ZZTo2L2Qnlo_2b' + +VVLF = ,, +VVHF = ,, + +VV = , + +#----- all -----# +backgrounds = ,,,,, + +[VHbbCommon] + +GroupZJetsHT = { + 'ZJetsHT100_0b':'ZJets100', 'ZJetsHT100_1b':'ZJets100', 'ZJetsHT100_2b':'ZJets100', 'ZJetsHT200_0b':'ZJets200', 'ZJetsHT200_1b':'ZJets200', 'ZJetsHT200_2b':'ZJets200', + 'ZJetsHT400_0b':'ZJets400', + 'ZJetsHT400_1b':'ZJets400', + 'ZJetsHT400_2b':'ZJets400', + 'ZJetsHT600_0b':'ZJets600', + 'ZJetsHT600_1b':'ZJets600', + 'ZJetsHT600_2b':'ZJets600', + 'ZJetsHT800_0b':'ZJets800', + 'ZJetsHT800_1b':'ZJets800', + 'ZJetsHT800_2b':'ZJets800', + 'ZJetsHT1200_0b':'ZJets1200', + 'ZJetsHT1200_1b':'ZJets1200', + 'ZJetsHT1200_2b':'ZJets1200', + 'ZJetsHT2500_0b':'ZJets2500', + 'ZJetsHT2500_1b':'ZJets2500', + 'ZJetsHT2500_2b':'ZJets2500', + } + +GroupWJetsHT = { + 'WJetsHT100_0b':'WJets100', + 'WJetsHT100_1b':'WJets100', + 'WJetsHT100_2b':'WJets100', + 'WJetsHT200_0b':'WJets200', + 'WJetsHT200_1b':'WJets200', + 'WJetsHT200_2b':'WJets200', + 'WJetsHT400_0b':'WJets400', + 'WJetsHT400_1b':'WJets400', + 'WJetsHT400_2b':'WJets400', + 'WJetsHT600_0b':'WJets600', + 'WJetsHT600_1b':'WJets600', + 'WJetsHT600_2b':'WJets600', + 'WJetsHT800_0b':'WJets800', + 'WJetsHT800_1b':'WJets800', + 'WJetsHT800_2b':'WJets800', + 'WJetsHT1200_0b':'WJets1200', + 'WJetsHT1200_1b':'WJets1200', + 'WJetsHT1200_2b':'W2ets1200', 'WJetsHT2500_0b':'WJets2500', 'WJetsHT2500_1b':'WJets2500', 'WJetsHT2500_2b':'W2ets2500', } diff --git a/python/VHbb2016commonconfig/samples_mc_V13.ini b/python/VHbb2016commonconfig/samples_mc_V13.ini new file mode 100644 index 000000000..b0a43ab15 --- /dev/null +++ b/python/VHbb2016commonconfig/samples_mc_V13.ini @@ -0,0 +1,1357 @@ +# common samples config for 2016 analysis + +[General] +allDYweight = 1.0 +VVpythia_sampleGroup = ['VVLF', 'VVLF', 'VVHF'] + +# default +ZJetsGroup_Default = ['ZJets_0b', 'ZJets_1b', 'ZJets_2b'] +ZJetsSuffix_Default = ['0b', '1b', '2b'] +ZJetsOffsets_Default = [0, 1, 2] +WJetsGroup_Default = ['WJets_0b', 'WJets_1b', 'WJets_2b'] +WJetsSuffix_Default = ['0b', '1b', '2b'] +WJetsOffsets_Default = [0, 1, 2] + +# separate V+c components +ZJetsGroup_VJ4 = ['ZJets_0b_udsg', 'ZJets_0b_c', 'ZJets_1b', 'ZJets_2b'] +ZJetsSuffix_VJ4 = ['0b_udsg', '0b_c', '1b', '2b'] +ZJetsOffsets_VJ4 = [0, 4, 1, 2] +WJetsGroup_VJ4 = ['WJets_0b_udsg', 'WJets_0b_c', 'WJets_1b', 'WJets_2b'] +WJetsSuffix_VJ4 = ['0b_udsg', '0b_c', '1b', '2b'] +WJetsOffsets_VJ4 = [0, 4, 1, 2] + +# select based on General.VjetFlavor setting +ZJetsGroup = !> +ZJetsSuffix = !> +ZJetsOffsets = !> +WJetsGroup = !> +WJetsSuffix = !> +WJetsOffsets = !> + +JetFlavor25 = [ + 'Sum$(GenJet_pt>25 && abs(GenJet_eta)<2.4 && GenJet_hadronFlavour==5)<1', # udscg jets + 'Sum$(GenJet_pt>25 && abs(GenJet_eta)<2.4 && GenJet_hadronFlavour==5)==1', # single b-jet + 'Sum$(GenJet_pt>25 && abs(GenJet_eta)<2.4 && GenJet_hadronFlavour==5)>=2', # double b-jets + ] + +JetFlavor20 = [ + 'Sum$(GenJet_pt>20 && abs(GenJet_eta)<2.4 && GenJet_hadronFlavour==5)<1', # udscg jets + 'Sum$(GenJet_pt>20 && abs(GenJet_eta)<2.4 && GenJet_hadronFlavour==5)==1', # single b-jet + 'Sum$(GenJet_pt>20 && abs(GenJet_eta)<2.4 && GenJet_hadronFlavour==5)>=2', # double b-jets + ] + +JetFlavorBhadrons25withC = [ + '(nGenBpt25eta2p6<1&&nGenDpt25eta2p6<1)', + '(nGenBpt25eta2p6<1&&nGenDpt25eta2p6>0)', + '(nGenBpt25eta2p6==1)', + '(nGenBpt25eta2p6>1)', + ] + +JetFlavor_Default = +JetFlavor_VJ4 = + +JetFlavor = !> + +DibosonFlavorXbb = [ + '(Sum$(GenPart_genPartIdxMother>=0&&abs(GenPart_pdgId)==5&&(GenPart_pdgId[GenPart_genPartIdxMother]==23||abs(GenPart_pdgId[GenPart_genPartIdxMother])==24)&&GenPart_status[GenPart_genPartIdxMother]==62))<1', + '(Sum$(GenPart_genPartIdxMother>=0&&abs(GenPart_pdgId)==5&&(GenPart_pdgId[GenPart_genPartIdxMother]==23||abs(GenPart_pdgId[GenPart_genPartIdxMother])==24)&&GenPart_status[GenPart_genPartIdxMother]==62))==1', + '(Sum$(GenPart_genPartIdxMother>=0&&abs(GenPart_pdgId)==5&&(GenPart_pdgId[GenPart_genPartIdxMother]==23||abs(GenPart_pdgId[GenPart_genPartIdxMother])==24)&&GenPart_status[GenPart_genPartIdxMother]==62))>=2', + ] + +DibosonFlavorAT = +DibosonFlavor = + +# test AT definition: --set='General.DibosonFlavor=' + +preselectionCut = 1 + +[Stitching] + +# OFF: only use inclusive + HT binned samples +# EXCL: use b-enriched exclusively in their phase-space (throw away overlap) + +MethodWJ = OFF +#MethodWJ = EXCL + +MethodZJ = OFF +#MethodZJ = EXCL + +MethodDY = OFF +#MethodDY = EXCL + +# differential reweighting of b-enriched/filtered samples to inclusive+ht binned +#ReweightLHEVpt = ON +# normlization reweighting of b-enriched/filtered samples to inclusive+ht binned +ReweightLHEVpt = OFF + +WJincl_OFF = (LHE_HT<100) +WJ100_OFF = (LHE_HT>=100&&LHE_HT<200) +WJ200_OFF = (LHE_HT>=200&&LHE_HT<400) +WJ400_OFF = (LHE_HT>=400&&LHE_HT<600) +WJ600_OFF = (LHE_HT>=600&&LHE_HT<800) +WJ800_OFF = (LHE_HT>=800&&LHE_HT<1200) +WJ1200_OFF = (LHE_HT>=1200&&LHE_HT<2500) +WJ2500_OFF = (LHE_HT>=2500) +WJB100_OFF = 0.0 +WJB200_OFF = 0.0 +WJGBF100_OFF = 0.0 +WJGBF200_OFF = 0.0 + +WJincl_EXCL = (((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100)&&LHE_HT<100) +WJ100_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) +WJ200_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) +WJ400_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) +WJ600_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) +WJ800_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) +WJ1200_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) +WJ2500_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) +WJB100_EXCL = (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200) +WJB200_EXCL = (LHE_Nb>0&&LHE_Vpt>=200) +WJGBF100_EXCL = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200) +WJGBF200_EXCL = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200) + +WJincl = !> +WJ100 = !> +WJ200 = !> +WJ400 = !> +WJ600 = !> +WJ800 = !> +WJ1200 = !> +WJ2500 = !> +WJB100 = !> +WJB200 = !> +WJGBF100 = !> +WJGBF200 = !> + +# don't use b-enriched samples +DYincl_OFF = (LHE_HT<100) +DY_HT70_OFF = (LHE_HT>=70&&LHE_HT<100) +DY_HT100_OFF = (LHE_HT>=100&&LHE_HT<200) +DY_HT200_OFF = (LHE_HT>=200&&LHE_HT<400) +DY_HT400_OFF = (LHE_HT>=400&&LHE_HT<600) +DY_HT600_OFF = (LHE_HT>=600&&LHE_HT<800) +DY_HT800_OFF = (LHE_HT>=800&&LHE_HT<1200) +DY_HT1200_OFF = (LHE_HT>=1200&&LHE_HT<2500) +DY_HT2500_OFF = (LHE_HT>=2500) +DY_B100_OFF = 0.0 +DY_B200_OFF = 0.0 +DY_F100_OFF = 0.0 +DY_F200_OFF = 0.0 + +# don't use HT bins and b-enriched samples +DYincl_NOHT = 1.0 +DY_HT70_NOHT = 0.0 +DY_HT100_NOHT = 0.0 +DY_HT200_NOHT = 0.0 +DY_HT400_NOHT = 0.0 +DY_HT600_NOHT = 0.0 +DY_HT800_NOHT = 0.0 +DY_HT1200_NOHT = 0.0 +DY_HT2500_NOHT = 0.0 +DY_B100_NOHT = 0.0 +DY_B200_NOHT = 0.0 +DY_F100_NOHT = 0.0 +DY_F200_NOHT = 0.0 + +# use b-enriched and GenFilter, exclusively +DYincl_EXCL = (LHE_Vpt<100 || (nGenStatus2bHad==0 && LHE_Nb==0))*() +DY_HT70_EXCL = (LHE_Vpt<100 || (nGenStatus2bHad==0 && LHE_Nb==0))*() +DY_HT100_EXCL = (LHE_Vpt<100 || (nGenStatus2bHad==0 && LHE_Nb==0))*() +DY_HT200_EXCL = (LHE_Vpt<100 || (nGenStatus2bHad==0 && LHE_Nb==0))*() +DY_HT400_EXCL = (LHE_Vpt<100 || (nGenStatus2bHad==0 && LHE_Nb==0))*() +DY_HT600_EXCL = (LHE_Vpt<100 || (nGenStatus2bHad==0 && LHE_Nb==0))*() +DY_HT800_EXCL = (LHE_Vpt<100 || (nGenStatus2bHad==0 && LHE_Nb==0))*() +DY_HT1200_EXCL = (LHE_Vpt<100 || (nGenStatus2bHad==0 && LHE_Nb==0))*() +DY_HT2500_EXCL = (LHE_Vpt<100 || (nGenStatus2bHad==0 && LHE_Nb==0))*() +DY_B100_EXCL = (LHE_Nb>0&&LHE_Vpt>=100) +DY_B200_EXCL = (LHE_Nb>0&&LHE_Vpt>=200) +DY_F100_EXCL = (LHE_Vpt>=100 && LHE_Nb==0 && nGenStatus2bHad > 0) +DY_F200_EXCL = (LHE_Vpt>=200 && LHE_Nb==0 && nGenStatus2bHad > 0) + +DYincl = !> +DY_HT70 = !> +DY_HT100 = !> +DY_HT200 = !> +DY_HT400 = !> +DY_HT600 = !> +DY_HT800 = !> +DY_HT1200 = !> +DY_HT2500 = !> +DY_B100 = !> +DY_B200 = !> +DY_F100 = !> +DY_F200 = !> + + +ZJ100 = !> +ZJ200 = !> +ZJ400 = !> +ZJ600 = !> +ZJ800 = !> +ZJ1200 = !> +ZJ2500 = !> +ZJB100 = !> +ZJB200 = !> +ZJGBF100 = !> +ZJGBF200 = !> + +ZJ100_OFF = 1.0 +ZJ200_OFF = 1.0 +ZJ400_OFF = 1.0 +ZJ600_OFF = 1.0 +ZJ800_OFF = 1.0 +ZJ1200_OFF = 1.0 +ZJ2500_OFF = 1.0 +ZJB100_OFF = 0.0 +ZJB200_OFF = 0.0 +ZJGBF100_OFF = 0.0 +ZJGBF200_OFF = 0.0 + +ZJ100_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) +ZJ200_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) +ZJ400_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) +ZJ600_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) +ZJ800_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) +ZJ1200_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) +ZJ2500_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) +ZJB100_EXCL = (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200) +ZJB200_EXCL = (LHE_Nb>0&&LHE_Vpt>=200) +ZJGBF100_EXCL = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200) +ZJGBF200_EXCL = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200) + + +;----------------------------Background---------------------------- + +#DIBOSON + +#[ZZ_TuneCUETP8M1_13TeV-pythia8] +#sampleIndex = [3500,3501,3502] +#sampleName = ZZ_pythia +#sampleType = BKG +#subsamples = True +#subnames = ['ZZ_0b', 'ZZ_1b', 'ZZ_2b'] +#subcuts = +#sampleGroup = +#xSec = [14.6]*3 +#SF = [1,1,1] + +[ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8] +sampleIndex = [34600,34601,34602] +sampleName = ZZ_amc +sampleType = BKG +subsamples = True +subnames = ['ZZTo2L2Qnlo_0b', 'ZZTo2L2Qnlo_1b', 'ZZTo2L2Qnlo_2b'] +subcuts = +sampleGroup = +# NLO calculation +xSec = [3.688]*3 +# SMP16-001: 14.6 * 0.1396 (BR) = 2.03816 +#xSec = [2.038]*3 +SF = [1,1,1] + +[ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8] +sampleIndex = [3700,3701,3702] +sampleName = ZZTo2Q2Nu +sampleType = BKG +subsamples = True +subnames = ['ZZTo2Q2Nu_0b', 'ZZTo2Q2Nu_1b', 'ZZTo2Q2Nu_2b'] +subcuts = +sampleGroup = +xSec = 4.040 +SF = [1,1,1] +cut = + +#[ZZTo4L_13TeV_powheg_pythia8] +#sampleIndex = [34500,34501,34502] +#sampleName = ZZ4l +#sampleType = BKG +#subsamples = True +#subnames = ['ZZ4l_0b', 'ZZ4l_1b', 'ZZ4l_2b'] +#subcuts = +#sampleGroup = +#xSec = [1.256]*3 +#SF = [1,1,1] + +#[WZ_TuneCUETP8M1_13TeV-pythia8] +#sampleIndex = [3000,3001,3002] +#sampleName = WZ_pythia +#sampleType = BKG +#subsamples = False +#subsamples = True +#subcuts = +#subnames = ['WZ_0b', 'WZ_1b', 'WZ_2b'] +#sampleGroup = +#xSec = [48.1]*3 +#SF = [1,1,1] + + +[WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8] +sampleIndex = [3200,3201,3202] +sampleName = WZ_amc +sampleType = BKG +subsamples = True +subnames = ['WZTo1L1Nu2Qnlo_0b', 'WZTo1L1Nu2Qnlo_1b', 'WZTo1L1Nu2Qnlo_2b'] +subcuts = +sampleGroup = +#xS from SMP18-002 +xSec = [10.87]*3 +SF = [1,1,1] + +[WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8] +sampleIndex = [3600,3601,3602] +sampleName = WZTo2L2Q +sampleType = BKG +subsamples = True +subnames = ['WZTo2L2Qnlo_0b', 'WZTo2L2Qnlo_1b', 'WZTo2L2Qnlo_2b'] +subcuts = +sampleGroup = +xSec = 5.596 +SF = [1,1,1] +cut = + +#[WW_TuneCUETP8M1_13TeV-pythia8] +#sampleIndex = [3300,3301,3302] +#sampleName = WW_pythia +#sampleType = BKG +#subsamples = False +#subsamples = True +#subnames = ['WW_0b', 'WW_1b', 'WW_2b'] +#subcuts = +#sampleGroup = +#xSec = [115.3]*3 +#SF = [1,1,1] + + +[WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8] +sampleIndex = [3400,3401,3402] +sampleName = WW_amc +sampleType = BKG +subsamples = True +subnames = ['WWTo1L1Nu2Qnlo_0b', 'WWTo1L1Nu2Qnlo_1b', 'WWTo1L1Nu2Qnlo_2b'] +subcuts = +sampleGroup = +xSec = [50.85883]*3 +SF = [1,1,1] + +[WWTo2L2Nu_13TeV-powheg] +sampleIndex = [3500,3501,3502] +sampleName = WWTo2L2Nu +sampleType = BKG +subsamples = True +subnames = ['WWTo2L2Nunlo_0b', 'WWTo2L2Nunlo_1b', 'WWTo2L2Nunlo_2b'] +subcuts = +sampleGroup = +xSec = 10.48 +SF = [1,1,1] +cut = + + +#-- W+Jets Samples --# + +[WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 4000 +sampleName = WJetsHT0 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 61526.7 * 1.21 +suffixes = +offsets = +SF = +specialweight = + +[WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 4100 +sampleName = WJetsHT100 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 1345 * 1.21 +suffixes = +offsets = +SF = +specialweight = +dcChunkSize = 20 + +[WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 4200 +sampleName = WJetsHT200 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 359.7 * 1.21 +suffixes = +offsets = +SF = +specialweight = +dcChunkSize = 20 + +[WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 4300 +sampleName = WJetsHT400 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 48.8 * 1.21 +suffixes = +offsets = +SF = +specialweight = +dcChunkSize = 20 + +[WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 4400 +sampleName = WJetsHT600 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 12.07 * 1.21 +suffixes = +offsets = +SF = +specialweight = +dcChunkSize = 20 + +[WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 4500 +sampleName = WJetsHT800 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 5.497 *1.21 +suffixes = +offsets = +SF = +specialweight = +dcChunkSize = 20 + +[WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 4600 +sampleName = WJetsHT1200 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 1.329 * 1.21 +suffixes = +offsets = +SF = +specialweight = +dcChunkSize = 20 + +[WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 4700 +sampleName = WJetsHT2500 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 0.03209 * 1.21 +suffixes = +offsets = +SF = +specialweight = +dcChunkSize = 20 + +# b-enriched W + jets + +[WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 5000 +sampleName = WBJets100 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 5.967 * 1.21 +SF = +cut = +#specialweight_ON = ()*(9.820e-01 + 4.927e-04*min(LHE_Vpt,800) - 3.805e-07*min(LHE_Vpt,800)**2) +#specialweight_OFF = ()*0.977 +#specialweight = !> + +[WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 5100 +sampleName = WBJets200 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 0.8757 * 1.21 +SF = +cut = +specialweight_ON = ()*(9.820e-01 + 4.927e-04*min(LHE_Vpt,800) - 3.805e-07*min(LHE_Vpt,800)**2) +specialweight_OFF = ()*0.977 +specialweight = !> + +[WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 5300 +sampleName = WBGenFilter100 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 26.89 * 1.21 +SF = +cut = +specialweight_ON = ()*(1.039e+00 + 1.316e-03*min(LHE_Vpt,800) - 1.331e-06*min(LHE_Vpt,800)**2) +specialweight_OFF = ()*1.248 +specialweight = !> + +[WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 5400 +sampleName = WBGenFilter200 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 3.786 * 1.21 +SF = +cut = +specialweight_ON = ()*(1.039e+00 + 1.316e-03*min(LHE_Vpt,800) - 1.331e-06*min(LHE_Vpt,800)**2) +specialweight_OFF = ()*1.248 +specialweight = !> + + +#TT +#[TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8] +#sampleIndex = 200 +#sampleName = TT +#sampleType = BKG +#subsamples = False +#sampleGroup = TT +#xSec = [831.76] +#SF = +#specialweight = 1.0 +#dcChunkSize = 15 + + +[TT_TuneCUETP8M2T4_13TeV-powheg-pythia8] +sampleIndex = 200 +sampleName = TT +sampleType = BKG +subsamples = False +sampleGroup = TT +xSec = [831.76] +SF = +specialweight = 1.0 +dcChunkSize = 15 + +#ST + +[ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1] +sampleIndex = 21 +sampleName = ST_tW_antitop +sampleType = BKG +subsamples = False +sampleGroup = ST +xSec = [35.85] +SF = 1.0 + +[ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1] +sampleIndex = 20 +sampleName = ST_tW_top +sampleType = BKG +subsamples = False +sampleGroup = ST +xSec = [35.85] +SF = 1.0 + +[ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8] +sampleIndex = 16 +sampleName = ST_s-channel_4f +sampleType = BKG +subsamples = False +sampleGroup = ST +xSec = [3.692] +SF = 1.0 + +[ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1] +sampleIndex = 18 +sampleName = ST_t-channel_top_4f +sampleType = BKG +subsamples = False +sampleGroup = ST +xSec = [136.02] +SF = 1.0 + +[ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1] +sampleIndex = 19 +sampleName = ST_t-channel_antitop_4f +sampleType = BKG +subsamples = False +sampleGroup = ST +xSec = [80.95] +SF = 1.0 + +#----- DY -----# + +#Jet binned M-4to50 + +# sample broken!!! +#[DYJetsToLL_M-4to50_HT-70to100_TuneCP5_13TeV-madgraphMLM-pythia8] +#sampleName = DYJetsToLL_M-4to50_HT-70to100_TuneCP5_13TeV-madgraphMLM-pythia8 +#sampleType = BKG +#subsamples = True +#subnames =['M4HT70to100_0b','M4HT70to100_1b','M4HT70to100_2b'] +#subcuts= +#sampleGroup = +#xSec = [145.5*1.23]*3 +#SF = +#cut = + +[DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 12500 +sampleName = M4HT100to200 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 224.2*0.93 +SF = +cut = + +[DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 12600 +sampleName = M4HT200to400 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 37.88*0.93 +SF = +cut = + +[DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 12700 +sampleName = M4HT400to600 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 3.644*0.93 +SF = +cut = + +[DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 12800 +sampleName = M4HT600toInf +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 1.009*0.93 +SF = +cut = + +[DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 11800 +sampleName = HT70to100ZJets +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 170.2*1.23 +SF = +cut = +dcChunkSize = 3 +specialweight = ()*() + +[DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 11100 +sampleName = HT100to200ZJets +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 147.40*1.23 +SF = +cut = +dcChunkSize = 3 +specialweight = ()*() + +[DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 11200 +sampleName = HT200to400ZJets +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 40.99*1.23 +SF = +cut = +specialweight = ()*() +dcChunkSize = 3 + +[DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 11300 +sampleName = HT400to600ZJets +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 5.678*1.23 +SF = +cut = +specialweight = ()*() +dcChunkSize = 3 + + +[DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 11400 +sampleName = HT600to800ZJets +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 1.367*1.23 +SF = +cut = +specialweight = ()*() +dcChunkSize = 3 + +[DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 11500 +sampleName = HT800to1200ZJets +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 0.6304*1.23 +SF = +cut = +specialweight = ()*() + +[DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 11600 +sampleName = HT1200to2500ZJets +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +;x-sec from https://twiki.cern.ch/twiki/bin/view/CMS/SummaryTable1G25ns#DY_Z +xSec = 0.1512*1.23 +SF = +cut = +specialweight = ()*() + +[DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 11700 +sampleName = HT2500toinfZJets +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +;x-sec from https://twiki.cern.ch/twiki/bin/view/CMS/SummaryTable1G25ns#DY_Z +xSec = 0.003659*1.23 +SF = +cut = +specialweight = ()*() + +[DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 11000 +sampleName = HT0to100ZJets +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 5765.4*1.23 +SF = +cut = +specialweight = ()*() + + +#B enriched samples + +[DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 12100 +sampleName = DYBJets_100to200 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 3.027 * 1.23 +SF = +cut = +specialweight_ON = ()*() +specialweight_OFF = ()*() +specialweight = !> + + +[DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 12200 +sampleName = DYBJets_200toInf +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 0.297 * 1.23 +SF = +cut = +specialweight_ON = ()*() +specialweight_OFF = ()*() +specialweight = !> + +[DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 14100 +sampleName = DYJetsBGenFilter_100to200 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 3.41 * 1.23 +SF = +cut = +specialweight_ON = ()*() +specialweight_OFF = ()*() +specialweight = !> + + +[DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 14200 +sampleName = DYJetsBGenFilter_200toInf +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 0.5082 * 1.23 +SF = +cut = +specialweight_ON = ()*() +specialweight_OFF = ()*() +specialweight = !> + +#[DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8] +#sampleIndex = [20100,20101,20102] +#sampleName = DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8 +#sampleType = BKG +#subsamples = True +#subnames = ['DYnloIncl_0b','DYnloIncl_1b','DYnloIncl_2b'] +#subcuts = +#sampleGroup = +#xSec = [6529.0]*3 +#SF = +#specialweight = + +#-- QCD Samples --# + +[QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 1 +sampleName = QCDHT100 +sampleType = BKG +subsamples = False +sampleGroup = QCD +xSec = [23690000] +SF = + +[QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 2 +sampleName = QCDHT200 +sampleType = BKG +subsamples = False +sampleGroup = QCD +xSec = [1556000] +SF = + +[QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 3 +sampleName = QCDHT300 +sampleType = BKG +subsamples = False +sampleGroup = QCD +xSec = [323600] +SF = + +[QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 4 +sampleName = QCDHT500 +sampleType = BKG +subsamples = False +sampleGroup = QCD +xSec = [29930] +SF = + +[QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 5 +sampleName = QCDHT700 +sampleType = BKG +subsamples = False +sampleGroup = QCD +xSec = [6351] +SF = + +[QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 6 +sampleName = QCDHT1000 +sampleType = BKG +subsamples = False +sampleGroup = QCD +xSec = [1094] +SF = + +[QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 7 +sampleName = QCDHT1500 +sampleType = BKG +subsamples = False +sampleGroup = QCD +xSec = [98.99] +SF = + +[QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 8 +sampleName = QCDHT2000 +sampleType = BKG +subsamples = False +sampleGroup = QCD +xSec = [20.23] +SF = + + + +#-- Z+Jets Samples --# + +[ZJetsToNuNu_HT-100To200_13TeV-madgraph] +sampleIndex = 15000 +sampleName = ZJetsHT100 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 280.59 * 1.23 +suffixes = +offsets = +SF = +specialweight = + +[ZJetsToNuNu_HT-200To400_13TeV-madgraph] +sampleIndex = 15100 +sampleName = ZJetsHT200 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 77.79 * 1.23 +suffixes = +offsets = +SF = +specialweight = + +[ZJetsToNuNu_HT-400To600_13TeV-madgraph] +sampleIndex = 15200 +sampleName = ZJetsHT400 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 10.755 * 1.23 +suffixes = +offsets = +SF = +specialweight = + +[ZJetsToNuNu_HT-600To800_13TeV-madgraph] +sampleIndex = 15300 +sampleName = ZJetsHT600 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 2.5644 * 1.23 +suffixes = +offsets = +SF = +specialweight = + +[ZJetsToNuNu_HT-800To1200_13TeV-madgraph] +sampleIndex = 15400 +sampleName = ZJetsHT800 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 1.1802 * 1.23 +suffixes = +offsets = +SF = +specialweight = + +[ZJetsToNuNu_HT-1200To2500_13TeV-madgraph] +sampleIndex = 15500 +sampleName = ZJetsHT1200 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 0.28629 * 1.23 +suffixes = +offsets = +SF = +specialweight = + +[ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph] +sampleIndex = 15600 +sampleName = ZJetsHT2500 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 0.006912 * 1.23 +suffixes = +offsets = +SF = +specialweight = + +# b-enriched + +[ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 16000 +sampleName = ZBJets100 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 5.939 * 1.23 +SF = +cut = +specialweight_ON = ()*(9.282e-01 + 2.350e-03*min(LHE_Vpt,800) - 2.032e-06*min(LHE_Vpt,800)**2) +specialweight_OFF = ()*1.332 +specialweight = !> + +[ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 16100 +sampleName = ZBJets200 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 0.6068 * 1.23 +suffixes = +offsets = +SF = +specialweight_ON = () +specialweight_OFF = () +specialweight = !> + +[ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 16200 +sampleName = ZBGenFilter100 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 2.16 * 1.23 +suffixes = +offsets = +SF = +specialweight_ON = () +specialweight_OFF = () +specialweight = !> + +[ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8] +sampleIndex = 16300 +sampleName = ZBGenFilter200 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +xSec = 0.3155 * 1.23 +suffixes = +offsets = +SF = +specialweight_ON = () +specialweight_OFF = () +specialweight = !> + + + +# this is the list of samples which will be used to construct the lists of samples to plot/for shape making +[Samples] + +#----- VH -----# +#ZHsignal = 'ZnnH_lep_PTV_0_75_hbb','ZnnH_lep_PTV_75_150_hbb','ZnnH_lep_PTV_150_250_0J_hbb','ZnnH_lep_PTV_150_250_GE1J_hbb','ZnnH_lep_PTV_250_400_hbb','ZnnH_lep_PTV_GT400_hbb','ZllH_lep_PTV_0_75_hbb','ZllH_lep_PTV_75_150_hbb','ZllH_lep_PTV_150_250_0J_hbb','ZllH_lep_PTV_150_250_GE1J_hbb','ZllH_lep_PTV_250_400_hbb','ZllH_lep_PTV_GT400_hbb' +ZHsignal = 'ZnnH_lep_PTV_0_75_hbb','ZnnH_lep_PTV_75_150_hbb','ZnnH_lep_PTV_150_250_0J_hbb','ZnnH_lep_PTV_150_250_GE1J_hbb','ZnnH_lep_PTV_GT250_hbb','ZllH_lep_PTV_0_75_hbb','ZllH_lep_PTV_75_150_hbb','ZllH_lep_PTV_150_250_0J_hbb','ZllH_lep_PTV_150_250_GE1J_hbb','ZllH_lep_PTV_GT250_hbb' +#ggZHsignal = 'ggZllH_lep_PTV_0_75_hbb','ggZllH_lep_PTV_75_150_hbb','ggZllH_lep_PTV_150_250_0J_hbb','ggZllH_lep_PTV_150_250_GE1J_hbb','ggZllH_lep_PTV_250_400_hbb','ggZllH_lep_PTV_GT400_hbb','ggZnnH_lep_PTV_0_75_hbb','ggZnnH_lep_PTV_75_150_hbb','ggZnnH_lep_PTV_150_250_0J_hbb','ggZnnH_lep_PTV_150_250_GE1J_hbb','ggZnnH_lep_PTV_250_400_hbb','ggZnnH_lep_PTV_GT400_hbb' +ggZHsignal = 'ggZllH_lep_PTV_0_75_hbb','ggZllH_lep_PTV_75_150_hbb','ggZllH_lep_PTV_150_250_0J_hbb','ggZllH_lep_PTV_150_250_GE1J_hbb','ggZllH_lep_PTV_GT250_hbb','ggZnnH_lep_PTV_0_75_hbb','ggZnnH_lep_PTV_75_150_hbb','ggZnnH_lep_PTV_150_250_0J_hbb','ggZnnH_lep_PTV_150_250_GE1J_hbb','ggZnnH_lep_PTV_GT250_hbb' +#WHsignal = 'WminusH_lep_PTV_0_75_hbb','WminusH_lep_PTV_75_150_hbb','WminusH_lep_PTV_150_250_0J_hbb','WminusH_lep_PTV_150_250_GE1J_hbb','WminusH_lep_PTV_250_400_hbb','WminusH_lep_PTV_GT400_hbb','WplusH_lep_PTV_0_75_hbb','WplusH_lep_PTV_75_150_hbb','WplusH_lep_PTV_150_250_0J_hbb','WplusH_lep_PTV_150_250_GE1J_hbb','WplusH_lep_PTV_250_400_hbb','WplusH_lep_PTV_GT400_hbb' +WHsignal = 'WminusH_lep_PTV_0_75_hbb','WminusH_lep_PTV_75_150_hbb','WminusH_lep_PTV_150_250_0J_hbb','WminusH_lep_PTV_150_250_GE1J_hbb','WminusH_lep_PTV_GT250_hbb','WplusH_lep_PTV_0_75_hbb','WplusH_lep_PTV_75_150_hbb','WplusH_lep_PTV_150_250_0J_hbb','WplusH_lep_PTV_150_250_GE1J_hbb','WplusH_lep_PTV_GT250_hbb' +signals = ,, + +#----- W+jets -----# +WJetsHT0_VJ4 = 'WJetsHT0_0b_udsg', 'WJetsHT0_0b_c', 'WJetsHT0_1b', 'WJetsHT0_2b' +WJetsHT70_VJ4 = 'WJetsHT70_0b_udsg', 'WJetsHT70_0b_c', 'WJetsHT70_1b', 'WJetsHT70_2b' +WJetsHT100_VJ4 = 'WJetsHT100_0b_udsg', 'WJetsHT100_0b_c', 'WJetsHT100_1b', 'WJetsHT100_2b' +WJetsHT200_VJ4 = 'WJetsHT200_0b_udsg', 'WJetsHT200_0b_c', 'WJetsHT200_1b', 'WJetsHT200_2b' +WJetsHT400_VJ4 = 'WJetsHT400_0b_udsg', 'WJetsHT400_0b_c', 'WJetsHT400_1b', 'WJetsHT400_2b' +WJetsHT600_VJ4 = 'WJetsHT600_0b_udsg', 'WJetsHT600_0b_c', 'WJetsHT600_1b', 'WJetsHT600_2b' +WJetsHT800_VJ4 = 'WJetsHT800_0b_udsg', 'WJetsHT800_0b_c', 'WJetsHT800_1b', 'WJetsHT800_2b' +WJetsHT1200_VJ4 = 'WJetsHT1200_0b_udsg', 'WJetsHT1200_0b_c', 'WJetsHT1200_1b', 'WJetsHT1200_2b' +WJetsHT2500_VJ4 = 'WJetsHT2500_0b_udsg', 'WJetsHT2500_0b_c', 'WJetsHT2500_1b', 'WJetsHT2500_2b' +WJetsB_VJ4 = 'WBJets100_0b_udsg', 'WBJets100_0b_c', 'WBJets100_1b', 'WBJets100_2b','WBJets200_0b_udsg','WBJets200_0b_c', 'WBJets200_1b', 'WBJets200_2b','WBGenFilter100_0b_udsg','WBGenFilter100_0b_c', 'WBGenFilter100_1b', 'WBGenFilter100_2b','WBGenFilter200_0b_udsg','WBGenFilter200_0b_c', 'WBGenFilter200_1b', 'WBGenFilter200_2b' + +WJetsHT0_Default = 'WJetsHT0_0b', 'WJetsHT0_1b', 'WJetsHT0_2b' +WJetsHT70_Default = 'WJetsHT70_0b', 'WJetsHT70_1b', 'WJetsHT70_2b' +WJetsHT100_Default = 'WJetsHT100_0b', 'WJetsHT100_1b', 'WJetsHT100_2b' +WJetsHT200_Default = 'WJetsHT200_0b', 'WJetsHT200_1b', 'WJetsHT200_2b' +WJetsHT400_Default = 'WJetsHT400_0b', 'WJetsHT400_1b', 'WJetsHT400_2b' +WJetsHT600_Default = 'WJetsHT600_0b', 'WJetsHT600_1b', 'WJetsHT600_2b' +WJetsHT800_Default = 'WJetsHT800_0b', 'WJetsHT800_1b', 'WJetsHT800_2b' +WJetsHT1200_Default = 'WJetsHT1200_0b', 'WJetsHT1200_1b', 'WJetsHT1200_2b' +WJetsHT2500_Default = 'WJetsHT2500_0b', 'WJetsHT2500_1b', 'WJetsHT2500_2b' +WJetsB_Default = 'WBJets100_0b', 'WBJets100_1b', 'WBJets100_2b','WBJets200_0b', 'WBJets200_1b', 'WBJets200_2b','WBGenFilter100_0b', 'WBGenFilter100_1b', 'WBGenFilter100_2b','WBGenFilter200_0b', 'WBGenFilter200_1b', 'WBGenFilter200_2b' + +WJetsHT0 = !> +WJetsHT70 = !> +WJetsHT100 = !> +WJetsHT200 = !> +WJetsHT400 = !> +WJetsHT600 = !> +WJetsHT800 = !> +WJetsHT1200 = !> +WJetsHT2500 = !> +WJetsB = !> + +#WJets = ,,,,,,,,, +WJets = ,,,,,,,, + +WJets_0b_udsg = 'WJetsHT0_0b_udsg', 'WJetsHT100_0b_udsg','WJetsHT200_0b_udsg','WJetsHT400_0b_udsg','WJetsHT600_0b_udsg','WJetsHT800_0b_udsg','WJetsHT1200_0b_udsg','WBJets100_0b_udsg','WBJets200_0b_udsg','WBGenFilter100_0b_udsg','WBGenFilter200_0b_udsg' +WJets_0b_c = 'WJetsHT0_0b_c','WJetsHT100_0b_c','WJetsHT200_0b_c','WJetsHT400_0b_c','WJetsHT600_0b_c','WJetsHT800_0b_c','WJetsHT1200_0b_c','WBJets100_0b_c','WBJets200_0b_c','WBGenFilter100_0b_c','WBGenFilter200_0b_c' +WJets_0b_2c = 'WJetsHT0_0b_2c','WJetsHT100_0b_2c','WJetsHT200_0b_2c','WJetsHT400_0b_2c','WJetsHT600_0b_2c','WJetsHT800_0b_2c','WJetsHT1200_0b_2c','WBJets100_0b_2c','WBJets200_0b_2c','WBGenFilter100_0b_2c','WBGenFilter200_0b_2c' +WJets_0b = , +WJets_1b = 'WJetsHT0_1b','WJetsHT100_1b','WJetsHT200_1b','WJetsHT400_1b','WJetsHT600_1b','WJetsHT800_1b','WJetsHT1200_1b','WBJets100_1b','WBJets200_1b','WBGenFilter100_1b','WBGenFilter200_1b' +WJets_1b_udsg = 'WJetsHT0_1b_udsg','WJetsHT100_1b_udsg','WJetsHT200_1b_udsg','WJetsHT400_1b_udsg','WJetsHT600_1b_udsg','WJetsHT800_1b_udsg','WJetsHT1200_1b_udsg','WBJets100_1b_udsg','WBJets200_1b_udsg','WBGenFilter100_1b_udsg','WBGenFilter200_1b_udsg' +WJets_1b_c = 'WJetsHT0_1b_c','WJetsHT100_1b_c','WJetsHT200_1b_c','WJetsHT400_1b_c','WJetsHT600_1b_c','WJetsHT800_1b_c','WJetsHT1200_1b_c','WBJets100_1b_c','WBJets200_1b_c','WBGenFilter100_1b_c','WBGenFilter200_1b_c' +WJets_2b = 'WJetsHT0_2b','WJetsHT100_2b','WJetsHT200_2b','WJetsHT400_2b','WJetsHT600_2b','WJetsHT800_2b','WJetsHT1200_2b','WBJets100_2b','WBJets200_2b','WBGenFilter100_2b','WBGenFilter200_2b' + + +#----- Z+jets -----# +ZJetsHT100_VJ4 = 'ZJetsHT100_0b_udsg', 'ZJetsHT100_2b','ZJetsHT100_0b_c', 'ZJetsHT100_1b' +ZJetsHT200_VJ4 = 'ZJetsHT200_0b_udsg', 'ZJetsHT200_2b','ZJetsHT200_0b_c', 'ZJetsHT200_1b' +ZJetsHT400_VJ4 = 'ZJetsHT400_0b_udsg', 'ZJetsHT400_2b','ZJetsHT400_0b_c', 'ZJetsHT400_1b' +ZJetsHT600_VJ4 = 'ZJetsHT600_0b_udsg', 'ZJetsHT600_2b','ZJetsHT600_0b_c', 'ZJetsHT600_1b' +ZJetsHT800_VJ4 = 'ZJetsHT800_0b_udsg', 'ZJetsHT800_2b','ZJetsHT800_0b_c', 'ZJetsHT800_1b' +ZJetsHT1200_VJ4 = 'ZJetsHT1200_0b_udsg', 'ZJetsHT1200_2b','ZJetsHT1200_0b_c', 'ZJetsHT1200_1b' +ZJetsHT2500_VJ4 = 'ZJetsHT2500_0b_udsg', 'ZJetsHT2500_2b','ZJetsHT2500_0b_c', 'ZJetsHT2500_1b' +ZJB_VJ4 = 'ZBJets100_0b_udsg','ZBJets100_1b','ZBJets100_2b','ZBJets200_0b_udsg','ZBJets200_1b','ZBJets200_2b','ZBGenFilter100_0b_udsg','ZBGenFilter100_1b','ZBGenFilter100_2b','ZBGenFilter200_0b_udsg','ZBGenFilter200_1b','ZBGenFilter200_2b','ZBJets100_0b_c','ZBJets200_0b_c','ZBGenFilter100_0b_c','ZBGenFilter200_0b_c' + +ZJetsHT100_Default = 'ZJetsHT100_0b', 'ZJetsHT100_2b', 'ZJetsHT100_1b' +ZJetsHT200_Default = 'ZJetsHT200_0b', 'ZJetsHT200_2b', 'ZJetsHT200_1b' +ZJetsHT400_Default = 'ZJetsHT400_0b', 'ZJetsHT400_2b', 'ZJetsHT400_1b' +ZJetsHT600_Default = 'ZJetsHT600_0b', 'ZJetsHT600_2b', 'ZJetsHT600_1b' +ZJetsHT800_Default = 'ZJetsHT800_0b', 'ZJetsHT800_2b', 'ZJetsHT800_1b' +ZJetsHT1200_Default = 'ZJetsHT1200_0b', 'ZJetsHT1200_2b', 'ZJetsHT1200_1b' +ZJetsHT2500_Default = 'ZJetsHT2500_0b', 'ZJetsHT2500_2b', 'ZJetsHT2500_1b' +ZJB_Default = 'ZBJets100_0b','ZBJets100_1b','ZBJets100_2b','ZBJets200_0b','ZBJets200_1b','ZBJets200_2b','ZBGenFilter100_0b','ZBGenFilter100_1b','ZBGenFilter100_2b','ZBGenFilter200_0b','ZBGenFilter200_1b','ZBGenFilter200_2b' + +ZJetsHT100 = !> +ZJetsHT200 = !> +ZJetsHT400 = !> +ZJetsHT600 = !> +ZJetsHT800 = !> +ZJetsHT1200 = !> +ZJetsHT2500 = !> +ZJB = !> + +ZJets = , , , , , , , + +ZJets_0b = 'ZJetsHT100_0b','ZJetsHT200_0b','ZJetsHT400_0b','ZJetsHT600_0b','ZJetsHT800_0b','ZJetsHT1200_0b','ZJetsHT2500_0b','ZBJets100_0b','ZBJets200_0b','ZBGenFilter100_0b','ZBGenFilter200_0b' +ZJets_0b_udsg = 'ZJetsHT100_0b_udsg','ZJetsHT200_0b_udsg','ZJetsHT400_0b_udsg','ZJetsHT600_0b_udsg','ZJetsHT800_0b_udsg','ZJetsHT1200_0b_udsg','ZJetsHT2500_0b_udsg','ZBJets100_0b_udsg','ZBJets200_0b_udsg','ZBGenFilter100_0b_udsg','ZBGenFilter200_0b_udsg' +ZJets_1b_udsg = 'ZJetsHT100_1b_udsg','ZJetsHT200_1b_udsg','ZJetsHT400_1b_udsg','ZJetsHT600_1b_udsg','ZJetsHT800_1b_udsg','ZJetsHT1200_1b_udsg','ZJetsHT2500_1b_udsg','ZBJets100_1b_udsg','ZBJets200_1b_udsg','ZBGenFilter100_1b_udsg','ZBGenFilter200_1b_udsg' +ZJets_1b = 'ZJetsHT100_1b','ZJetsHT200_1b','ZJetsHT400_1b','ZJetsHT600_1b','ZJetsHT800_1b','ZJetsHT1200_1b','ZJetsHT2500_1b','ZBJets100_1b','ZBJets200_1b','ZBGenFilter100_1b','ZBGenFilter200_1b' +ZJets_2b = 'ZJetsHT100_2b','ZJetsHT200_2b','ZJetsHT400_2b','ZJetsHT600_2b','ZJetsHT800_2b','ZJetsHT1200_2b','ZJetsHT2500_2b','ZBJets100_2b','ZBJets200_2b','ZBGenFilter100_2b','ZBGenFilter200_2b' +ZJets_0b_c = 'ZJetsHT100_0b_c','ZJetsHT200_0b_c','ZJetsHT400_0b_c','ZJetsHT600_0b_c','ZJetsHT800_0b_c','ZJetsHT1200_0b_c','ZJetsHT2500_0b_c','ZBJets100_0b_c','ZBJets200_0b_c','ZBGenFilter100_0b_c','ZBGenFilter200_0b_c' +ZJets_1b_c = 'ZJetsHT100_1b_c','ZJetsHT200_1b_c','ZJetsHT400_1b_c','ZJetsHT600_1b_c','ZJetsHT800_1b_c','ZJetsHT1200_1b_c','ZJetsHT2500_1b_c','ZBJets100_1b_c','ZBJets200_1b_c','ZBGenFilter100_1b_c','ZBGenFilter200_1b_c' +ZJets_0b_2c = 'ZJetsHT100_0b_2c','ZJetsHT200_0b_2c','ZJetsHT400_0b_2c','ZJetsHT600_0b_2c','ZJetsHT800_0b_2c','ZJetsHT1200_0b_2c','ZJetsHT2500_0b_2c','ZBJets100_0b_2c','ZBJets200_0b_2c','ZBGenFilter100_0b_2c','ZBGenFilter200_0b_2c' + +#----- DY -----# +;70to100 broken in 2017 +;DYm4HT70 = 'M4HT70to100_0b','M4HT70to100_1b','M4HT70to100_2b' +;DYm4HT100_VJ4 = 'M4HT100to200_0b_udsg','M4HT100to200_0b_c','M4HT100to200_1b','M4HT100to200_2b' +;DYm4HT200_VJ4 = 'M4HT200to400_0b_udsg','M4HT200to400_0b_c','M4HT200to400_1b','M4HT200to400_2b' +;DYm4HT400_VJ4 = 'M4HT400to600_0b_udsg','M4HT400to600_0b_c','M4HT400to600_1b','M4HT400to600_2b' +;DYm4HT600_VJ4 = 'M4HT600toInf_0b_udsg','M4HT600toInf_0b_c','M4HT600toInf_1b','M4HT600toInf_2b' + +;DYm4HT100_Default = 'M4HT100to200_0b','M4HT100to200_1b','M4HT100to200_2b' +;DYm4HT200_Default = 'M4HT200to400_0b','M4HT200to400_1b','M4HT200to400_2b' +;DYm4HT400_Default = 'M4HT400to600_0b','M4HT400to600_1b','M4HT400to600_2b' +;DYm4HT600_Default = 'M4HT600toInf_0b','M4HT600toInf_1b','M4HT600toInf_2b' + +;DYm4 = !>,!>,!>,!> + +DYHT0_VJ4 = 'HT0to70ZJets_0b_udsg', 'HT0to70ZJets_0b_c', 'HT0to70ZJets_1b', 'HT0to70ZJets_2b' +DYHT70_VJ4 = 'HT70to100ZJets_0b_udsg', 'HT70to100ZJets_0b_c', 'HT70to100ZJets_1b', 'HT70to100ZJets_2b' +DYHT100_VJ4 = 'HT100to200ZJets_0b_udsg', 'HT100to200ZJets_0b_c', 'HT100to200ZJets_1b', 'HT100to200ZJets_2b' +DYHT200_VJ4 = 'HT200to400ZJets_0b_udsg', 'HT200to400ZJets_0b_c', 'HT200to400ZJets_1b', 'HT200to400ZJets_2b' +DYHT400_VJ4 = 'HT400to600ZJets_0b_udsg', 'HT400to600ZJets_0b_c', 'HT400to600ZJets_1b', 'HT400to600ZJets_2b' +DYHT600_VJ4 = 'HT600to800ZJets_0b_udsg', 'HT600to800ZJets_0b_c', 'HT600to800ZJets_1b', 'HT600to800ZJets_2b' +DYHT800_VJ4 = 'HT800to1200ZJets_0b_udsg', 'HT800to1200ZJets_0b_c', 'HT800to1200ZJets_1b', 'HT800to1200ZJets_2b' +DYHT1200_VJ4 = 'HT1200to2500ZJets_0b_udsg', 'HT1200to2500ZJets_0b_c', 'HT1200to2500ZJets_1b', 'HT1200to2500ZJets_2b' +DYHT2500_VJ4 = 'HT2500toinfZJets_0b_udsg', 'HT2500toinfZJets_0b_c', 'HT2500toinfZJets_1b', 'HT2500toinfZJets_2b' + +DYHT0_Default = 'HT0to100ZJets_0b', 'HT0to100ZJets_1b', 'HT0to100ZJets_2b' +DYHT100_Default = 'HT100to200ZJets_0b', 'HT100to200ZJets_1b', 'HT100to200ZJets_2b' +DYHT200_Default = 'HT200to400ZJets_0b', 'HT200to400ZJets_1b', 'HT200to400ZJets_2b' +DYHT400_Default = 'HT400to600ZJets_0b', 'HT400to600ZJets_1b', 'HT400to600ZJets_2b' +DYHT600_Default = 'HT600to800ZJets_0b', 'HT600to800ZJets_1b', 'HT600to800ZJets_2b' +DYHT800_Default = 'HT800to1200ZJets_0b', 'HT800to1200ZJets_1b', 'HT800to1200ZJets_2b' +DYHT1200_Default = 'HT1200to2500ZJets_0b', 'HT1200to2500ZJets_1b', 'HT1200to2500ZJets_2b' +DYHT2500_Default = 'HT2500toinfZJets_0b', 'HT2500toinfZJets_1b', 'HT2500toinfZJets_2b' + +#DYm50 = !>,!>,!>,!>,!>,!>,!>,!>,!> +DYm50 = !>,!>,!>,!>,!>,!>,!>,!> + +DYBJets_VJ4 = 'DYBJets_100to200_0b_udsg','DYBJets_100to200_0b_c','DYBJets_100to200_1b','DYBJets_100to200_2b','DYBJets_200toInf_0b_udsg','DYBJets_200toInf_0b_c','DYBJets_200toInf_1b','DYBJets_200toInf_2b' +DYJetsBGenFilter_VJ4 = 'DYJetsBGenFilter_100to200_0b_udsg','DYJetsBGenFilter_100to200_0b_c','DYJetsBGenFilter_100to200_1b','DYJetsBGenFilter_100to200_2b','DYJetsBGenFilter_200toInf_0b_udsg','DYJetsBGenFilter_200toInf_0b_c','DYJetsBGenFilter_200toInf_1b','DYJetsBGenFilter_200toInf_2b' +DYBJets_Default = 'DYBJets_100to200_0b','DYBJets_100to200_1b','DYBJets_100to200_2b','DYBJets_200toInf_0b','DYBJets_200toInf_1b','DYBJets_200toInf_2b' +DYJetsBGenFilter_Default = 'DYJetsBGenFilter_100to200_0b','DYJetsBGenFilter_100to200_1b','DYJetsBGenFilter_100to200_2b','DYJetsBGenFilter_200toInf_0b','DYJetsBGenFilter_200toInf_1b','DYJetsBGenFilter_200toInf_2b' + +DYBJets = !> +DYJetsBGenFilter = !> + +#DYlo = ,,, +DYlo = ,, +DY = + +DynloIncl = 'DYnloIncl_0b','DYnloIncl_1b','DYnloIncl_2b' +DYnlom50 = +DYnlo = + +DY_0b = 'M4HT100to200_0b','M4HT200to400_0b','M4HT400to600_0b','M4HT600toInf_0b','HT0to100ZJets_0b','HT100to200ZJets_0b','HT200to400ZJets_0b','HT400to600ZJets_0b','HT600to800ZJets_0b','HT800to1200ZJets_0b','HT1200to2500ZJets_0b','HT2500toinfZJets_0b','DYBJets_100to200_0b','DYBJets_200toInf_0b','DYJetsBGenFilter_100to200_0b','DYJetsBGenFilter_200toInf_0b' +DY_1b = 'M4HT100to200_1b','M4HT200to400_1b','M4HT400to600_1b','M4HT600toInf_1b','HT0to100ZJets_1b','HT100to200ZJets_1b','HT200to400ZJets_1b','HT400to600ZJets_1b','HT600to800ZJets_1b','HT800to1200ZJets_1b','HT1200to2500ZJets_1b','HT2500toinfZJets_1b','DYBJets_100to200_1b','DYBJets_200toInf_1b','DYJetsBGenFilter_100to200_1b','DYJetsBGenFilter_200toInf_1b' +DY_2b = 'M4HT100to200_2b','M4HT200to400_2b','M4HT400to600_2b','M4HT600toInf_2b','HT0to100ZJets_2b','HT100to200ZJets_2b','HT200to400ZJets_2b','HT400to600ZJets_2b','HT600to800ZJets_2b','HT800to1200ZJets_2b','HT1200to2500ZJets_2b','HT2500toinfZJets_2b','DYBJets_100to200_2b','DYBJets_200toInf_2b','DYJetsBGenFilter_100to200_2b','DYJetsBGenFilter_200toInf_2b' + +DY_0b_udsg = 'M4HT100to200_0b_udsg','M4HT200to400_0b_udsg','M4HT400to600_0b_udsg','M4HT600toInf_0b_udsg','HT0to100ZJets_0b_udsg','HT100to200ZJets_0b_udsg','HT200to400ZJets_0b_udsg','HT400to600ZJets_0b_udsg','HT600to800ZJets_0b_udsg','HT800to1200ZJets_0b_udsg','HT1200to2500ZJets_0b_udsg','HT2500toinfZJets_0b_udsg','DYBJets_100to200_0b_udsg','DYBJets_200toInf_0b_udsg','DYJetsBGenFilter_100to200_0b_udsg','DYJetsBGenFilter_200toInf_0b_udsg' +DY_0b_c = 'M4HT100to200_0b_c','M4HT200to400_0b_c','M4HT400to600_0b_c','M4HT600toInf_0b_c','HT0to100ZJets_0b_c','HT100to200ZJets_0b_c','HT200to400ZJets_0b_c','HT400to600ZJets_0b_c','HT600to800ZJets_0b_c','HT800to1200ZJets_0b_c','HT1200to2500ZJets_0b_c','HT2500toinfZJets_0b_c','DYBJets_100to200_0b_c','DYBJets_200toInf_0b_c','DYJetsBGenFilter_100to200_0b_c','DYJetsBGenFilter_200toInf_0b_c' + +DYm50_0b = 'HT0to100ZJets_0b','HT100to200ZJets_0b','HT200to400ZJets_0b','HT400to600ZJets_0b','HT600to800ZJets_0b','HT800to1200ZJets_0b','HT1200to2500ZJets_0b','HT2500toinfZJets_0b','DYBJets_100to200_0b','DYBJets_200toInf_0b','DYJetsBGenFilter_100to200_0b','DYJetsBGenFilter_200toInf_0b' +DYm50_1b = 'HT0to100ZJets_1b','HT100to200ZJets_1b','HT200to400ZJets_1b','HT400to600ZJets_1b','HT600to800ZJets_1b','HT800to1200ZJets_1b','HT1200to2500ZJets_1b','HT2500toinfZJets_1b','DYBJets_100to200_1b','DYBJets_200toInf_1b','DYJetsBGenFilter_100to200_1b','DYJetsBGenFilter_200toInf_1b' +DYm50_2b = 'HT0to100ZJets_2b','HT100to200ZJets_2b','HT200to400ZJets_2b','HT400to600ZJets_2b','HT600to800ZJets_2b','HT800to1200ZJets_2b','HT1200to2500ZJets_2b','HT2500toinfZJets_2b','DYBJets_100to200_2b','DYBJets_200toInf_2b','DYJetsBGenFilter_100to200_2b','DYJetsBGenFilter_200toInf_2b' + +DYnlo_0b = 'DYnloIncl_0b' +DYnlo_1b = 'DYnloIncl_1b' +DYnlo_2b = 'DYnloIncl_2b' + +#----- top Samples -----# +TT = 'TT' +ST = 'ST_tW_antitop','ST_tW_top','ST_s-channel_4f','ST_t-channel_top_4f','ST_t-channel_antitop_4f' + +#----- QCD Samples -----# +QCD = 'QCDHT200', 'QCDHT300', 'QCDHT500', 'QCDHT700', 'QCDHT1000', 'QCDHT1500', 'QCDHT2000' + +QCDEME = 'QCD15EME','QCD20EME','QCD30EME','QCD50EME','QCD120EME','QCD170EME','QCD300EME' +QCDb = 'QCD100b','QCD200b','QCD300b','QCD500b','QCD700b','QCD1000b','QCD1500b','QCD2000b' +QCDbcToE = 'QCD20bcToE','QCD30bcToE','QCD80bcToE','QCD170bcToE','QCD250bcToE' +#QCDPt = 'QCDPt15','QCDPt30','QCDPt50','QCDPt80','QCDPt120','QCDPt170','QCDPt300','QCDPt470','QCDPt600','QCDPt800','QCDPt1000','QCDPt1400','QCDPt1800','QCDPt2400','QCDPt3200' +QCDPt = 'QCDPt15','QCDPt30','QCDPt50','QCDPt80','QCDPt120','QCDPt170','QCDPt300','QCDPt470','QCDPt600','QCDPt800','QCDPt1000','QCDPt1800','QCDPt2400','QCDPt3200' +QCDPtNoLargeWeights = 'QCDPt170','QCDPt300','QCDPt470','QCDPt600','QCDPt800','QCDPt1000','QCDPt1800','QCDPt2400','QCDPt3200' + +#----- Diboson Samples -----# +#WWLF = 'WWTo1L1Nu2Qnlo_0b','WWTo2L2Nunlo_0b' +WWLF = 'WWTo1L1Nu2Qnlo_0b' +WZLF = 'WZTo1L1Nu2Qnlo_0b' +#ZZLF = 'ZZTo2L2Qnlo_0b','ZZTo2Q2Nu_0b' +ZZLF = 'ZZTo2L2Qnlo_0b' + +#WWHF = 'WWTo1L1Nu2Qnlo_1b','WWTo1L1Nu2Qnlo_2b','WWTo2L2Nunlo_1b', 'WWTo2L2Nunlo_2b' +WWHF = 'WWTo1L1Nu2Qnlo_1b','WWTo1L1Nu2Qnlo_2b' +WZHF = 'WZTo1L1Nu2Qnlo_1b','WZTo1L1Nu2Qnlo_2b' +#ZZHF = 'ZZTo2L2Qnlo_1b','ZZTo2L2Qnlo_2b','ZZTo2Q2Nu_1b', 'ZZTo2Q2Nu_2b' +ZZHF = 'ZZTo2L2Qnlo_1b','ZZTo2L2Qnlo_2b' + +VVLF = ,, +VVHF = ,, + +VV = , + +#----- all -----# +backgrounds = ,,,,, + +[VHbbCommon] + +GroupZJetsHT = { + 'ZJetsHT100_0b':'ZJets100', 'ZJetsHT100_1b':'ZJets100', 'ZJetsHT100_2b':'ZJets100', 'ZJetsHT200_0b':'ZJets200', 'ZJetsHT200_1b':'ZJets200', 'ZJetsHT200_2b':'ZJets200', + 'ZJetsHT400_0b':'ZJets400', + 'ZJetsHT400_1b':'ZJets400', + 'ZJetsHT400_2b':'ZJets400', + 'ZJetsHT600_0b':'ZJets600', + 'ZJetsHT600_1b':'ZJets600', + 'ZJetsHT600_2b':'ZJets600', + 'ZJetsHT800_0b':'ZJets800', + 'ZJetsHT800_1b':'ZJets800', + 'ZJetsHT800_2b':'ZJets800', + 'ZJetsHT1200_0b':'ZJets1200', + 'ZJetsHT1200_1b':'ZJets1200', + 'ZJetsHT1200_2b':'ZJets1200', + 'ZJetsHT2500_0b':'ZJets2500', + 'ZJetsHT2500_1b':'ZJets2500', + 'ZJetsHT2500_2b':'ZJets2500', + } + +GroupWJetsHT = { + 'WJetsHT100_0b':'WJets100', + 'WJetsHT100_1b':'WJets100', + 'WJetsHT100_2b':'WJets100', + 'WJetsHT200_0b':'WJets200', + 'WJetsHT200_1b':'WJets200', + 'WJetsHT200_2b':'WJets200', + 'WJetsHT400_0b':'WJets400', + 'WJetsHT400_1b':'WJets400', + 'WJetsHT400_2b':'WJets400', + 'WJetsHT600_0b':'WJets600', + 'WJetsHT600_1b':'WJets600', + 'WJetsHT600_2b':'WJets600', + 'WJetsHT800_0b':'WJets800', + 'WJetsHT800_1b':'WJets800', + 'WJetsHT800_2b':'WJets800', + 'WJetsHT1200_0b':'WJets1200', + 'WJetsHT1200_1b':'WJets1200', + 'WJetsHT1200_2b':'W2ets1200', 'WJetsHT2500_0b':'WJets2500', 'WJetsHT2500_1b':'WJets2500', 'WJetsHT2500_2b':'W2ets2500', } diff --git a/python/VHbb2016commonconfig/stxs.ini b/python/VHbb2016commonconfig/stxs.ini index 4c8f25df0..2b2a3d346 100644 --- a/python/VHbb2016commonconfig/stxs.ini +++ b/python/VHbb2016commonconfig/stxs.ini @@ -5,11 +5,12 @@ sampleIndex = -12501 sampleName = WminusH sampleType = SIG subsamples = True -subnames = ['WminusH_lep_PTV_0_75_hbb','WminusH_lep_PTV_75_150_hbb','WminusH_lep_PTV_150_250_0J_hbb','WminusH_lep_PTV_150_250_GE1J_hbb','WminusH_lep_PTV_GT250_hbb'] -subcuts = ['HTXS_stage1_1_cat_pTjet30GeV==301','HTXS_stage1_1_cat_pTjet30GeV==302','HTXS_stage1_1_cat_pTjet30GeV==303','HTXS_stage1_1_cat_pTjet30GeV==304','HTXS_stage1_1_cat_pTjet30GeV==305'] -sampleGroup = ['WH_lep_PTV_0_75_hbb','WH_lep_PTV_75_150_hbb','WH_lep_PTV_150_250_0J_hbb','WH_lep_PTV_150_250_GE1J_hbb','WH_lep_PTV_GT250_hbb'] -xSec = [0.10899] * 5 -SF = [1.0] * 5 +subnames = ['WminusH_lep_PTV_0_75_hbb','WminusH_lep_PTV_75_150_hbb','WminusH_lep_PTV_150_250_0J_hbb','WminusH_lep_PTV_150_250_GE1J_hbb','WminusH_lep_PTV_250_400_hbb','WminusH_lep_PTV_GT400_hbb'] +#subcuts = ['HTXS_stage1_2_fine_cat_pTjet30GeV==301||HTXS_stage1_2_fine_cat_pTjet30GeV==306||HTXS_stage1_2_fine_cat_pTjet30GeV==311','HTXS_stage1_2_fine_cat_pTjet30GeV==302||HTXS_stage1_2_fine_cat_pTjet30GeV==307||HTXS_stage1_2_fine_cat_pTjet30GeV==312','HTXS_stage1_2_fine_cat_pTjet30GeV==303','HTXS_stage1_2_fine_cat_pTjet30GeV==308||HTXS_stage1_2_fine_cat_pTjet30GeV==313','HTXS_stage1_2_fine_cat_pTjet30GeV==304||HTXS_stage1_2_fine_cat_pTjet30GeV==309||HTXS_stage1_2_fine_cat_pTjet30GeV==314','HTXS_stage1_2_fine_cat_pTjet30GeV==305||HTXS_stage1_2_fine_cat_pTjet30GeV==310||HTXS_stage1_2_fine_cat_pTjet30GeV==315'] +subcuts = ['HTXS_stage1_1_cat_pTjet30GeV==301','HTXS_stage1_1_cat_pTjet30GeV==302','HTXS_stage1_1_cat_pTjet30GeV==303','HTXS_stage1_1_cat_pTjet30GeV==304','HTXS_stage1_1_cat_pTjet30GeV==305&&HTXS_V_pt<400','HTXS_stage1_1_cat_pTjet30GeV==305&&HTXS_V_pt>=400'] +sampleGroup = ['WH_lep_PTV_0_75_hbb','WH_lep_PTV_75_150_hbb','WH_lep_PTV_150_250_0J_hbb','WH_lep_PTV_150_250_GE1J_hbb','WH_lep_PTV_250_400_hbb','WH_lep_PTV_GT400_hbb'] +xSec = [0.10899] * 6 +SF = [1.0] * 6 cut = 1 [WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8] @@ -17,11 +18,12 @@ sampleIndex = -12500 sampleName = WplusH sampleType = SIG subsamples = True -subnames = ['WplusH_lep_PTV_0_75_hbb','WplusH_lep_PTV_75_150_hbb','WplusH_lep_PTV_150_250_0J_hbb','WplusH_lep_PTV_150_250_GE1J_hbb','WplusH_lep_PTV_GT250_hbb'] -subcuts = ['HTXS_stage1_1_cat_pTjet30GeV==301','HTXS_stage1_1_cat_pTjet30GeV==302','HTXS_stage1_1_cat_pTjet30GeV==303','HTXS_stage1_1_cat_pTjet30GeV==304','HTXS_stage1_1_cat_pTjet30GeV==305'] -sampleGroup = ['WH_lep_PTV_0_75_hbb','WH_lep_PTV_75_150_hbb','WH_lep_PTV_150_250_0J_hbb','WH_lep_PTV_150_250_GE1J_hbb','WH_lep_PTV_GT250_hbb'] -xSec = [0.17202] * 5 -SF = [1.0] * 5 +subnames = ['WplusH_lep_PTV_0_75_hbb','WplusH_lep_PTV_75_150_hbb','WplusH_lep_PTV_150_250_0J_hbb','WplusH_lep_PTV_150_250_GE1J_hbb','WplusH_lep_PTV_250_400_hbb','WplusH_lep_PTV_GT400_hbb'] +#subcuts = ['HTXS_stage1_2_fine_cat_pTjet30GeV==301||HTXS_stage1_2_fine_cat_pTjet30GeV==306||HTXS_stage1_2_fine_cat_pTjet30GeV==311','HTXS_stage1_2_fine_cat_pTjet30GeV==302||HTXS_stage1_2_fine_cat_pTjet30GeV==307||HTXS_stage1_2_fine_cat_pTjet30GeV==312','HTXS_stage1_2_fine_cat_pTjet30GeV==303','HTXS_stage1_2_fine_cat_pTjet30GeV==308||HTXS_stage1_2_fine_cat_pTjet30GeV==313','HTXS_stage1_2_fine_cat_pTjet30GeV==304||HTXS_stage1_2_fine_cat_pTjet30GeV==309||HTXS_stage1_2_fine_cat_pTjet30GeV==314','HTXS_stage1_2_fine_cat_pTjet30GeV==305||HTXS_stage1_2_fine_cat_pTjet30GeV==310||HTXS_stage1_2_fine_cat_pTjet30GeV==315'] +subcuts = ['HTXS_stage1_1_cat_pTjet30GeV==301','HTXS_stage1_1_cat_pTjet30GeV==302','HTXS_stage1_1_cat_pTjet30GeV==303','HTXS_stage1_1_cat_pTjet30GeV==304','HTXS_stage1_1_cat_pTjet30GeV==305&&HTXS_V_pt<400','HTXS_stage1_1_cat_pTjet30GeV==305&&HTXS_V_pt>=400'] +sampleGroup = ['WH_lep_PTV_0_75_hbb','WH_lep_PTV_75_150_hbb','WH_lep_PTV_150_250_0J_hbb','WH_lep_PTV_150_250_GE1J_hbb','WH_lep_PTV_250_400_hbb','WH_lep_PTV_GT400_hbb'] +xSec = [0.17202] * 6 +SF = [1.0] * 6 cut = 1 [ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8] @@ -29,11 +31,12 @@ sampleIndex = -12502 sampleName = ZH_Zll sampleType = SIG subsamples = True -subnames = ['ZllH_lep_PTV_0_75_hbb','ZllH_lep_PTV_75_150_hbb','ZllH_lep_PTV_150_250_0J_hbb','ZllH_lep_PTV_150_250_GE1J_hbb','ZllH_lep_PTV_GT250_hbb'] -subcuts = ['HTXS_stage1_1_cat_pTjet30GeV==401','HTXS_stage1_1_cat_pTjet30GeV==402','HTXS_stage1_1_cat_pTjet30GeV==403','HTXS_stage1_1_cat_pTjet30GeV==404','HTXS_stage1_1_cat_pTjet30GeV==405'] -sampleGroup = ['ZH_lep_PTV_0_75_hbb','ZH_lep_PTV_75_150_hbb','ZH_lep_PTV_150_250_0J_hbb','ZH_lep_PTV_150_250_GE1J_hbb','ZH_lep_PTV_GT250_hbb'] -xSec = [0.04718] * 5 -SF = [1.0] * 5 +subnames = ['ZllH_lep_PTV_0_75_hbb','ZllH_lep_PTV_75_150_hbb','ZllH_lep_PTV_150_250_0J_hbb','ZllH_lep_PTV_150_250_GE1J_hbb','ZllH_lep_PTV_250_400_hbb','ZllH_lep_PTV_GT400_hbb'] +#subcuts = ['HTXS_stage1_2_fine_cat_pTjet30GeV==401||HTXS_stage1_2_fine_cat_pTjet30GeV==406||HTXS_stage1_2_fine_cat_pTjet30GeV==411','HTXS_stage1_2_fine_cat_pTjet30GeV==402||HTXS_stage1_2_fine_cat_pTjet30GeV==407||HTXS_stage1_2_fine_cat_pTjet30GeV==412','HTXS_stage1_2_fine_cat_pTjet30GeV==403','HTXS_stage1_2_fine_cat_pTjet30GeV==408||HTXS_stage1_2_fine_cat_pTjet30GeV==413','HTXS_stage1_2_fine_cat_pTjet30GeV==404||HTXS_stage1_2_fine_cat_pTjet30GeV==409||HTXS_stage1_2_fine_cat_pTjet30GeV==414','HTXS_stage1_2_fine_cat_pTjet30GeV==405||HTXS_stage1_2_fine_cat_pTjet30GeV==410||HTXS_stage1_2_fine_cat_pTjet30GeV==415'] +subcuts = ['HTXS_stage1_1_cat_pTjet30GeV==401','HTXS_stage1_1_cat_pTjet30GeV==402','HTXS_stage1_1_cat_pTjet30GeV==403','HTXS_stage1_1_cat_pTjet30GeV==404','HTXS_stage1_1_cat_pTjet30GeV==405&&HTXS_V_pt<400','HTXS_stage1_1_cat_pTjet30GeV==405&&HTXS_V_pt>=400'] +sampleGroup = ['ZH_lep_PTV_0_75_hbb','ZH_lep_PTV_75_150_hbb','ZH_lep_PTV_150_250_0J_hbb','ZH_lep_PTV_150_250_GE1J_hbb','ZH_lep_PTV_250_400_hbb','ZH_lep_PTV_GT400_hbb'] +xSec = [0.04718] * 6 +SF = [1.0] * 6 cut = 1 [ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8] @@ -41,11 +44,12 @@ sampleIndex = -12503 sampleName = ggZH_Zll sampleType = SIG subsamples = True -subnames = ['ggZllH_lep_PTV_0_75_hbb','ggZllH_lep_PTV_75_150_hbb','ggZllH_lep_PTV_150_250_0J_hbb','ggZllH_lep_PTV_150_250_GE1J_hbb','ggZllH_lep_PTV_GT250_hbb'] -subcuts = ['HTXS_stage1_1_cat_pTjet30GeV==501','HTXS_stage1_1_cat_pTjet30GeV==502','HTXS_stage1_1_cat_pTjet30GeV==503','HTXS_stage1_1_cat_pTjet30GeV==504','HTXS_stage1_1_cat_pTjet30GeV==505'] -sampleGroup = ['ggZH_lep_PTV_0_75_hbb','ggZH_lep_PTV_75_150_hbb','ggZH_lep_PTV_150_250_0J_hbb','ggZH_lep_PTV_150_250_GE1J_hbb','ggZH_lep_PTV_GT250_hbb'] -xSec = [0.00720] * 5 -SF = [1.0] * 5 +subnames = ['ggZllH_lep_PTV_0_75_hbb','ggZllH_lep_PTV_75_150_hbb','ggZllH_lep_PTV_150_250_0J_hbb','ggZllH_lep_PTV_150_250_GE1J_hbb','ggZllH_lep_PTV_250_400_hbb','ggZllH_lep_PTV_GT400_hbb'] +#subcuts = ['HTXS_stage1_2_fine_cat_pTjet30GeV==501||HTXS_stage1_2_fine_cat_pTjet30GeV==506||HTXS_stage1_2_fine_cat_pTjet30GeV==511','HTXS_stage1_2_fine_cat_pTjet30GeV==502||HTXS_stage1_2_fine_cat_pTjet30GeV==507||HTXS_stage1_2_fine_cat_pTjet30GeV==512','HTXS_stage1_2_fine_cat_pTjet30GeV==503','HTXS_stage1_2_fine_cat_pTjet30GeV==508||HTXS_stage1_2_fine_cat_pTjet30GeV==513','HTXS_stage1_2_fine_cat_pTjet30GeV==504||HTXS_stage1_2_fine_cat_pTjet30GeV==509||HTXS_stage1_2_fine_cat_pTjet30GeV==514','HTXS_stage1_2_fine_cat_pTjet30GeV==505||HTXS_stage1_2_fine_cat_pTjet30GeV==510||HTXS_stage1_2_fine_cat_pTjet30GeV==515'] +subcuts = ['HTXS_stage1_1_cat_pTjet30GeV==501','HTXS_stage1_1_cat_pTjet30GeV==502','HTXS_stage1_1_cat_pTjet30GeV==503','HTXS_stage1_1_cat_pTjet30GeV==504','HTXS_stage1_1_cat_pTjet30GeV==505&&HTXS_V_pt<400','HTXS_stage1_1_cat_pTjet30GeV==505&&HTXS_V_pt>=400'] +sampleGroup = ['ggZH_lep_PTV_0_75_hbb','ggZH_lep_PTV_75_150_hbb','ggZH_lep_PTV_150_250_0J_hbb','ggZH_lep_PTV_150_250_GE1J_hbb','ggZH_lep_PTV_250_400_hbb','ggZH_lep_PTV_GT400_hbb'] +xSec = [0.00720] * 6 +SF = [1.0] * 6 cut = 1 [ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8] @@ -53,11 +57,12 @@ sampleIndex = -12504 sampleName = ZH_Znunu sampleType = SIG subsamples = True -subnames = ['ZnnH_lep_PTV_0_75_hbb','ZnnH_lep_PTV_75_150_hbb','ZnnH_lep_PTV_150_250_0J_hbb','ZnnH_lep_PTV_150_250_GE1J_hbb','ZnnH_lep_PTV_GT250_hbb'] -subcuts = ['HTXS_stage1_1_cat_pTjet30GeV==401','HTXS_stage1_1_cat_pTjet30GeV==402','HTXS_stage1_1_cat_pTjet30GeV==403','HTXS_stage1_1_cat_pTjet30GeV==404','HTXS_stage1_1_cat_pTjet30GeV==405'] -sampleGroup = ['ZH_lep_PTV_0_75_hbb','ZH_lep_PTV_75_150_hbb','ZH_lep_PTV_150_250_0J_hbb','ZH_lep_PTV_150_250_GE1J_hbb','ZH_lep_PTV_GT250_hbb'] -xSec = [0.09322] * 5 -SF = [1.0] * 5 +subnames = ['ZnnH_lep_PTV_0_75_hbb','ZnnH_lep_PTV_75_150_hbb','ZnnH_lep_PTV_150_250_0J_hbb','ZnnH_lep_PTV_150_250_GE1J_hbb','ZnnH_lep_PTV_250_400_hbb','ZnnH_lep_PTV_GT400_hbb'] +#subcuts = ['HTXS_stage1_2_fine_cat_pTjet30GeV==401||HTXS_stage1_2_fine_cat_pTjet30GeV==406||HTXS_stage1_2_fine_cat_pTjet30GeV==411','HTXS_stage1_2_fine_cat_pTjet30GeV==402||HTXS_stage1_2_fine_cat_pTjet30GeV==407||HTXS_stage1_2_fine_cat_pTjet30GeV==412','HTXS_stage1_2_fine_cat_pTjet30GeV==403','HTXS_stage1_2_fine_cat_pTjet30GeV==408||HTXS_stage1_2_fine_cat_pTjet30GeV==413','HTXS_stage1_2_fine_cat_pTjet30GeV==404||HTXS_stage1_2_fine_cat_pTjet30GeV==409||HTXS_stage1_2_fine_cat_pTjet30GeV==414','HTXS_stage1_2_fine_cat_pTjet30GeV==405||HTXS_stage1_2_fine_cat_pTjet30GeV==410||HTXS_stage1_2_fine_cat_pTjet30GeV==415'] +subcuts = ['HTXS_stage1_1_cat_pTjet30GeV==401','HTXS_stage1_1_cat_pTjet30GeV==402','HTXS_stage1_1_cat_pTjet30GeV==403','HTXS_stage1_1_cat_pTjet30GeV==404','HTXS_stage1_1_cat_pTjet30GeV==405&&HTXS_V_pt<400','HTXS_stage1_1_cat_pTjet30GeV==405&&HTXS_V_pt>=400'] +sampleGroup = ['ZH_lep_PTV_0_75_hbb','ZH_lep_PTV_75_150_hbb','ZH_lep_PTV_150_250_0J_hbb','ZH_lep_PTV_150_250_GE1J_hbb','ZH_lep_PTV_250_400_hbb','ZH_lep_PTV_GT400_hbb'] +xSec = [0.09322] * 6 +SF = [1.0] * 6 cut = 1 [ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8] @@ -65,19 +70,25 @@ sampleIndex = -12505 sampleName = ggZH_Znunu sampleType = SIG subsamples = True -subnames = ['ggZnnH_lep_PTV_0_75_hbb','ggZnnH_lep_PTV_75_150_hbb','ggZnnH_lep_PTV_150_250_0J_hbb','ggZnnH_lep_PTV_150_250_GE1J_hbb','ggZnnH_lep_PTV_GT250_hbb'] -subcuts = ['HTXS_stage1_1_cat_pTjet30GeV==501','HTXS_stage1_1_cat_pTjet30GeV==502','HTXS_stage1_1_cat_pTjet30GeV==503','HTXS_stage1_1_cat_pTjet30GeV==504','HTXS_stage1_1_cat_pTjet30GeV==505'] -sampleGroup = ['ggZH_lep_PTV_0_75_hbb','ggZH_lep_PTV_75_150_hbb','ggZH_lep_PTV_150_250_0J_hbb','ggZH_lep_PTV_150_250_GE1J_hbb','ggZH_lep_PTV_GT250_hbb'] -xSec = [0.01437] * 5 -SF = [1.0] * 5 +subnames = ['ggZnnH_lep_PTV_0_75_hbb','ggZnnH_lep_PTV_75_150_hbb','ggZnnH_lep_PTV_150_250_0J_hbb','ggZnnH_lep_PTV_150_250_GE1J_hbb','ggZnnH_lep_PTV_250_400_hbb','ggZnnH_lep_PTV_GT400_hbb'] +#subcuts = ['HTXS_stage1_2_fine_cat_pTjet30GeV==501||HTXS_stage1_2_fine_cat_pTjet30GeV==506||HTXS_stage1_2_fine_cat_pTjet30GeV==511','HTXS_stage1_2_fine_cat_pTjet30GeV==502||HTXS_stage1_2_fine_cat_pTjet30GeV==507||HTXS_stage1_2_fine_cat_pTjet30GeV==512','HTXS_stage1_2_fine_cat_pTjet30GeV==503','HTXS_stage1_2_fine_cat_pTjet30GeV==508||HTXS_stage1_2_fine_cat_pTjet30GeV==513','HTXS_stage1_2_fine_cat_pTjet30GeV==504||HTXS_stage1_2_fine_cat_pTjet30GeV==509||HTXS_stage1_2_fine_cat_pTjet30GeV==514','HTXS_stage1_2_fine_cat_pTjet30GeV==505||HTXS_stage1_2_fine_cat_pTjet30GeV==510||HTXS_stage1_2_fine_cat_pTjet30GeV==515'] +subcuts = ['HTXS_stage1_1_cat_pTjet30GeV==501','HTXS_stage1_1_cat_pTjet30GeV==502','HTXS_stage1_1_cat_pTjet30GeV==503','HTXS_stage1_1_cat_pTjet30GeV==504','HTXS_stage1_1_cat_pTjet30GeV==505&&HTXS_V_pt<400','HTXS_stage1_1_cat_pTjet30GeV==505&&HTXS_V_pt>=400'] +sampleGroup = ['ggZH_lep_PTV_0_75_hbb','ggZH_lep_PTV_75_150_hbb','ggZH_lep_PTV_150_250_0J_hbb','ggZH_lep_PTV_150_250_GE1J_hbb','ggZH_lep_PTV_250_400_hbb','ggZH_lep_PTV_GT400_hbb'] +xSec = [0.01437] * 6 +SF = [1.0] * 6 cut = 1 [STXS] +Version = 1.1 Signals = +++++ + [Cuts] 0j = (Sum$(Jet_Pt>30&&abs(Jet_eta)<2.4&&&&)==0) +1j = (Sum$(Jet_Pt>30&&abs(Jet_eta)<2.4&&&&)==1) +2j = (Sum$(Jet_Pt>30&&abs(Jet_eta)<2.4&&&&)==2) ge1j = (Sum$(Jet_Pt>30&&abs(Jet_eta)<2.4&&&&)>0) +ge2j = (Sum$(Jet_Pt>30&&abs(Jet_eta)<2.4&&&&)>1) # in plots we might not want to have all the STXS categories separated [VHbbCommon] @@ -86,32 +97,44 @@ GroupNoSTXS = { 'ggZllH_lep_PTV_150_250_0J_hbb':'ggZH', 'ggZllH_lep_PTV_150_250_GE1J_hbb':'ggZH', 'ggZllH_lep_PTV_75_150_hbb':'ggZH', + 'ggZllH_lep_PTV_250_400_hbb':'ggZH', 'ggZllH_lep_PTV_GT250_hbb':'ggZH', + 'ggZllH_lep_PTV_GT400_hbb':'ggZH', 'ggZnnH_lep_PTV_0_75_hbb':'ggZH', 'ggZnnH_lep_PTV_150_250_0J_hbb':'ggZH', 'ggZnnH_lep_PTV_150_250_GE1J_hbb':'ggZH', 'ggZnnH_lep_PTV_75_150_hbb':'ggZH', + 'ggZnnH_lep_PTV_250_400_hbb':'ggZH', 'ggZnnH_lep_PTV_GT250_hbb':'ggZH', + 'ggZnnH_lep_PTV_GT400_hbb':'ggZH', 'WminusH_lep_PTV_0_75_hbb':'WH', 'WminusH_lep_PTV_150_250_0J_hbb':'WH', 'WminusH_lep_PTV_150_250_GE1J_hbb':'WH', 'WminusH_lep_PTV_75_150_hbb':'WH', + 'WminusH_lep_PTV_250_400_hbb':'WH', 'WminusH_lep_PTV_GT250_hbb':'WH', + 'WminusH_lep_PTV_GT400_hbb':'WH', 'WplusH_lep_PTV_0_75_hbb':'WH', 'WplusH_lep_PTV_150_250_0J_hbb':'WH', 'WplusH_lep_PTV_150_250_GE1J_hbb':'WH', 'WplusH_lep_PTV_75_150_hbb':'WH', + 'WplusH_lep_PTV_250_400_hbb':'WH', 'WplusH_lep_PTV_GT250_hbb':'WH', + 'WplusH_lep_PTV_GT400_hbb':'WH', 'ZllH_lep_PTV_0_75_hbb':'ZH', 'ZllH_lep_PTV_150_250_0J_hbb':'ZH', 'ZllH_lep_PTV_150_250_GE1J_hbb':'ZH', 'ZllH_lep_PTV_75_150_hbb':'ZH', + 'ZllH_lep_PTV_250_400_hbb':'ZH', 'ZllH_lep_PTV_GT250_hbb':'ZH', + 'ZllH_lep_PTV_GT400_hbb':'ZH', 'ZnnH_lep_PTV_0_75_hbb':'ZH', 'ZnnH_lep_PTV_150_250_0J_hbb':'ZH', 'ZnnH_lep_PTV_150_250_GE1J_hbb':'ZH', 'ZnnH_lep_PTV_75_150_hbb':'ZH', + 'ZnnH_lep_PTV_250_400_hbb':'ZH', 'ZnnH_lep_PTV_GT250_hbb':'ZH', + 'ZnnH_lep_PTV_GT400_hbb':'ZH', } GroupSimplified = { 'ggZllH_lep_PTV_0_75_hbb': 'ggZH', @@ -163,125 +186,200 @@ GroupSimplified = { 'WZTo1L1Nu2Qnlo_1b':'VV', 'WZTo1L1Nu2Qnlo_2b':'VV', 'ZJetsHT100_0b':'VJets', + 'ZJetsHT100_0b_udsg':'VJets', + 'ZJetsHT100_0b_c':'VJets', 'ZJetsHT100_1b':'VJets', 'ZJetsHT100_2b':'VJets', + 'ZJetsHT200_0b_udsg':'VJets', + 'ZJetsHT200_0b_c':'VJets', 'ZJetsHT200_0b':'VJets', 'ZJetsHT200_1b':'VJets', 'ZJetsHT200_2b':'VJets', + 'ZJetsHT400_0b_udsg':'VJets', + 'ZJetsHT400_0b_c':'VJets', 'ZJetsHT400_0b':'VJets', 'ZJetsHT400_1b':'VJets', 'ZJetsHT400_2b':'VJets', + 'ZJetsHT600_0b_udsg':'VJets', + 'ZJetsHT600_0b_c':'VJets', 'ZJetsHT600_0b':'VJets', 'ZJetsHT600_1b':'VJets', 'ZJetsHT600_2b':'VJets', + 'ZJetsHT800_0b_udsg':'VJets', + 'ZJetsHT800_0b_c':'VJets', 'ZJetsHT800_0b':'VJets', 'ZJetsHT800_1b':'VJets', 'ZJetsHT800_2b':'VJets', + 'ZJetsHT1200_0b_udsg':'VJets', + 'ZJetsHT1200_0b_c':'VJets', 'ZJetsHT1200_0b':'VJets', 'ZJetsHT1200_1b':'VJets', 'ZJetsHT1200_2b':'VJets', + 'ZJetsHT2500_0b_udsg':'VJets', + 'ZJetsHT2500_0b_c':'VJets', 'ZJetsHT2500_0b':'VJets', 'ZJetsHT2500_1b':'VJets', 'ZJetsHT2500_2b':'VJets', + 'ZBJets100_0b_udsg':'VJets', + 'ZBJets100_0b_c':'VJets', 'ZBJets100_0b':'VJets', 'ZBJets100_1b':'VJets', 'ZBJets100_2b':'VJets', + 'ZBJets200_0b_udsg':'VJets', + 'ZBJets200_0b_c':'VJets', 'ZBJets200_0b':'VJets', 'ZBJets200_1b':'VJets', 'ZBJets200_2b':'VJets', + 'ZBGenFilter100_0b_udsg':'VJets', + 'ZBGenFilter100_0b_c':'VJets', 'ZBGenFilter100_0b':'VJets', 'ZBGenFilter100_1b':'VJets', 'ZBGenFilter100_2b':'VJets', + 'ZBGenFilter200_0b_udsg':'VJets', + 'ZBGenFilter200_0b_c':'VJets', 'ZBGenFilter200_0b':'VJets', 'ZBGenFilter200_1b':'VJets', 'ZBGenFilter200_2b':'VJets', + 'WJetsHT0_0b_udsg':'VJets', + 'WJetsHT0_0b_c':'VJets', 'WJetsHT0_0b':'VJets', 'WJetsHT0_1b':'VJets', 'WJetsHT0_2b':'VJets', + 'WJetsHT100_0b_udsg':'VJets', + 'WJetsHT100_0b_c':'VJets', 'WJetsHT100_0b':'VJets', 'WJetsHT100_1b':'VJets', 'WJetsHT100_2b':'VJets', + 'WJetsHT200_0b_udsg':'VJets', + 'WJetsHT200_0b_c':'VJets', 'WJetsHT200_0b':'VJets', 'WJetsHT200_1b':'VJets', 'WJetsHT200_2b':'VJets', + 'WJetsHT400_0b_udsg':'VJets', + 'WJetsHT400_0b_c':'VJets', 'WJetsHT400_0b':'VJets', 'WJetsHT400_1b':'VJets', 'WJetsHT400_2b':'VJets', + 'WJetsHT600_0b_udsg':'VJets', + 'WJetsHT600_0b_c':'VJets', 'WJetsHT600_0b':'VJets', 'WJetsHT600_1b':'VJets', 'WJetsHT600_2b':'VJets', + 'WJetsHT800_0b_udsg':'VJets', + 'WJetsHT800_0b_c':'VJets', 'WJetsHT800_0b':'VJets', 'WJetsHT800_1b':'VJets', 'WJetsHT800_2b':'VJets', + 'WJetsHT1200_0b_udsg':'VJets', + 'WJetsHT1200_0b_c':'VJets', 'WJetsHT1200_0b':'VJets', 'WJetsHT1200_1b':'VJets', 'WJetsHT1200_2b':'VJets', + 'WBJets100_0b_udsg':'VJets', + 'WBJets100_0b_c':'VJets', 'WBJets100_0b':'VJets', 'WBJets100_1b':'VJets', 'WBJets100_2b':'VJets', + 'WBJets200_0b_udsg':'VJets', + 'WBJets200_0b_c':'VJets', 'WBJets200_0b':'VJets', 'WBJets200_1b':'VJets', 'WBJets200_2b':'VJets', + 'WBGenFilter100_0b_udsg':'VJets', + 'WBGenFilter100_0b_c':'VJets', 'WBGenFilter100_0b':'VJets', 'WBGenFilter100_1b':'VJets', 'WBGenFilter100_2b':'VJets', + 'WBGenFilter200_0b_udsg':'VJets', + 'WBGenFilter200_0b_c':'VJets', 'WBGenFilter200_0b':'VJets', 'WBGenFilter200_1b':'VJets', 'WBGenFilter200_2b':'VJets', 'TT_2l2n':'Top', 'TT_h':'Top', 'TT_Sl':'Top', - 'TT':'Top', 'ST_tW_antitop':'Top', 'ST_tW_top':'Top', 'ST_s-channel_4f':'Top', 'ST_t-channel_top_4f':'Top', 'ST_t-channel_antitop_4f':'Top', + 'M4HT100to200_0b_udsg':'VJets', + 'M4HT100to200_0b_c':'VJets', 'M4HT100to200_0b':'VJets', 'M4HT100to200_1b':'VJets', 'M4HT100to200_2b':'VJets', + 'M4HT200to400_0b_udsg':'VJets', + 'M4HT200to400_0b_c':'VJets', 'M4HT200to400_0b':'VJets', 'M4HT200to400_1b':'VJets', 'M4HT200to400_2b':'VJets', + 'M4HT400to600_0b_udsg':'VJets', + 'M4HT400to600_0b_c':'VJets', 'M4HT400to600_0b':'VJets', 'M4HT400to600_1b':'VJets', 'M4HT400to600_2b':'VJets', + 'M4HT600toInf_0b_udsg':'VJets', + 'M4HT600toInf_0b_c':'VJets', 'M4HT600toInf_0b':'VJets', 'M4HT600toInf_1b':'VJets', 'M4HT600toInf_2b':'VJets', + 'DYBJets_100to200_0b_udsg':'VJets', + 'DYBJets_100to200_0b_c':'VJets', 'DYBJets_100to200_0b':'VJets', 'DYBJets_100to200_1b':'VJets', 'DYBJets_100to200_2b':'VJets', + 'DYBJets_200toInf_0b_udsg':'VJets', + 'DYBJets_200toInf_0b_c':'VJets', 'DYBJets_200toInf_0b':'VJets', 'DYBJets_200toInf_1b':'VJets', 'DYBJets_200toInf_2b':'VJets', + 'DYJetsBGenFilter_100to200_0b_udsg':'VJets', + 'DYJetsBGenFilter_100to200_0b_c':'VJets', 'DYJetsBGenFilter_100to200_0b':'VJets', 'DYJetsBGenFilter_100to200_1b':'VJets', 'DYJetsBGenFilter_100to200_2b':'VJets', + 'DYJetsBGenFilter_200toInf_0b_udsg':'VJets', + 'DYJetsBGenFilter_200toInf_0b_c':'VJets', 'DYJetsBGenFilter_200toInf_0b':'VJets', 'DYJetsBGenFilter_200toInf_1b':'VJets', 'DYJetsBGenFilter_200toInf_2b':'VJets', + 'HT0to100ZJets_0b_udsg':'VJets', + 'HT0to100ZJets_0b_c':'VJets', 'HT0to100ZJets_0b':'VJets', 'HT0to100ZJets_1b':'VJets', 'HT0to100ZJets_2b':'VJets', + 'HT100to200ZJets_0b_udsg':'VJets', + 'HT100to200ZJets_0b_c':'VJets', 'HT100to200ZJets_0b':'VJets', 'HT100to200ZJets_1b':'VJets', 'HT100to200ZJets_2b':'VJets', + 'HT1200to2500ZJets_0b_udsg':'VJets', + 'HT1200to2500ZJets_0b_c':'VJets', 'HT1200to2500ZJets_0b':'VJets', 'HT1200to2500ZJets_1b':'VJets', 'HT1200to2500ZJets_2b':'VJets', + 'HT200to400ZJets_0b_udsg':'VJets', + 'HT200to400ZJets_0b_c':'VJets', 'HT200to400ZJets_0b':'VJets', 'HT200to400ZJets_1b':'VJets', 'HT200to400ZJets_2b':'VJets', + 'HT2500toinfZJets_0b_udsg':'VJets', + 'HT2500toinfZJets_0b_c':'VJets', 'HT2500toinfZJets_0b':'VJets', 'HT2500toinfZJets_1b':'VJets', 'HT2500toinfZJets_2b':'VJets', + 'HT400to600ZJets_0b_udsg':'VJets', + 'HT400to600ZJets_0b_c':'VJets', 'HT400to600ZJets_0b':'VJets', 'HT400to600ZJets_1b':'VJets', 'HT400to600ZJets_2b':'VJets', + 'HT600to800ZJets_0b_udsg':'VJets', + 'HT600to800ZJets_0b_c':'VJets', 'HT600to800ZJets_0b':'VJets', 'HT600to800ZJets_1b':'VJets', 'HT600to800ZJets_2b':'VJets', + 'HT800to1200ZJets_0b_udsg':'VJets', + 'HT800to1200ZJets_0b_c':'VJets', 'HT800to1200ZJets_0b':'VJets', 'HT800to1200ZJets_1b':'VJets', 'HT800to1200ZJets_2b':'VJets', diff --git a/python/VHbb2016commonconfig/systematics.ini b/python/VHbb2016commonconfig/systematics.ini index 3d28b3384..9aab382aa 100644 --- a/python/VHbb2016commonconfig/systematics.ini +++ b/python/VHbb2016commonconfig/systematics.ini @@ -8,17 +8,25 @@ Clean = Drop.Drop(dropBranches=['TrigObj_*','nTrigObj','SubJet_*','nSubJet','Pho JetSmearer = JetSmearer.JetSmearer(year='2016') METXY = METXY.METXY(year='2016') +mSDcorr = mSD_sys.mSD_sys(year='2016') +#JECcorr = JECcorrelator.JECcorrelator(year='2016') +JECcorrelator=JECcorrelator.JECcorrelator(year='2016') + +STXSshapeCorrections=STXSshapeCorrections.STXSshapeCorrections(year='2016') METcorr = METcorr.METcorr(year='2016') -isBoosted = isBoosted.isBoosted() +isBoosted = isBoosted.isBoosted(useFlags=True) +#isBoostedVZ = isBoosted.isBoosted(branchName='isBoosted_VZ',cutName='all_BOOST_VZ') +isBoostedVZ = isBoosted.isBoosted(branchName='isBoosted_VZ',cutName='all_BOOST_VZ',useFlags=True,flags=['resolvedCR_VZ','resolvedSR_VZ','boostedCR_VZ','boostedSR_VZ']) +dPhiVH = dPhiVH.dPhiVH(year='2016') # gen level genBstatus = BranchTools.TreeFormulas({'nGenStatus2bHad': {'formula': 'Sum$((int(abs(GenPart_pdgId)/100)==5||int(abs(GenPart_pdgId)/1000)==5)&&GenPart_status==2)', 'type': 'i'}}) isSignal = PerSampleWeight.PerSampleWeight(branchName='isSignal',affectedSampleNames=['WminusH','WplusH','ggZH_Zll','ZH_Zll','ZH_Znunu','ggZH_Znunu'],weightAffected=1.0,weightUnaffected=0.0) isGGZH = PerSampleWeight.PerSampleWeight(branchName='isGGZH',affectedSampleNames=['ggZH_HToBB_ZToNuNu','ggZH_Znunu'],weightAffected=1.0,weightUnaffected=0.0) isWH = PerSampleWeight.PerSampleWeight(branchName='isWH',affectedSampleNames=['WminusH','WplusH'],weightAffected=1.0,weightUnaffected=0.0) -isZH = PerSampleWeight.PerSampleWeight(branchName='isWH',affectedSampleNames=['ZH_Zll','ggZH_Zll','ZH_Znunu','ggZH_Znunu'],weightAffected=1.0,weightUnaffected=0.0) +isZH = PerSampleWeight.PerSampleWeight(branchName='isZH',affectedSampleNames=['ZH_Zll','ggZH_Zll','ZH_Znunu','ggZH_Znunu'],weightAffected=1.0,weightUnaffected=0.0) isData = PerSampleWeight.PerSampleWeight(branchName='isData',affectedSampleNames=['SingleElectron','SingleMuon','DoubleMuon','DoubleEG','MET'],weightAffected=1.0,weightUnaffected=0.0) # sampleIndex and sampleGroup @@ -29,7 +37,10 @@ vLeptons = vLeptons.vLeptons() # b-tag SF for DeepJet / DeepCSV BTagSFDeepCSV = BTagWeightsFromCSV.BTagWeights(calibName='DeepCSV',calibFile='data/btag/DeepCSV_2016LegacySF_V1.csv',method='iterativefit',jetBtagBranchName='Jet_btagDeepB',decorrelatePtEta=True, jetIdCut=2) -BtagSFDeepJet = BTagWeightsFromCSV.BTagWeights(calibName='DeepJet',calibFile='data/btag/DeepJet_2016LegacySF_V1.csv',method='iterativefit',jetBtagBranchName='Jet_btagDeepFlavB',decorrelatePtEta=True, jetIdCut=2) +BTagSFDeepJet = BTagWeightsFromCSV.BTagWeights(calibName='DeepJet',calibFile='data/btag/DeepJet_2016LegacySF_V1.csv',method='iterativefit',jetBtagBranchName='Jet_btagDeepFlavB',decorrelatePtEta=True, jetIdCut=2) + +# double b-tag SF +DoubleBtagSF = DoubleBTagWeightsFromCSV.DoubleBTagWeightsFromCSV(year=2016) # other sf TTweights = TTWeights.TTWeights(nano=True) @@ -66,6 +77,10 @@ systematicsnaming = { ; pT(W) correction 'FitCorrection': 'CMS_vhbb_ptwweights_wlf_13TeV', 'FitCorrectionHF': 'CMS_vhbb_ptwweights_whf_13TeV', +; THU acc shape uncertainty + 'THU_ZH_acc': 'THU_ZH_acc', + 'THU_WH_acc': 'THU_WH_acc', + 'THU_ggZH_acc': 'THU_ggZH_acc', ; NLO reweighting 'CMS_vhbb_vjetnlodetajjrw_13TeV': 'CMS_vhbb_vjetnlodetajjrw_13TeV', ;JER/JES sys @@ -108,36 +123,49 @@ systematicsnaming = { "jer": "CMS_res_j_13TeV_2016", ; jet regression 'jerReg': 'CMS_res_j_reg_13TeV_2016', + 'jerRegScale': 'CMS_res_j_regScale13TeV_2016', + 'jerRegSmear': 'CMS_res_j_regSmear13TeV_2016', ; jet energy scale - "jesTotal": "CMS_jesAbsoluteStat", - "jesAbsoluteStat": "CMS_scale_j_AbsoluteStat_13TeV_2016", - "jesAbsoluteScale": "CMS_scale_j_AbsoluteScale_13TeV_2016", - "jesAbsoluteFlavMap": "CMS_scale_j_AbsoluteFlavMap_13TeV_2016", - "jesAbsoluteMPFBias": "CMS_scale_j_AbsoluteMPFBias_13TeV_2016", - "jesFragmentation": "CMS_scale_j_Fragmentation_13TeV_2016", - "jesSinglePionECAL": "CMS_scale_j_SinglePionECAL_13TeV_2016", - "jesSinglePionHCAL": "CMS_scale_j_SinglePionHCAL_13TeV_2016", - "jesFlavorQCD": "CMS_scale_j_FlavorQCD_13TeV_2016", - "jesRelativeJEREC1": "CMS_scale_j_RelativeJEREC1_13TeV_2016", - "jesRelativeJEREC2": "CMS_scale_j_RelativeJEREC2_13TeV_2016", - "jesRelativeJERHF": "CMS_scale_j_RelativeJERHF_13TeV_2016", - "jesRelativePtBB": "CMS_scale_j_RelativePtBB_13TeV_2016", - "jesRelativePtEC1": "CMS_scale_j_RelativePtEC1_13TeV_2016", - "jesRelativePtEC2": "CMS_scale_j_RelativePtEC2_13TeV_2016", - "jesRelativePtHF": "CMS_scale_j_RelativePtHF_13TeV_2016", - "jesRelativeBal": "CMS_scale_j_RelativeBal_13TeV_2016", - "jesRelativeFSR": "CMS_scale_j_RelativeFSR_13TeV_2016", - "jesRelativeStatFSR": "CMS_scale_j_RelativeStatFSR_13TeV_2016", - "jesRelativeStatEC": "CMS_scale_j_RelativeStatEC_13TeV_2016", - "jesRelativeStatHF": "CMS_scale_j_RelativeStatHF_13TeV_2016", - "jesPileUpDataMC": "CMS_scale_j_PileUpDataMC_13TeV_2016", - "jesPileUpPtRef": "CMS_scale_j_PileUpPtRef_13TeV_2016", - "jesPileUpPtBB": "CMS_scale_j_PileUpPtBB_13TeV_2016", - "jesPileUpPtEC1": "CMS_scale_j_PileUpPtEC1_13TeV_2016", - "jesPileUpPtEC2": "CMS_scale_j_PileUpPtEC2_13TeV_2016", - "jesPileUpPtHF": "CMS_scale_j_PileUpPtHF_13TeV_2016", - "jesPileUpMuZero": "CMS_scale_j_PileUpMuZero_13TeV_2016", - "jesPileUpEnvelope": "CMS_scale_j_PileUpEnvelope_13TeV_2016", +; "jesTotal": "CMS_jesAbsoluteStat", +; "jesAbsoluteStat": "CMS_scale_j_AbsoluteStat_13TeV_2016", +; "jesAbsoluteScale": "CMS_scale_j_AbsoluteScale_13TeV_2016", +; "jesAbsoluteFlavMap": "CMS_scale_j_AbsoluteFlavMap_13TeV_2016", +; "jesAbsoluteMPFBias": "CMS_scale_j_AbsoluteMPFBias_13TeV_2016", +; "jesFragmentation": "CMS_scale_j_Fragmentation_13TeV_2016", +; "jesSinglePionECAL": "CMS_scale_j_SinglePionECAL_13TeV_2016", +; "jesSinglePionHCAL": "CMS_scale_j_SinglePionHCAL_13TeV_2016", +; "jesFlavorQCD": "CMS_scale_j_FlavorQCD_13TeV_2016", +; "jesRelativeJEREC1": "CMS_scale_j_RelativeJEREC1_13TeV_2016", +; "jesRelativeJEREC2": "CMS_scale_j_RelativeJEREC2_13TeV_2016", +; "jesRelativeJERHF": "CMS_scale_j_RelativeJERHF_13TeV_2016", +; "jesRelativePtBB": "CMS_scale_j_RelativePtBB_13TeV_2016", +; "jesRelativePtEC1": "CMS_scale_j_RelativePtEC1_13TeV_2016", +; "jesRelativePtEC2": "CMS_scale_j_RelativePtEC2_13TeV_2016", +; "jesRelativePtHF": "CMS_scale_j_RelativePtHF_13TeV_2016", +; "jesRelativeBal": "CMS_scale_j_RelativeBal_13TeV_2016", +; "jesRelativeFSR": "CMS_scale_j_RelativeFSR_13TeV_2016", +; "jesRelativeStatFSR": "CMS_scale_j_RelativeStatFSR_13TeV_2016", +; "jesRelativeStatEC": "CMS_scale_j_RelativeStatEC_13TeV_2016", +; "jesRelativeStatHF": "CMS_scale_j_RelativeStatHF_13TeV_2016", +; "jesPileUpDataMC": "CMS_scale_j_PileUpDataMC_13TeV_2016", +; "jesPileUpPtRef": "CMS_scale_j_PileUpPtRef_13TeV_2016", +; "jesPileUpPtBB": "CMS_scale_j_PileUpPtBB_13TeV_2016", +; "jesPileUpPtEC1": "CMS_scale_j_PileUpPtEC1_13TeV_2016", +; "jesPileUpPtEC2": "CMS_scale_j_PileUpPtEC2_13TeV_2016", +; "jesPileUpPtHF": "CMS_scale_j_PileUpPtHF_13TeV_2016", +; "jesPileUpMuZero": "CMS_scale_j_PileUpMuZero_13TeV_2016", +; "jesPileUpEnvelope": "CMS_scale_j_PileUpEnvelope_13TeV_2016", + 'jesAbsolute' : 'CMS_scale_j_Absolute_13TeV', + 'jesAbsolute_2016' : 'CMS_scale_j_Absolute_2016_13TeV', + 'jesBBEC1' : 'CMS_scale_j_BBEC1_13TeV', + 'jesBBEC1_2016' : 'CMS_scale_j_BBEC1_2016_13TeV', + 'jesEC2' : 'CMS_scale_j_EC2_13TeV', + 'jesEC2_2016' : 'CMS_scale_j_EC2_2016_13TeV', + 'jesFlavorQCD' : 'CMS_scale_j_FlavorQCD_13TeV', + 'jesHF' : 'CMS_scale_j_HF_13TeV', + 'jesHF_2016' : 'CMS_scale_j_HF_2016_13TeV', + 'jesRelativeBal' : 'CMS_scale_j_RelativeBal_13TeV', + 'jesRelativeSample_2016' : 'CMS_scale_j_RelativeSample_2016_13TeV', ; unclustered energy "unclustEn": "CMS_scale_met_unclustered_13TeV", ; DeepCSV @@ -413,11 +441,14 @@ colorDict: { 'ZHbb':632,\ 'VJets':401,\ 'ZJets_0b':401,'ZJets_1b':41,'ZJets_2b':5,\ - 'ZJets_0b_nlo':401,'Zb_nlo':41,'Zbb_nlo':5,\ 'ZJets_0b_udsg':401,\ 'ZJets_0b_c':395,\ + 'ZJets_0b_nlo':401,'Zb_nlo':41,'Zbb_nlo':5,\ 'ST':598,\ 'TT':596,\ + 'TT_Sl':596,\ + 'TT_2l2n':594,\ + 'TT_h':590,\ 'Top':596,\ 'VVlight':920+2,'VV2b':920+1,\ 'VV':920+1,\ @@ -426,12 +457,18 @@ colorDict: { 'ggZH':632-7,\ 'WH': 632+2,\ 'WJets_0b': 820-6,\ - 'WJets_1b': 820-5,\ - 'WJets_2b': 820,\ + 'WJets_0b_udsg': 820-6,\ + 'WJets_0b_c': 435,\ 'WJets_0b_2c': 429,\ + 'WJets_1b': 820-5,\ 'WJets_1b_udsg': 820-5,\ 'WJets_1b_c': 840-7,\ + 'WJets_2b': 820,\ 'QCD': 613,\ + 'QCDEME': 616,\ + 'QCDb': 910,\ + 'QCDbcToE': 891,\ + 'QCDPt': 891,\ 'VVLF': 920,\ 'VVHF': 920+1,\ 'ZJets100': 880,\ @@ -442,9 +479,18 @@ colorDict: { 'ZJets1200': 433,\ 'ZJets2500': 872,\ 'ZJetsB100': 846,\ - 'ZJetsB200': 791 + 'ZJetsB200': 791,\ + 'DYJets0': 0,\ + 'DYJets100': 880,\ + 'DYJets200': 870,\ + 'DYJets400': 827,\ + 'DYJets600': 806,\ + 'DYJets800': 907,\ + 'DYJets1200': 433,\ + 'DYJets2500': 872,\ } + typLegendDict: { 'VJets':'V+jets',\ 'ZJets_0b':'Z+udscg','ZJets_1b':'Z + b','ZJets_2b':'Z + b#bar{b}',\ @@ -461,14 +507,18 @@ typLegendDict: { 'ggZH': 'ggZH(b#bar{b})', 'WH': 'WH(b#bar{b})', 'WJets_0b': 'W+udscg', + 'WJets_0b_udsg': 'W+udsg', + 'WJets_0b_c': 'W+c', 'WJets_0b_2c': 'W+c#bar{c}', + 'WJets_1b': 'W+b', 'WJets_1b_udsg': 'W+bl', 'WJets_1b_c': 'W+bc', - 'WJets_1b': 'W+b', 'WJets_2b': 'W+b#bar{b}', 'QCD': 'QCD', + 'QCDPt': 'QCD (Pt-binned)', } + Dict = { 'ZH': 'ZH_hbb', 'WH': 'WH_hbb', @@ -478,14 +528,13 @@ Dict = { 'ZJets_0b_c': 'Zj0b_c', 'ZJets_1b': 'Zj1b', 'ZJets_2b': 'Zj2b', - 'WJets_0b': 'Wj0b', 'WJets_0b_udsg': 'Wj0b_udsg', 'WJets_0b_c': 'Wj0b_c', 'WJets_0b_2c': 'Wj0b_2c', 'WJets_1b': 'Wj1b', - 'WJets_2b': 'Wj2b', 'WJets_1b_udsg': 'Wj1b_udsg', 'WJets_1b_c': 'Wj1b_c', + 'WJets_2b': 'Wj2b', 'TT': 'TT', 'ST': 's_Top', 'QCD': 'QCD', @@ -495,11 +544,20 @@ Dict = { 'Zbb': 'Zj2b', } + [Tools] CheckDuplicateEvents = CheckDuplicateEvents.CheckDuplicateEvents() [Weights] +#----- THU acc shape -------- # + +THU_ZH_acc_UP: *THU_ZH_accUp +THU_ZH_acc_DOWN: *THU_ZH_accDown +THU_WH_acc_UP: *THU_WH_accUp +THU_WH_acc_DOWN: *THU_WH_accDown +THU_ggZH_acc_UP: *THU_ggZH_accUp +THU_ggZH_acc_DOWN: *THU_ggZH_accDown #----- LHE scale ------# CMS_LHE_weights_scale_muR_ZH_UP: *LHEScaleWeight[7] @@ -989,6 +1047,11 @@ CMS_bTagWeightDeepBcErr2_13TeV_pt4_eta0_DOWN = *(*(+!*(bTagWeightDeepCSV_cErr2_pt4_eta2Down)) CMS_bTagWeightDeepBcErr2_13TeV_pt4_eta2_DOWN = *(+!*(bTagWeightDeepCSV_cErr2_pt4_eta3Down)) +CMS_vhbb_Vpt150_13TeV_UP = *(1.0+0.005*(min(250.0,max(V_pt,75.0))-150.0)) +CMS_vhbb_Vpt150_13TeV_DOWN = *(1.0-0.005*(min(250.0,max(V_pt,75.0))-150.0)) +CMS_vhbb_Vpt250_13TeV_UP = *(1.0+0.005*(min(400,max(V_pt,150))-250.0)) +CMS_vhbb_Vpt250_13TeV_DOWN = *(1.0-0.005*(min(400,max(V_pt,150))-250.0)) + #----- btag -----# btagWeight_jes_pt0_eta1_UP: *_JES_pt0_eta1Up btagWeight_jes_pt0_eta2_UP: *_JES_pt0_eta2Up @@ -1280,6 +1343,30 @@ btagWeight_cferr2_pt4_eta1_DOWN: **_cErr2_pt4_eta2Down btagWeight_cferr2_pt4_eta3_DOWN: *_cErr2_pt4_eta3Down +# DeepAK8 MD bb vs light +# the old behavior can be reproduced with: --set='General.DeepAK8weightApplies=(isBoosted)' +bTagWeightDoubleB_mp_pt200to300_Down: ()*(1.0+*(-1.0+1.0/bTagWeightDoubleB*bTagWeightDoubleB_mp_pt200to300_Down)) +bTagWeightDoubleB_mp_pt300to400_Down: ()*(1.0+*(-1.0+1.0/bTagWeightDoubleB*bTagWeightDoubleB_mp_pt300to400_Down)) +bTagWeightDoubleB_mp_pt400to500_Down: ()*(1.0+*(-1.0+1.0/bTagWeightDoubleB*bTagWeightDoubleB_mp_pt400to500_Down)) +bTagWeightDoubleB_mp_pt500to600_Down: ()*(1.0+*(-1.0+1.0/bTagWeightDoubleB*bTagWeightDoubleB_mp_pt500to600_Down)) +bTagWeightDoubleB_mp_pt600toInf_Down: ()*(1.0+*(-1.0+1.0/bTagWeightDoubleB*bTagWeightDoubleB_mp_pt600toInf_Down)) +bTagWeightDoubleB_hp_pt200to300_Down: ()*(1.0+*(-1.0+1.0/bTagWeightDoubleB*bTagWeightDoubleB_hp_pt200to300_Down)) +bTagWeightDoubleB_hp_pt300to400_Down: ()*(1.0+*(-1.0+1.0/bTagWeightDoubleB*bTagWeightDoubleB_hp_pt300to400_Down)) +bTagWeightDoubleB_hp_pt400to500_Down: ()*(1.0+*(-1.0+1.0/bTagWeightDoubleB*bTagWeightDoubleB_hp_pt400to500_Down)) +bTagWeightDoubleB_hp_pt500to600_Down: ()*(1.0+*(-1.0+1.0/bTagWeightDoubleB*bTagWeightDoubleB_hp_pt500to600_Down)) +bTagWeightDoubleB_hp_pt600toInf_Down: ()*(1.0+*(-1.0+1.0/bTagWeightDoubleB*bTagWeightDoubleB_hp_pt600toInf_Down)) + +bTagWeightDoubleB_mp_pt200to300_Up: ()*(1.0+*(-1.0+1.0/bTagWeightDoubleB*bTagWeightDoubleB_mp_pt200to300_Up)) +bTagWeightDoubleB_mp_pt300to400_Up: ()*(1.0+*(-1.0+1.0/bTagWeightDoubleB*bTagWeightDoubleB_mp_pt300to400_Up)) +bTagWeightDoubleB_mp_pt400to500_Up: ()*(1.0+*(-1.0+1.0/bTagWeightDoubleB*bTagWeightDoubleB_mp_pt400to500_Up)) +bTagWeightDoubleB_mp_pt500to600_Up: ()*(1.0+*(-1.0+1.0/bTagWeightDoubleB*bTagWeightDoubleB_mp_pt500to600_Up)) +bTagWeightDoubleB_mp_pt600toInf_Up: ()*(1.0+*(-1.0+1.0/bTagWeightDoubleB*bTagWeightDoubleB_mp_pt600toInf_Up)) +bTagWeightDoubleB_hp_pt200to300_Up: ()*(1.0+*(-1.0+1.0/bTagWeightDoubleB*bTagWeightDoubleB_hp_pt200to300_Up)) +bTagWeightDoubleB_hp_pt300to400_Up: ()*(1.0+*(-1.0+1.0/bTagWeightDoubleB*bTagWeightDoubleB_hp_pt300to400_Up)) +bTagWeightDoubleB_hp_pt400to500_Up: ()*(1.0+*(-1.0+1.0/bTagWeightDoubleB*bTagWeightDoubleB_hp_pt400to500_Up)) +bTagWeightDoubleB_hp_pt500to600_Up: ()*(1.0+*(-1.0+1.0/bTagWeightDoubleB*bTagWeightDoubleB_hp_pt500to600_Up)) +bTagWeightDoubleB_hp_pt600toInf_Up: ()*(1.0+*(-1.0+1.0/bTagWeightDoubleB*bTagWeightDoubleB_hp_pt600toInf_Up)) + [LimitGeneral] normalizeShapes = ['CMS_vhbb_Vjets_pdfwgt_0lep_Up','CMS_vhbb_Vjets_pdfwgt_0lep_Down','CMS_vhbb_Vjets_pdfwgt_1lep_Up','CMS_vhbb_Vjets_pdfwgt_1lep_Down','CMS_vhbb_Vjets_pdfwgt_2lep_Up','CMS_vhbb_Vjets_pdfwgt_2lep_Down','CMS_vhbb_vjetnlodetajjrw_13TeV_UP','CMS_vhbb_vjetnlodetajjrw_13TeV_DOWN'] diff --git a/python/VHbb2016commonconfig/vhbbPlotDef.ini b/python/VHbb2016commonconfig/vhbbPlotDef.ini index 75a446b2c..7e0882615 100644 --- a/python/VHbb2016commonconfig/vhbbPlotDef.ini +++ b/python/VHbb2016commonconfig/vhbbPlotDef.ini @@ -80,7 +80,7 @@ xAxis = LHE_HT nBins = 100 min = 0 max = 2000 -log = True +log = False [plotDef:LHE_Vpt] relPath = LHE_Vpt @@ -303,28 +303,28 @@ min = 0 max = 200 [plotDef:Hj0_DeepCSV] -xAxis = max DeepCSV +xAxis = max btag relPath = Jet_btagDeepB[] nBins = 25 min = 0 max = 1 [plotDef:Hj1_DeepCSV] -xAxis = min DeepCSV +xAxis = min btag relPath = Jet_btagDeepB[] nBins = 25 min = 0 max = 1 [plotDef:Hj0_DeepCSVzoom] -xAxis = max DeepCSV +xAxis = max btag relPath = Jet_btagDeepB[] nBins = 25 min = 0.9 max = 1 [plotDef:Hj1_DeepCSVzoom] -xAxis = min DeepCSV +xAxis = min btag relPath = Jet_btagDeepB[] nBins = 25 min = 0.9 @@ -855,6 +855,13 @@ nBins = 20 min = -3.1416 max = 3.1416 +[plotDef:METphi_uncorrected] +relPath = MET_Phi_uncorrected +xAxis = #phi(MET) (no XY) +nBins = 20 +min = -3.1416 +max = 3.1416 + [plotDef:corrMETphi] relPath = METcorr_phi xAxis = #phi(corrMET) @@ -1390,6 +1397,20 @@ drawOption = HIST;TEXT0 #----- Boosted analysis -----# +[plotDef:FatJet_Pt] +relPath = FatJet_Pt[Hbb_fjidx] +xAxis = FatJet p_{T} [GeV] +nBins = 50 +min = 0 +max = 800 + +[plotDef:FatJet_mSD] +#relPath = (FatJet_Msoftdrop[Hbb_fjidx]*(isData+(1-isData)*(0.93))) +relPath = FatJet_Msoftdrop[Hbb_fjidx] +xAxis = FatJet mSD [GeV] +nBins = 50 +min = 0 +max = 300 [plotDef:DeepAK8_bbVSlight] relPath = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] @@ -1462,3 +1483,28 @@ max = 1 ;log = True log = False +[plotDef:Vpt250_300_400] +relPath = V_pt +xAxis = p_{T} (V) [GeV] +nBins = 3 +min = 250 +max = 600 +binList = [250.0,300.0,400.0,600.0] + +[plotDef:Vpt250_300_400_600_800] +relPath = V_pt +xAxis = p_{T} (V) [GeV] +nBins = 5 +min = 250 +max = 1000 +binList = [250.0,300.0,400.0,600.0,800.0,1000.0] +log = True + +[plotDef:Vpt250_300_400_600_800_1000] +relPath = V_pt +xAxis = p_{T} (V) [GeV] +nBins = 6 +min = 250 +max = 2000 +binList = [250.0,300.0,400.0,600.0,800.0,1000.0,2000.0] +log = True diff --git a/python/VHbb2017commonconfig/CR_V5_V11_overlap_new.pickle b/python/VHbb2017commonconfig/CR_V5_V11_overlap_new.pickle new file mode 100644 index 000000000..aeec08a1d Binary files /dev/null and b/python/VHbb2017commonconfig/CR_V5_V11_overlap_new.pickle differ diff --git a/python/VHbb2017commonconfig/NormOverlap.txt b/python/VHbb2017commonconfig/NormOverlap.txt new file mode 100644 index 000000000..6606b6325 --- /dev/null +++ b/python/VHbb2017commonconfig/NormOverlap.txt @@ -0,0 +1,81 @@ +SR_high1_Znn_BOOST: 25.0/2178.0 +SR_high1_Znn: 687.0/1787.0 +SR_high2_Znn_BOOST: 1.0/493.0 +SR_high2_Znn: 54.0/132.0 +SR_med_Znn_0j: 1448.0/3517.0 +SR_med_Znn_ge1j: 1199.0/3942.0 +Zhf_high_Znn_BOOST: 27.0/2970.0 +Zhf_high_Znn: 392.0/3508.0 +Zhf_med_Znn: 1718.0/13149.0 +Zlf_high_Znn_BOOST: 406.0/79789.0 +Zlf_high_Znn: 2619.0/3287.0 +Zlf_med_Znn: 7027.0/9341.0 +ttbar_high_Znn_BOOST: 16.0/2250.0 +ttbar_high_Znn: 0.0/915.0 +ttbar_med_Znn: 1.0/3250.0 +SR_high1_Wen_BOOST: 14.0/2127.0 +SR_high1_Wen: 849.0/1826.0 +SR_high1_Wmn: 1249.0/2464.0 +SR_high1_Wmn_BOOST: 12.0/2732.0 +SR_high2_Wen_BOOST: 2.0/537.0 +SR_high2_Wen: 46.0/106.0 +SR_high2_Wmn_BOOST: 4.0/665.0 +SR_high2_Wmn: 76.0/162.0 +SR_med_Wen: 6960.0/13949.0 +SR_med_Wmn: 10144.0/18798.0 +ttbar_high_Wen_BOOST: 677.0/4127.0 +ttbar_high_Wen: 0.0/10894.0 +ttbar_high_Wmn_BOOST: 1000.0/5239.0 +ttbar_high_Wmn: 0.0/13808.0 +ttbar_med_Wen: 34127.0/45244.0 +ttbar_med_Wmn: 48997.0/60000.0 +Whf_high_Wen_BOOST: 340.0/2345.0 +Whf_high_Wen: 6876.0/4103.0 +Whf_high_Wmn_BOOST: 478.0/2934.0 +Whf_high_Wmn: 9504.0/5370.0 +Whf_med_Wen: 14846.0/24941.0 +Whf_med_Wmn: 22849.0/34502.0 +Wlf_high_Wen_BOOST: 1433.0/40956.0 +Wlf_high_Wen: 22404.0/27731.0 +Wlf_high_Wmn_BOOST: 1949.0/50184.0 +Wlf_high_Wmn: 33098.0/36717.0 +Wlf_med_Wen: 98915.0/127417.0 +Wlf_med_Wmn: 148246.0/170543.0 +SR_high1_Zee_BOOST: 5.0/78.0 +SR_high1_Zee: 65.0/130.0 +SR_high1_Zmm_BOOST: 6.0/106.0 +SR_high1_Zmm: 96.0/174.0 +SR_high2_Zee_BOOST: 2.0/29.0 +SR_high2_Zee: 8.0/13.0 +SR_high2_Zmm_BOOST: 1.0/31.0 +SR_high2_Zmm: 12.0/16.0 +SR_low_Zee: 1579.0/2761.0 +SR_low_Zmm: 2599.0/4133.0 +SR_med_Zee_0j: 161.0/273.0 +SR_med_Zee_ge1j: 169.0/327.0 +SR_med_Zmm_0j: 231.0/354.0 +SR_med_Zmm_ge1j: 224.0/413.0 +ttbar_high_Zee_BOOST: 20.0/87.0 +ttbar_high_Zee: 103.0/118.0 +ttbar_high_Zmm_BOOST: 25.0/122.0 +ttbar_high_Zmm: 169.0/169.0 +ttbar_low_Zee: 10949.0/12300.0 +ttbar_low_Zmm: 18237.0/18333.0 +ttbar_med_Zee: 1100.0/1240.0 +ttbar_med_Zmm: 1707.0/1717.0 +Zhf_high_Zee_BOOST: 7.0/123.0 +Zhf_high_Zee: 72.0/222.0 +Zhf_high_Zmm_BOOST: 8.0/175.0 +Zhf_high_Zmm: 104.0/251.0 +Zhf_low_Zee: 1697.0/3537.0 +Zhf_low_Zmm: 2658.0/5029.0 +Zhf_med_Zee: 383.0/932.0 +Zhf_med_Zmm: 637.0/1245.0 +Zlf_high_Zee_BOOST: 33.0/1018.0 +Zlf_high_Zee: 1229.0/1717.0 +Zlf_high_Zmm_BOOST: 35.0/1320.0 +Zlf_high_Zmm: 1735.0/2213.0 +Zlf_low_Zee: 30348.0/41833.0 +Zlf_low_Zmm: 47669.0/59966.0 +Zlf_med_Zee: 6128.0/8612.0 +Zlf_med_Zmm: 9100.0/11480.0 diff --git a/python/VHbb2017commonconfig/SR_V5_V11_overlap_new.pickle b/python/VHbb2017commonconfig/SR_V5_V11_overlap_new.pickle new file mode 100644 index 000000000..a2c0b1ce4 Binary files /dev/null and b/python/VHbb2017commonconfig/SR_V5_V11_overlap_new.pickle differ diff --git a/python/VHbb2017commonconfig/general.ini b/python/VHbb2017commonconfig/general.ini index 56e125cfd..32bbe2c3f 100644 --- a/python/VHbb2017commonconfig/general.ini +++ b/python/VHbb2017commonconfig/general.ini @@ -86,7 +86,8 @@ diJetPhi = _phi diJetEta = _eta # default jet definition -Jet_tight = (Jet_puId>6||Jet_Pt>50)&&Jet_jetId>4&&Jet_lepFilter +#Jet_tight = (Jet_puId>6||Jet_Pt>50)&&Jet_jetId>4&&Jet_lepFilter +Jet_tight = (Jet_puId>6||Jet_Pt>50)&&Jet_jetId>1&&Jet_lepFilter Jet_additional = Iteration$!=&&Iteration$!= #------------------------------------------------- diff --git a/python/VHbb2017commonconfig/samples_mc.ini b/python/VHbb2017commonconfig/samples_mc.ini index 208321c72..05b1186d2 100644 --- a/python/VHbb2017commonconfig/samples_mc.ini +++ b/python/VHbb2017commonconfig/samples_mc.ini @@ -107,30 +107,31 @@ NLOweightAT = (1.0+(sampleIndex==4000||sampleIndex==4100||sampleIndex==4200||sam # EXCL: use b-enriched exclusively in their phase-space (throw away overlap) # V11: use both with reweighting to have same event weights to maximize stats (a lot more stats for boosted!) -#MethodWJ = OFF +#MethodWJ = NLOst #MethodWJ = V13 MethodWJ = EXCL #MethodWJ = V11 #MethodWJ = -#MethodZJ = OFF +#MethodZJ = NLO MethodZJ = EXCL #MethodZJ = V11 #MethodZJ = V13 #MethodZJ = -#MethodDY = OFF +#MethodDY = NLOst #MethodDY = NOHT MethodDY = EXCL +#MethodDY = NLOincl #MethodDY = V11 #MethodDY = V13 #MethodDY = # differential reweighting of b-enriched/filtered samples to inclusive+ht binned -#ReweightLHEVpt = ON +ReweightLHEVpt = ON #ReweightLHEVpt = NEW # normlization reweighting of b-enriched/filtered samples to inclusive+ht binned -ReweightLHEVpt = OFF +#ReweightLHEVpt = OFF #weightMinJetPt_DY = (1.192-0.00422*min(min(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered),120.0)) #weightMinJetPt_WJ = (1.137-0.00218*min(min(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered),120.0)) @@ -153,6 +154,21 @@ WJB100_NOHT = 0.0 WJB200_NOHT = 0.0 WJGBF100_NOHT = 0.0 WJGBF200_NOHT = 0.0 +W1nlo0_NOHT = 0.0 +W1nlo50_NOHT = 0.0 +W1nlo100_NOHT = 0.0 +W1nlo150_NOHT = 0.0 +W1nlo250_NOHT = 0.0 +W1nlo400_NOHT = 0.0 +W2nlo0_NOHT = 0.0 +W2nlo50_NOHT = 0.0 +W2nlo100_NOHT = 0.0 +W2nlo150_NOHT = 0.0 +W2nlo250_NOHT = 0.0 +W2nlo400_NOHT = 0.0 +WJnlo_0J_NOHT = 0.0 +WJnlo_1J_NOHT = 0.0 +WJnlo_2J_NOHT = 0.0 WJincl_BE = 0.0 WJ70_BE = 0.0 @@ -167,6 +183,21 @@ WJB100_BE = 1.0 WJB200_BE = 1.0 WJGBF100_BE = 1.0 WJGBF200_BE = 1.0 +W1nlo0_BE = 0.0 +W1nlo50_BE = 0.0 +W1nlo100_BE = 0.0 +W1nlo150_BE = 0.0 +W1nlo250_BE = 0.0 +W1nlo400_BE = 0.0 +W2nlo0_BE = 0.0 +W2nlo50_BE = 0.0 +W2nlo100_BE = 0.0 +W2nlo150_BE = 0.0 +W2nlo250_BE = 0.0 +W2nlo400_BE = 0.0 +WJnlo_0J_BE = 0.0 +WJnlo_1J_BE = 0.0 +WJnlo_2J_BE = 0.0 WJincl_OFF = (LHE_HT<70) WJ70_OFF = (LHE_HT>=70&&LHE_HT<100) @@ -181,9 +212,86 @@ WJB100_OFF = 0.0 WJB200_OFF = 0.0 WJGBF100_OFF = 0.0 WJGBF200_OFF = 0.0 - -WJincl_EXCL = (((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100)&&LHE_HT<70) -WJ70_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) +W1nlo0_OFF = 0.0 +W1nlo50_OFF = 0.0 +W1nlo100_OFF = 0.0 +W1nlo150_OFF = 0.0 +W1nlo250_OFF = 0.0 +W1nlo400_OFF = 0.0 +W2nlo0_OFF = 0.0 +W2nlo50_OFF = 0.0 +W2nlo100_OFF = 0.0 +W2nlo150_OFF = 0.0 +W2nlo250_OFF = 0.0 +W2nlo400_OFF = 0.0 +WJnlo_0J_OFF = 0.0 +WJnlo_1J_OFF = 0.0 +WJnlo_2J_OFF = 0.0 + +WJincl_NLO = 0.0 +WJ70_NLO = 0.0 +WJ100_NLO = 0.0 +WJ200_NLO = 0.0 +WJ400_NLO = 0.0 +WJ600_NLO = 0.0 +WJ800_NLO = 0.0 +WJ1200_NLO = 0.0 +WJ2500_NLO = 0.0 +WJB100_NLO = 0.0 +WJB200_NLO = 0.0 +WJGBF100_NLO = 0.0 +WJGBF200_NLO = 0.0 +W1nlo0_NLO = (LHE_Vpt<50) +W1nlo50_NLO = (LHE_Vpt>=50&&LHE_Vpt<150) +W1nlo100_NLO = 0.0 +#TODO: how to stitch 50To150 and 100To150 nlo samples? +W1nlo150_NLO = (LHE_Vpt>=150&&LHE_Vpt<250) +W1nlo250_NLO = (LHE_Vpt>=250&&LHE_Vpt<400) +W1nlo400_NLO = (LHE_Vpt>=400) +W2nlo0_NLO = (LHE_Vpt<50) +W2nlo50_NLO = (LHE_Vpt>=50&&LHE_Vpt<150) +W2nlo100_NLO = 0.0 +#TODO: how to stitch 50To150 and 100To150 nlo samples? +W2nlo150_NLO = (LHE_Vpt>=150&&LHE_Vpt<250) +W2nlo250_NLO = (LHE_Vpt>=250&&LHE_Vpt<400) +W2nlo400_NLO = (LHE_Vpt>=400) +# TODO: compute stitching weights +WJnlo_0J_NLO = 0.0 +WJnlo_1J_NLO = 0.0 +WJnlo_2J_NLO = 0.0 + +WJincl_NLOst = 0.0 +WJ70_NLOst = 0.0 +WJ100_NLOst = 0.0 +WJ200_NLOst = 0.0 +WJ400_NLOst = 0.0 +WJ600_NLOst = 0.0 +WJ800_NLOst = 0.0 +WJ1200_NLOst = 0.0 +WJ2500_NLOst = 0.0 +WJB100_NLOst = 0.0 +WJB200_NLOst = 0.0 +WJGBF100_NLOst = 0.0 +WJGBF200_NLOst = 0.0 +W1nlo0_NLOst = (LHE_NpNLO==1&&LHE_Vpt<50)*0.03515 +W1nlo50_NLOst = (LHE_NpNLO==1&&LHE_Vpt>=100&&LHE_Vpt<150)*0.21058 + (LHE_NpNLO==1&&LHE_Vpt>=50&&LHE_Vpt<100)*0.37023 +W1nlo100_NLOst = (LHE_NpNLO==1&&LHE_Vpt>=100&&LHE_Vpt<150)*0.43480 +W1nlo150_NLOst = (LHE_NpNLO==1&&LHE_Vpt>=250&&LHE_Vpt<400)*0.00001 + (LHE_NpNLO==1&&LHE_Vpt>=150&&LHE_Vpt<250)*0.99485 +W1nlo250_NLOst = (LHE_NpNLO==1&&LHE_Vpt>=250&&LHE_Vpt<400)*0.90715 +W1nlo400_NLOst = (LHE_NpNLO==1&&LHE_Vpt>=400)*0.99934 +W2nlo0_NLOst = (LHE_NpNLO==2&&LHE_Vpt<50)*0.03392 +W2nlo50_NLOst = (LHE_NpNLO==2&&LHE_Vpt>=50&&LHE_Vpt<100)*0.09811 + (LHE_NpNLO==2&&LHE_Vpt>=100&&LHE_Vpt<150)*0.07508 +W2nlo100_NLOst = (LHE_NpNLO==2&&LHE_Vpt>=100&&LHE_Vpt<150)*0.22761 +W2nlo150_NLOst = (LHE_NpNLO==2&&LHE_Vpt>=150&&LHE_Vpt<250)*0.29307 +W2nlo250_NLOst = (LHE_NpNLO==2&&LHE_Vpt>=250&&LHE_Vpt<400)*0.98661 +W2nlo400_NLOst = (LHE_NpNLO==2&&LHE_Vpt>=400)*0.89133 +WJnlo_0J_NLOst = (LHE_NpNLO==0&&LHE_Vpt<50) + (LHE_NpNLO==0&&LHE_Vpt>=50&&LHE_Vpt<100) +WJnlo_1J_NLOst = (LHE_NpNLO==1&&LHE_Vpt<50)*0.96485 + (LHE_NpNLO==1&&LHE_Vpt>=250&&LHE_Vpt<400)*0.09284 + (LHE_NpNLO==1&&LHE_Vpt>=400)*0.00066 + (LHE_NpNLO==1&&LHE_Vpt>=150&&LHE_Vpt<250)*0.00515 + (LHE_NpNLO==1&&LHE_Vpt>=100&&LHE_Vpt<150)*0.35462 + (LHE_NpNLO==1&&LHE_Vpt>=50&&LHE_Vpt<100)*0.62977 +WJnlo_2J_NLOst = (LHE_NpNLO==2&&LHE_Vpt>=250&&LHE_Vpt<400)*0.01339 + (LHE_NpNLO==2&&LHE_Vpt>=50&&LHE_Vpt<100)*0.90189 + (LHE_NpNLO==2&&LHE_Vpt>=150&&LHE_Vpt<250)*0.70693 + (LHE_NpNLO==2&&LHE_Vpt>=400)*0.10867 + (LHE_NpNLO==2&&LHE_Vpt<50)*0.96608 + (LHE_NpNLO==2&&LHE_Vpt>=100&&LHE_Vpt<150)*0.69730 + +WJincl_EXCL = (((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100)&&LHE_HT<100) +#WJ70_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) +WJ70_EXCL = 0.0 WJ100_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) WJ200_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) WJ400_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) @@ -195,6 +303,21 @@ WJB100_EXCL = (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200) WJB200_EXCL = (LHE_Nb>0&&LHE_Vpt>=200) WJGBF100_EXCL = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200) WJGBF200_EXCL = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200) +W1nlo0_EXCL = 0.0 +W1nlo50_EXCL = 0.0 +W1nlo100_EXCL = 0.0 +W1nlo150_EXCL = 0.0 +W1nlo250_EXCL = 0.0 +W1nlo400_EXCL = 0.0 +W2nlo0_EXCL = 0.0 +W2nlo50_EXCL = 0.0 +W2nlo100_EXCL = 0.0 +W2nlo150_EXCL = 0.0 +W2nlo250_EXCL = 0.0 +W2nlo400_EXCL = 0.0 +WJnlo_0J_EXCL = 0.0 +WJnlo_1J_EXCL = 0.0 +WJnlo_2J_EXCL = 0.0 WJincl_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=100&&LHE_HT<200)*0.05417 + (LHE_Nb>0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT<100) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT<100) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200)*0.05483 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=100&&LHE_HT<200)*0.05493 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT<100) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=2500) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=200&&LHE_HT>=2500) WJ70_V11 = 0.0 @@ -209,6 +332,22 @@ WJB100_V11 = (LHE_Nb>0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=60 WJB200_V11 = (LHE_Nb>0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=600&&LHE_HT<800)*0.39347 + (LHE_Nb>0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=800&&LHE_HT<1200)*0.39166 + (LHE_Nb>0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400)*0.94911 + (LHE_Nb>0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=1200&&LHE_HT<2500)*0.07540 + (LHE_Nb>0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=2500) + (LHE_Nb>0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=400&&LHE_HT<600)*0.90763 WJGBF100_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=2500) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=600&&LHE_HT<800)*0.24637 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=800&&LHE_HT<1200)*0.24569 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=400&&LHE_HT<600)*0.83259 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400)*0.90465 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200) WJGBF200_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=400&&LHE_HT<600)*0.85786 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=600&&LHE_HT<800)*0.29629 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=1200&&LHE_HT<2500)*0.05922 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400)*0.92824 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=800&&LHE_HT<1200)*0.29196 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=2500) +W1nlo0_V11 = 0.0 +W1nlo50_V11 = 0.0 +W1nlo100_V11 = 0.0 +W1nlo150_V11 = 0.0 +W1nlo250_V11 = 0.0 +W1nlo400_V11 = 0.0 +W2nlo0_V11 = 0.0 +W2nlo50_V11 = 0.0 +W2nlo100_V11 = 0.0 +W2nlo150_V11 = 0.0 +W2nlo250_V11 = 0.0 +W2nlo400_V11 = 0.0 +WJnlo_0J_V11 = 0.0 +WJnlo_1J_V11 = 0.0 +WJnlo_2J_V11 = 0.0 + WJincl_V13 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT<70) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT<70) + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT<70) WJ70_V13 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=70&&LHE_HT<100) + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=70&&LHE_HT<100) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=70&&LHE_HT<100) @@ -223,7 +362,21 @@ WJB100_V13 = (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400)*0. WJB200_V13 = (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=400&&LHE_HT<600)*0.78449 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=600&&LHE_HT<800)*0.36049 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400)*0.94923 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=800&&LHE_HT<1200)*0.20451 WJGBF100_V13 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400)*0.91066 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=600&&LHE_HT<800)*0.23371 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=400&&LHE_HT<600)*0.66409 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=800&&LHE_HT<1200)*0.12137 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200) WJGBF200_V13 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=400&&LHE_HT<600)*0.70167 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=600&&LHE_HT<800)*0.27015 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400)*0.93039 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=800&&LHE_HT<1200)*0.14476 - +W1nlo0_V13 = 0.0 +W1nlo50_V13 = 0.0 +W1nlo100_V13 = 0.0 +W1nlo150_V13 = 0.0 +W1nlo250_V13 = 0.0 +W1nlo400_V13 = 0.0 +W2nlo0_V13 = 0.0 +W2nlo50_V13 = 0.0 +W2nlo100_V13 = 0.0 +W2nlo150_V13 = 0.0 +W2nlo250_V13 = 0.0 +W2nlo400_V13 = 0.0 +WJnlo_0J_V13 = 0.0 +WJnlo_1J_V13 = 0.0 +WJnlo_2J_V13 = 0.0 WJincl = !> WJ70 = !> @@ -238,6 +391,22 @@ WJB100 = !> WJB200 = !> WJGBF100 = !> WJGBF200 = !> +W1nlo0 = !> +W1nlo50 = !> +W1nlo100 = !> +W1nlo150 = !> +W1nlo250 = !> +W1nlo400 = !> +W2nlo0 = !> +W2nlo50 = !> +W2nlo100 = !> +W2nlo150 = !> +W2nlo250 = !> +W2nlo400 = !> +WJnlo_0J = !> +WJnlo_1J = !> +WJnlo_2J = !> + # don't use b-enriched samples DYincl_OFF = (LHE_HT<70) + (LHE_HT>=200&&LHE_HT<400)*0.09215 + (LHE_HT>=100&&LHE_HT<200)*0.17668 + (LHE_HT>=70&&LHE_HT<100)*0.26654 + (LHE_HT>=400&&LHE_HT<600)*0.01701 @@ -253,6 +422,101 @@ DY_B100_OFF = 0.0 DY_B200_OFF = 0.0 DY_F100_OFF = 0.0 DY_F200_OFF = 0.0 +DYincl_nlo_OFF = 0.0 +DYnlo_0J_OFF = 0.0 +DYnlo_1J_OFF = 0.0 +DYnlo_2J_OFF = 0.0 +DY1_nlo50_OFF = 0.0 +DY1_nlo150_OFF = 0.0 +DY1_nlo250_OFF = 0.0 +DY1_nlo400_OFF = 0.0 +DY2_nlo50_OFF = 0.0 +DY2_nlo150_OFF = 0.0 +DY2_nlo250_OFF = 0.0 +DY2_nlo400_OFF = 0.0 + +#use only nlo samples +DYincl_NLO = 0.0 +DY_HT70_NLO = 0.0 +DY_HT100_NLO = 0.0 +DY_HT200_NLO = 0.0 +DY_HT400_NLO = 0.0 +DY_HT600_NLO = 0.0 +DY_HT800_NLO = 0.0 +DY_HT1200_NLO = 0.0 +DY_HT2500_NLO = 0.0 +DY_B100_NLO = 0.0 +DY_B200_NLO = 0.0 +DY_F100_NLO = 0.0 +DY_F200_NLO = 0.0 +#DYincl_nlo_NLO = (LHE_Vpt<50) +DYincl_nlo_NLO = 0.0 +DYnlo_0J_NLO = 0.0 +DYnlo_1J_NLO = 0.0 +DYnlo_2J_NLO = 0.0 +DY1_nlo50_NLO = (LHE_Vpt>=50&&LHE_Vpt<150) +DY1_nlo150_NLO = (LHE_Vpt>=150&&LHE_Vpt<250) +DY1_nlo250_NLO = (LHE_Vpt>=150&&LHE_Vpt<250) +DY1_nlo400_NLO = (LHE_Vpt>=400) +DY2_nlo50_NLO = (LHE_Vpt>=50&&LHE_Vpt<150) +DY2_nlo150_NLO = (LHE_Vpt>=150&&LHE_Vpt<250) +DY2_nlo250_NLO = (LHE_Vpt>=250&&LHE_Vpt<400) +DY2_nlo400_NLO = (LHE_Vpt>=400) + +#use only nlo samples +DYincl_NLOincl = 0.0 +DY_HT70_NLOincl = 0.0 +DY_HT100_NLOincl = 0.0 +DY_HT200_NLOincl = 0.0 +DY_HT400_NLOincl = 0.0 +DY_HT600_NLOincl = 0.0 +DY_HT800_NLOincl = 0.0 +DY_HT1200_NLOincl = 0.0 +DY_HT2500_NLOincl = 0.0 +DY_B100_NLOincl = 0.0 +DY_B200_NLOincl = 0.0 +DY_F100_NLOincl = 0.0 +DY_F200_NLOincl = 0.0 +#DYincl_nlo_NLO = (LHE_Vpt<50) +DYincl_nlo_NLOincl = 1.0 +DYnlo_0J_NLOincl = 0.0 +DYnlo_1J_NLOincl = 0.0 +DYnlo_2J_NLOincl = 0.0 +DY1_nlo50_NLOincl = 0.0 +DY1_nlo150_NLOincl = 0.0 +DY1_nlo250_NLOincl = 0.0 +DY1_nlo400_NLOincl = 0.0 +DY2_nlo50_NLOincl = 0.0 +DY2_nlo150_NLOincl = 0.0 +DY2_nlo250_NLOincl = 0.0 +DY2_nlo400_NLOincl = 0.0 + +#use only nlo samples +DYincl_NLOst = 0.0 +DY_HT70_NLOst = 0.0 +DY_HT100_NLOst = 0.0 +DY_HT200_NLOst = 0.0 +DY_HT400_NLOst = 0.0 +DY_HT600_NLOst = 0.0 +DY_HT800_NLOst = 0.0 +DY_HT1200_NLOst = 0.0 +DY_HT2500_NLOst = 0.0 +DY_B100_NLOst = 0.0 +DY_B200_NLOst = 0.0 +DY_F100_NLOst = 0.0 +DY_F200_NLOst = 0.0 +DYincl_nlo_NLOst = (LHE_NpNLO==2&&LHE_Vpt>=250&&LHE_Vpt<400)*0.00306 + (LHE_NpNLO==0&&LHE_Vpt<50)*0.71698 + (LHE_NpNLO==0&&LHE_Vpt>=250&&LHE_Vpt<400) + (LHE_NpNLO==1&&LHE_Vpt<50)*0.37702 + (LHE_NpNLO==2&&LHE_Vpt>=50&&LHE_Vpt<150)*0.45382 + (LHE_NpNLO==0&&LHE_Vpt>=50&&LHE_Vpt<150)*0.59322 + (LHE_NpNLO==2&&LHE_Vpt>=150&&LHE_Vpt<250)*0.15981 + (LHE_NpNLO==1&&LHE_Vpt>=250&&LHE_Vpt<400)*0.00332 + (LHE_NpNLO==1&&LHE_Vpt>=400)*0.00297 + (LHE_NpNLO==1&&LHE_Vpt>=150&&LHE_Vpt<250)*0.21446 + (LHE_NpNLO==2&&LHE_Vpt>=400)*0.00242 + (LHE_NpNLO==2&&LHE_Vpt<50)*0.55289 + (LHE_NpNLO==1&&LHE_Vpt>=50&&LHE_Vpt<150)*0.29656 +DYnlo_0J_NLOst = (LHE_NpNLO==0&&LHE_Vpt<50)*0.28302 + (LHE_NpNLO==0&&LHE_Vpt>=150&&LHE_Vpt<250) + (LHE_NpNLO==0&&LHE_Vpt>=50&&LHE_Vpt<150)*0.40678 +DYnlo_1J_NLOst = (LHE_NpNLO==1&&LHE_Vpt<50)*0.62298 + (LHE_NpNLO==1&&LHE_Vpt>=250&&LHE_Vpt<400)*0.00713 + (LHE_NpNLO==1&&LHE_Vpt>=400)*0.00649 + (LHE_NpNLO==1&&LHE_Vpt>=150&&LHE_Vpt<250)*0.46320 + (LHE_NpNLO==1&&LHE_Vpt>=50&&LHE_Vpt<150)*0.61777 +DYnlo_2J_NLOst = (LHE_NpNLO==2&&LHE_Vpt>=250&&LHE_Vpt<400)*0.00308 + (LHE_NpNLO==2&&LHE_Vpt>=50&&LHE_Vpt<150)*0.45230 + (LHE_NpNLO==2&&LHE_Vpt>=150&&LHE_Vpt<250)*0.15961 + (LHE_NpNLO==2&&LHE_Vpt>=400)*0.00239 + (LHE_NpNLO==2&&LHE_Vpt<50)*0.44711 +DY1_nlo50_NLOst = (LHE_NpNLO==1&&LHE_Vpt>=50&&LHE_Vpt<150)*0.08567 +DY1_nlo150_NLOst = (LHE_NpNLO==1&&LHE_Vpt>=150&&LHE_Vpt<250)*0.32234 +DY1_nlo250_NLOst = (LHE_NpNLO==1&&LHE_Vpt>=250&&LHE_Vpt<400)*0.98955 +DY1_nlo400_NLOst = (LHE_NpNLO==1&&LHE_Vpt>=400)*0.99055 +DY2_nlo50_NLOst = (LHE_NpNLO==2&&LHE_Vpt>=50&&LHE_Vpt<150)*0.09388 +DY2_nlo150_NLOst = (LHE_NpNLO==2&&LHE_Vpt>=150&&LHE_Vpt<250)*0.68059 +DY2_nlo250_NLOst = (LHE_NpNLO==2&&LHE_Vpt>=250&&LHE_Vpt<400)*0.99386 +DY2_nlo400_NLOst = (LHE_NpNLO==2&&LHE_Vpt>=400)*0.99519 # only use b-enriched samples DYincl_BE = 0.0 @@ -268,6 +532,18 @@ DY_B100_BE = 1.0 DY_B200_BE = 1.0 DY_F100_BE = 1.0 DY_F200_BE = 1.0 +DYincl_nlo_BE = 0.0 +DYnlo_0J_BE = 0.0 +DYnlo_1J_BE = 0.0 +DYnlo_2J_BE = 0.0 +DY1_nlo50_BE = 0.0 +DY1_nlo150_BE = 0.0 +DY1_nlo250_BE = 0.0 +DY1_nlo400_BE = 0.0 +DY2_nlo50_BE = 0.0 +DY2_nlo150_BE = 0.0 +DY2_nlo250_BE = 0.0 +DY2_nlo400_BE = 0.0 # don't use HT bins and b-enriched samples DYincl_NOHT = 1.0 @@ -283,6 +559,19 @@ DY_B100_NOHT = 0.0 DY_B200_NOHT = 0.0 DY_F100_NOHT = 0.0 DY_F200_NOHT = 0.0 +DYincl_nlo_NOHT = 0.0 +DYnlo_0J_NOHT = 0.0 +DYnlo_1J_NOHT = 0.0 +DYnlo_2J_NOHT = 0.0 +DY1_nlo50_NOHT = 0.0 +DY1_nlo150_NOHT = 0.0 +DY1_nlo250_NOHT = 0.0 +DY1_nlo400_NOHT = 0.0 +DY2_nlo50_NOHT = 0.0 +DY2_nlo150_NOHT = 0.0 +DY2_nlo250_NOHT = 0.0 +DY2_nlo400_NOHT = 0.0 + # use b-enriched and GenFilter, exclusively DYincl_EXCL = (LHE_Vpt<100 || (nGenStatus2bHad==0 && LHE_Nb==0))*() @@ -298,6 +587,18 @@ DY_B100_EXCL = (LHE_Nb>0&&LHE_Vpt>=100) DY_B200_EXCL = (LHE_Nb>0&&LHE_Vpt>=200) DY_F100_EXCL = (LHE_Vpt>=100 && LHE_Nb==0 && nGenStatus2bHad > 0) DY_F200_EXCL = (LHE_Vpt>=200 && LHE_Nb==0 && nGenStatus2bHad > 0) +DYincl_nlo_EXCL = 0.0 +DYnlo_0J_EXCL = 0.0 +DYnlo_1J_EXCL = 0.0 +DYnlo_2J_EXCL = 0.0 +DY1_nlo50_EXCL = 0.0 +DY1_nlo150_EXCL = 0.0 +DY1_nlo250_EXCL = 0.0 +DY1_nlo400_EXCL = 0.0 +DY2_nlo50_EXCL = 0.0 +DY2_nlo150_EXCL = 0.0 +DY2_nlo250_EXCL = 0.0 +DY2_nlo400_EXCL = 0.0 DYincl_DOUBLE = () DY_HT70_DOUBLE = () @@ -312,7 +613,18 @@ DY_B100_DOUBLE = (LHE_Nb>0&&LHE_Vpt>=100) DY_B200_DOUBLE = (LHE_Nb>0&&LHE_Vpt>=200) DY_F100_DOUBLE = (LHE_Vpt>=100 && LHE_Nb==0 && nGenStatus2bHad > 0) DY_F200_DOUBLE = (LHE_Vpt>=200 && LHE_Nb==0 && nGenStatus2bHad > 0) - +DYincl_nlo_DOUBLE = 0.0 +DYnlo_0J_DOUBLE = 0.0 +DYnlo_1J_DOUBLE = 0.0 +DYnlo_2J_DOUBLE = 0.0 +DY1_nlo50_DOUBLE = 0.0 +DY1_nlo150_DOUBLE = 0.0 +DY1_nlo250_DOUBLE = 0.0 +DY1_nlo400_DOUBLE = 0.0 +DY2_nlo50_DOUBLE = 0.0 +DY2_nlo150_DOUBLE = 0.0 +DY2_nlo250_DOUBLE = 0.0 +DY2_nlo400_DOUBLE = 0.0 # V13 DYincl_V13 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT<70) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=100&&LHE_HT<200)*0.11706 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=70&&LHE_HT<100)*0.13755 + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=70&&LHE_HT<100)*0.13953 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT<70) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=70&&LHE_HT<100)*0.13883 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=100&&LHE_HT<200)*0.11640 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200)*0.11720 + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=100&&LHE_HT<200)*0.11671 + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT<70) @@ -328,6 +640,18 @@ DY_B100_V13 = (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400)* DY_B200_V13 = (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=400&&LHE_HT<600)*0.24520 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=600&&LHE_HT<800)*0.08743 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400)*0.67991 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=800&&LHE_HT<1200)*0.11471 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=1200&&LHE_HT<2500)*0.13135 DY_F100_V13 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400)*0.70770 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=600&&LHE_HT<800)*0.09473 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=400&&LHE_HT<600)*0.27719 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=800&&LHE_HT<1200)*0.10927 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=1200&&LHE_HT<2500)*0.10895 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200)*0.91473 DY_F200_V13 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=400&&LHE_HT<600)*0.27153 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=600&&LHE_HT<800)*0.09361 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=1200&&LHE_HT<2500)*0.11972 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400)*0.73188 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=800&&LHE_HT<1200)*0.11646 +DYincl_nlo_V13 = 0.0 +DYnlo_0J_V13 = 0.0 +DYnlo_1J_V13 = 0.0 +DYnlo_2J_V13 = 0.0 +DY1_nlo50_V13 = 0.0 +DY1_nlo150_V13 = 0.0 +DY1_nlo250_V13 = 0.0 +DY1_nlo400_V13 = 0.0 +DY2_nlo50_V13 = 0.0 +DY2_nlo150_V13 = 0.0 +DY2_nlo250_V13 = 0.0 +DY2_nlo400_V13 = 0.0 DYincl_V11old = (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400)*0.08296 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=100&&LHE_HT<200)*0.16228 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=200&&LHE_HT<400)*0.08361 + (LHE_Nb>0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT<100) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT<100) + (LHE_Nb>0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=200&&LHE_HT<400)*0.08274 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200)*0.16195 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400)*0.08289 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=100&&LHE_HT<200)*0.16174 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=200&&LHE_HT<400)*0.08241 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT<100) + (LHE_Nb>0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=100&&LHE_HT<200)*0.16152 DY_HT70_V11old = 0.0 @@ -342,6 +666,18 @@ DY_B100_V11old = (LHE_Nb>0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_ DY_B200_V11old = (LHE_Nb>0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=600&&LHE_HT<800)*0.13653 + (LHE_Nb>0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=800&&LHE_HT<1200)*0.16182 + (LHE_Nb>0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400)*0.72103 + (LHE_Nb>0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=1200&&LHE_HT<2500)*0.13098 + (LHE_Nb>0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=400&&LHE_HT<600)*0.34716 DY_F100_V11old = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=600&&LHE_HT<800)*0.14075 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=800&&LHE_HT<1200)*0.14546 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=400&&LHE_HT<600)*0.37276 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=1200&&LHE_HT<2500)*0.10222 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400)*0.73572 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200)*0.88310 DY_F200_V11old = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=400&&LHE_HT<600)*0.37872 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=600&&LHE_HT<800)*0.14636 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=1200&&LHE_HT<2500)*0.11980 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400)*0.76871 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=800&&LHE_HT<1200)*0.16443 +DYincl_nlo_V11old = 0.0 +DYnlo_0J_V11old = 0.0 +DYnlo_1J_V11old = 0.0 +DYnlo_2J_V11old = 0.0 +DY1_nlo50_V11old = 0.0 +DY1_nlo150_V11old = 0.0 +DY1_nlo250_V11old = 0.0 +DY1_nlo400_V11old = 0.0 +DY2_nlo50_V11old = 0.0 +DY2_nlo150_V11old = 0.0 +DY2_nlo250_V11old = 0.0 +DY2_nlo400_V11old = 0.0 # new version of V11 includes the 70to100 sample @@ -358,9 +694,18 @@ DY_B100_V11 = (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400)*0 DY_B200_V11 = (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=400&&LHE_HT<600)*0.31927 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=600&&LHE_HT<800)*0.11878 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400)*0.75007 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=800&&LHE_HT<1200)*0.16154 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=1200&&LHE_HT<2500)*0.13138 DY_F100_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400)*0.76299 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=600&&LHE_HT<800)*0.12212 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=400&&LHE_HT<600)*0.34386 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=800&&LHE_HT<1200)*0.14554 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=1200&&LHE_HT<2500)*0.10241 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200)*0.89499 DY_F200_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=400&&LHE_HT<600)*0.34967 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=600&&LHE_HT<800)*0.12696 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=1200&&LHE_HT<2500)*0.11965 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400)*0.79354 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=800&&LHE_HT<1200)*0.16431 - - - +DYincl_nlo_V11 = 0.0 +DYnlo_0J_V11 = 0.0 +DYnlo_1J_V11 = 0.0 +DYnlo_2J_V11 = 0.0 +DY1_nlo50_V11 = 0.0 +DY1_nlo150_V11 = 0.0 +DY1_nlo250_V11 = 0.0 +DY1_nlo400_V11 = 0.0 +DY2_nlo50_V11 = 0.0 +DY2_nlo150_V11 = 0.0 +DY2_nlo250_V11 = 0.0 +DY2_nlo400_V11 = 0.0 DYincl = !> DY_HT70 = !> @@ -375,7 +720,18 @@ DY_B100 = !> DY_B200 = !> DY_F100 = !> DY_F200 = !> - +DYincl_nlo = !> +DYnlo_0J = !> +DYnlo_1J = !> +DYnlo_2J = !> +DY1_nlo50 = !> +DY1_nlo150 = !> +DY1_nlo250 = !> +DY1_nlo400 = !> +DY2_nlo50 = !> +DY2_nlo150 = !> +DY2_nlo250 = !> +DY2_nlo400 = !> ZJ100 = !> ZJ200 = !> @@ -388,6 +744,14 @@ ZJB100 = !> ZJB200 = !> ZJGBF100 = !> ZJGBF200 = !> +Z1nlo50 = !> +Z1nlo150 = !> +Z1nlo250 = !> +Z1nlo400 = !> +Z2nlo50 = !> +Z2nlo150 = !> +Z2nlo250 = !> +Z2nlo400 = !> ZJ100_OFF = 1.0 ZJ200_OFF = 1.0 @@ -400,6 +764,34 @@ ZJB100_OFF = 0.0 ZJB200_OFF = 0.0 ZJGBF100_OFF = 0.0 ZJGBF200_OFF = 0.0 +Z1nlo50_OFF = 0.0 +Z1nlo150_OFF = 0.0 +Z1nlo250_OFF = 0.0 +Z1nlo400_OFF = 0.0 +Z2nlo50_OFF = 0.0 +Z2nlo150_OFF = 0.0 +Z2nlo250_OFF = 0.0 +Z2nlo400_OFF = 0.0 + +ZJ100_NLO = 0.0 +ZJ200_NLO = 0.0 +ZJ400_NLO = 0.0 +ZJ600_NLO = 0.0 +ZJ800_NLO = 0.0 +ZJ1200_NLO = 0.0 +ZJ2500_NLO = 0.0 +ZJB100_NLO = 0.0 +ZJB200_NLO = 0.0 +ZJGBF100_NLO = 0.0 +ZJGBF200_NLO = 0.0 +Z1nlo50_NLO = 1.0 +Z1nlo150_NLO = 1.0 +Z1nlo250_NLO = 1.0 +Z1nlo400_NLO = 1.0 +Z2nlo50_NLO = 1.0 +Z2nlo150_NLO = 1.0 +Z2nlo250_NLO = 1.0 +Z2nlo400_NLO = 1.0 ZJ100_BE = 0.0 ZJ200_BE = 0.0 @@ -412,6 +804,14 @@ ZJB100_BE = 1.0 ZJB200_BE = 1.0 ZJGBF100_BE = 1.0 ZJGBF200_BE = 1.0 +Z1nlo50_BE = 0.0 +Z1nlo150_BE = 0.0 +Z1nlo250_BE = 0.0 +Z1nlo400_BE = 0.0 +Z2nlo50_BE = 0.0 +Z2nlo150_BE = 0.0 +Z2nlo250_BE = 0.0 +Z2nlo400_BE = 0.0 ZJ100_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) ZJ200_EXCL = ((LHE_Nb==0&&nGenStatus2bHad==0)||LHE_Vpt<100) @@ -424,6 +824,14 @@ ZJB100_EXCL = (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200) ZJB200_EXCL = (LHE_Nb>0&&LHE_Vpt>=200) ZJGBF100_EXCL = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200) ZJGBF200_EXCL = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200) +Z1nlo50_EXCL = 0.0 +Z1nlo150_EXCL = 0.0 +Z1nlo250_EXCL = 0.0 +Z1nlo400_EXCL = 0.0 +Z2nlo50_EXCL = 0.0 +Z2nlo150_EXCL = 0.0 +Z2nlo250_EXCL = 0.0 +Z2nlo400_EXCL = 0.0 ZJ100_V13 = (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=100&&LHE_HT<200) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=100&&LHE_HT<200) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200) + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=100&&LHE_HT<200) + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200)*0.08876 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200)*0.20417 ZJ200_V13 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400)*0.50567 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400) + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=200&&LHE_HT<400) + (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400)*0.27318 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400)*0.27604 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400)*0.51901 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400) + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=200&&LHE_HT<400) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=200&&LHE_HT<400) @@ -436,6 +844,14 @@ ZJB100_V13 = (LHE_Nb>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400)*0.72 ZJB200_V13 = (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=400&&LHE_HT<600)*0.42937 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=2500)*0.27143 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=600&&LHE_HT<800)*0.24434 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400)*0.72396 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=800&&LHE_HT<1200)*0.29231 + (LHE_Nb>0&&LHE_Vpt>=200&&LHE_HT>=1200&&LHE_HT<2500)*0.34958 ZJGBF100_V13 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400)*0.49433 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=600&&LHE_HT<800)*0.09941 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=2500)*0.08571 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=400&&LHE_HT<600)*0.21896 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=800&&LHE_HT<1200)*0.11163 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=1200&&LHE_HT<2500)*0.12112 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200)*0.79583 ZJGBF200_V13 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=400&&LHE_HT<600)*0.19640 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=600&&LHE_HT<800)*0.08806 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=1200&&LHE_HT<2500)*0.13386 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400)*0.48099 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=2500)*0.08099 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=800&&LHE_HT<1200)*0.10326 +Z1nlo50_V13 = 0.0 +Z1nlo150_V13 = 0.0 +Z1nlo250_V13 = 0.0 +Z1nlo400_V13 = 0.0 +Z2nlo50_V13 = 0.0 +Z2nlo150_V13 = 0.0 +Z2nlo250_V13 = 0.0 +Z2nlo400_V13 = 0.0 ZJ100_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=100&&LHE_HT<200) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200) + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=100&&LHE_HT<200) + (LHE_Nb>0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200)*0.08954 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200)*0.20827 + (LHE_Nb>0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=100&&LHE_HT<200) @@ -449,6 +865,14 @@ ZJB100_V11 = (LHE_Nb>0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>= ZJB200_V11 = (LHE_Nb>0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=600&&LHE_HT<800)*0.13909 + (LHE_Nb>0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=800&&LHE_HT<1200)*0.29142 + (LHE_Nb>0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400)*0.72010 + (LHE_Nb>0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=1200&&LHE_HT<2500)*0.21426 + (LHE_Nb>0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=2500)*0.25714 + (LHE_Nb>0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=400&&LHE_HT<600)*0.28325 ZJGBF100_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=600&&LHE_HT<800)*0.05182 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=800&&LHE_HT<1200)*0.11159 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=400&&LHE_HT<600)*0.12585 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=1200&&LHE_HT<2500)*0.06760 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=200&&LHE_HT<400)*0.48718 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200)*0.79173 ZJGBF200_V11 = (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=400&&LHE_HT<600)*0.11313 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=1200&&LHE_HT<2500)*0.07035 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=200&&LHE_HT<400)*0.47377 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=800&&LHE_HT<1200)*0.10339 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt>=200&&LHE_HT>=2500)*0.07787 +Z1nlo50_V11 = 0.0 +Z1nlo150_V11 = 0.0 +Z1nlo250_V11 = 0.0 +Z1nlo400_V11 = 0.0 +Z2nlo50_V11 = 0.0 +Z2nlo150_V11 = 0.0 +Z2nlo250_V11 = 0.0 +Z2nlo400_V11 = 0.0 ;---------------------------- Signal ---------------------------- @@ -693,6 +1117,7 @@ SF = cut = specialweight = +# sample missing in 2017 [WJetsToLNu_HT-70To100_TuneCP5_13TeV-madgraphMLM-pythia8] sampleIndex = 4100 sampleName = WJetsHT70 @@ -891,6 +1316,275 @@ specialweight_HT = 1 specialweight_CONST = ()*1.248 specialweight_OFF = () specialweight = !> +#specialweight = + +# nlo samples + +[W1JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8] +sampleIndex = 6000 +sampleName = W1Jetsnlo0 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 0.00 +SF = +cut = +specialweight = + +[W2JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8] +sampleIndex = 6100 +sampleName = W2Jetsnlo0 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 1615.0 +SF = +cut = +specialweight = + +[W1JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8] +sampleIndex = 6200 +sampleName = W1Jetsnlo50 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 2661.0 +SF = +cut = +specialweight = + +[W2JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8] +sampleIndex = 6300 +sampleName = W2Jetsnlo50 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 1331.0 +SF = +cut = +specialweight = + +[W1JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8] +sampleIndex = 6400 +sampleName = W1Jetsnlo100 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 286.1 +SF = +cut = +specialweight = + +[W2JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8] +sampleIndex = 6500 +sampleName = W2Jetsnlo100 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 277.7 +SF = +cut = +specialweight = + +[W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8] +sampleIndex = 6600 +sampleName = W1Jetsnlo150 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 71.9 +SF = +cut = +specialweight = + +[W2JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8] +sampleIndex = 6700 +sampleName = W2Jetsnlo150 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 105.9 +SF = +cut = +specialweight = + +[W1JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8] +sampleIndex = 6800 +sampleName = W1Jetsnlo250 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 8.05 +SF = +cut = +specialweight = + +[W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8] +sampleIndex = 6900 +sampleName = W2Jetsnlo250 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 18.67 +SF = +cut = +specialweight = + +[W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8] +sampleIndex = 7000 +sampleName = W1Jetsnlo400 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 0.885 +SF = +cut = +specialweight = + +[W2JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8] +sampleIndex = 7100 +sampleName = W2Jetsnlo400 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 3.037 +SF = +cut = +specialweight = + +[WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8] +sampleIndex = 19100 +sampleName = WJets_0J +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 54500.0 +SF = +cut = +specialweight = + +[WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8] +sampleIndex = 19200 +sampleName = WJets_1J +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 8750.0 +SF = +cut = +specialweight = + +[WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8] +sampleIndex = 19300 +sampleName = WJets_2J +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 3010.0 +SF = +cut = +specialweight = + +#[W1JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8] +#sampleIndex = 19100 +#sampleName = W1Jetsnlo +#sampleType = BKG +#subsamples = True +#subcuts = +#sampleGroup = +#suffixes = +#offsets = +#xSec = 8111.0 +#SF = +#cut = +#specialweight = + +#[W2JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8] +#sampleIndex = 19200 +#sampleName = W2Jetsnlo +#sampleType = BKG +#subsamples = True +#subcuts = +#sampleGroup = +#suffixes = +#offsets = +#xSec = 2786.0 +#SF = +#cut = +#specialweight = + +#[W3JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8] +#sampleIndex = 19300 +#sampleName = W3Jetsnlo +#sampleType = BKG +#subsamples = True +#subcuts = +#sampleGroup = +#suffixes = +#offsets = +#xSec = 991.4 +#SF = +#cut = +#specialweight = + +#[W4JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8] +#sampleIndex = 19400 +#sampleName = W4Jetsnlo +#sampleType = BKG +#subsamples = True +#subcuts = +#sampleGroup = +#suffixes = +#offsets = +#xSec = 544.0 +#SF = +#cut = +#specialweight = #TT @@ -1286,23 +1980,238 @@ specialweight_CONST = ()*()*1.171 specialweight_OFF = ()*() specialweight = !> -#[DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8] -#sampleIndex = [20100,20101,20102] -#sampleName = DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8 -#sampleType = BKG -#subsamples = True -#subnames = ['DYnloIncl_0b','DYnloIncl_1b','DYnloIncl_2b'] -#subcuts = -#sampleGroup = -#xSec = [6529.0]*3 -#SF = -#cut = -#specialweight = +# nlo samples + +[DY1JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8] +sampleIndex = 13000 +sampleName = DY1nlo50 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 316.6 +SF = +cut = +specialweight = ()*() + +[DY2JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8] +sampleIndex = 13100 +sampleName = DY2nlo50 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 169.6 +SF = +cut = +specialweight = ()*() + +[DY1JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8] +sampleIndex = 13200 +sampleName = DY1nlo150 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 9.543 +SF = +cut = +specialweight = ()*() + +[DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8] +sampleIndex = 13300 +sampleName = DY2nlo150 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 15.65 +SF = +cut = C +specialweight = ()*() + + +[DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8] +sampleIndex = 13400 +sampleName = DY1nlo250 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 1.098 +SF = +cut = +specialweight = ()*() + +[DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8] +sampleIndex = 13500 +sampleName = DY2nlo250 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 2.737 +SF = +cut = +specialweight = ()*() + + +[DY1JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8] +sampleIndex = 13600 +sampleName = DY1nlo400 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 0.1193 +SF = +cut = +specialweight = ()*() + +[DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8] +sampleIndex = 13700 +sampleName = DY2nlo400 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 0.4477 +SF = +cut = +specialweight = ()*() + +[DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8] +sampleIndex = 13800 +sampleName = DYnloINCL +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 6508.0 +SF = +cut = +specialweight = ()*() + +[DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8] +sampleIndex = 18100 +sampleName = DYJets_0J +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 5333.0 +SF = +cut = +specialweight = ()*() + +[DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8] +sampleIndex = 18200 +sampleName = DYJets_1J +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 962.8 +SF = +cut = +specialweight = ()*() + +[DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8] +sampleIndex = 18300 +sampleName = DYJets_2J +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 362.0 +SF = +cut = +specialweight = ()*() + +#[DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8] +#sampleIndex = 18100 +#sampleName = DY_1Jets +#sampleType = BKG +#subsamples = True +#subcuts = +#sampleGroup = +#suffixes = +#offsets = +#xSec = 877.2 +#SF = +#cut = +#specialweight = ()*() + +#[DY2JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8] +#sampleIndex = 18200 +#sampleName = DY_2Jets +#sampleType = BKG +#subsamples = True +#subcuts = +#sampleGroup = +#suffixes = +#offsets = +#xSec = 304.4 +#SF = +#cut = +#specialweight = ()*() + +#[DY3JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8] +#sampleIndex = 18300 +#sampleName = DY_3Jets +#sampleType = BKG +#subsamples = True +#subcuts = +#sampleGroup = +#suffixes = +#offsets = +#xSec = 111.7 +#SF = +#cut = +#specialweight = ()*() + +#[DY4JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8] +#sampleIndex = 18400 +#sampleName = DY_4Jets +#sampleType = BKG +#subsamples = True +#subcuts = +#sampleGroup = +#suffixes = +#offsets = +#xSec = 43.84 +#SF = +#cut = +#specialweight = ()*() #-- QCD Samples --# [QCD_HT100to200_TuneCP5_13TeV-madgraph-pythia8] -sampleIndex = 1 +sampleIndex = 1 sampleName = QCDHT100 sampleType = BKG subsamples = False @@ -1981,6 +2890,120 @@ specialweight_OFF = () specialweight = !> +# nlo samples + +[Z1JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8] +sampleIndex = 17000 +sampleName = Z1Jetsnlo50 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 596.4 +SF = +cut = +specialweight = + +[Z2JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8] +sampleIndex = 17100 +sampleName = Z2Jetsnlo50 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 325.7 +SF = +cut = +specialweight = + +[Z1JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8] +sampleIndex = 17200 +sampleName = Z1Jetsnlo150 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 17.98 +SF = +cut = +specialweight = + +[Z2JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8] +sampleIndex = 17300 +sampleName = Z2Jetsnlo150 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 29.76 +SF = +cut = +specialweight = + +[Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8] +sampleIndex = 17400 +sampleName = Z1Jetsnlo250 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 2.057 +SF = +cut = +specialweight = + +[Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8] +sampleIndex = 17500 +sampleName = Z2Jetsnlo250 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 5.166 +SF = +cut = +specialweight = + +[Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8] +sampleIndex = 17600 +sampleName = Z1Jetsnlo400 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 0.224 +SF = +cut = +specialweight = + +[Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8] +sampleIndex = 17700 +sampleName = Z2Jetsnlo400 +sampleType = BKG +subsamples = True +subcuts = +sampleGroup = +suffixes = +offsets = +xSec = 0.8457 +SF = +cut = +specialweight = + # this is the list of samples which will be used to construct the lists of samples to plot/for shape making [Samples] @@ -2002,6 +3025,21 @@ WJetsHT800_VJ4 = 'WJetsHT800_0b_udsg', 'WJetsHT800_0b_c', 'WJetsHT800_1b', ' WJetsHT1200_VJ4 = 'WJetsHT1200_0b_udsg', 'WJetsHT1200_0b_c', 'WJetsHT1200_1b', 'WJetsHT1200_2b' WJetsHT2500_VJ4 = 'WJetsHT2500_0b_udsg', 'WJetsHT2500_0b_c', 'WJetsHT2500_1b', 'WJetsHT2500_2b' WJetsB_VJ4 = 'WBJets100_0b_udsg', 'WBJets100_0b_c', 'WBJets100_1b', 'WBJets100_2b','WBJets200_0b_udsg','WBJets200_0b_c', 'WBJets200_1b', 'WBJets200_2b','WBGenFilter100_0b_udsg','WBGenFilter100_0b_c', 'WBGenFilter100_1b', 'WBGenFilter100_2b','WBGenFilter200_0b_udsg','WBGenFilter200_0b_c', 'WBGenFilter200_1b', 'WBGenFilter200_2b' +W1Jetsnlo0_VJ4 = 'W1Jetsnlo0_0b_udsg', 'W1Jetsnlo0_0b_c', 'W1Jetsnlo0_1b', 'W1Jetsnlo0_2b' +W1Jetsnlo50_VJ4 = 'W1Jetsnlo50_0b_udsg', 'W1Jetsnlo50_0b_c', 'W1Jetsnlo50_1b', 'W1Jetsnlo50_2b' +W1Jetsnlo100_VJ4 = 'W1Jetsnlo100_0b_udsg', 'W1Jetsnlo100_0b_c', 'W1Jetsnlo100_1b', 'W1Jetsnlo100_2b' +W1Jetsnlo150_VJ4 = 'W1Jetsnlo150_0b_udsg', 'W1Jetsnlo150_0b_c', 'W1Jetsnlo150_1b', 'W1Jetsnlo150_2b' +W1Jetsnlo250_VJ4 = 'W1Jetsnlo250_0b_udsg', 'W1Jetsnlo250_0b_c', 'W1Jetsnlo250_1b', 'W1Jetsnlo250_2b' +W1Jetsnlo400_VJ4 = 'W1Jetsnlo400_0b_udsg', 'W1Jetsnlo400_0b_c', 'W1Jetsnlo400_1b', 'W1Jetsnlo400_2b' +W2Jetsnlo0_VJ4 = 'W2Jetsnlo0_0b_udsg', 'W2Jetsnlo0_0b_c', 'W2Jetsnlo0_1b', 'W2Jetsnlo0_2b' +W2Jetsnlo50_VJ4 = 'W2Jetsnlo50_0b_udsg', 'W2Jetsnlo50_0b_c', 'W2Jetsnlo50_1b', 'W2Jetsnlo50_2b' +W2Jetsnlo100_VJ4 = 'W2Jetsnlo100_0b_udsg', 'W2Jetsnlo100_0b_c', 'W2Jetsnlo100_1b', 'W2Jetsnlo100_2b' +W2Jetsnlo150_VJ4 = 'W2Jetsnlo150_0b_udsg', 'W2Jetsnlo150_0b_c', 'W2Jetsnlo150_1b', 'W2Jetsnlo150_2b' +W2Jetsnlo250_VJ4 = 'W2Jetsnlo250_0b_udsg', 'W2Jetsnlo250_0b_c', 'W2Jetsnlo250_1b', 'W2Jetsnlo250_2b' +W2Jetsnlo400_VJ4 = 'W2Jetsnlo400_0b_udsg', 'W2Jetsnlo400_0b_c', 'W2Jetsnlo400_1b', 'W2Jetsnlo400_2b' +WJets_0J_VJ4 = 'WJets_0J_0b_udsg', 'WJets_0J_0b_c', 'WJets_0J_1b', 'WJets_0J_2b' +WJets_1J_VJ4 = 'WJets_1J_0b_udsg', 'WJets_1J_0b_c', 'WJets_1J_1b', 'WJets_1J_2b' +WJets_2J_VJ4 = 'WJets_2J_0b_udsg', 'WJets_2J_0b_c', 'WJets_2J_1b', 'WJets_2J_2b' WJetsHT0_Default = 'WJetsHT0_0b', 'WJetsHT0_1b', 'WJetsHT0_2b' WJetsHT70_Default = 'WJetsHT70_0b', 'WJetsHT70_1b', 'WJetsHT70_2b' @@ -2024,17 +3062,40 @@ WJetsHT800 = !> WJetsHT1200 = !> WJetsHT2500 = !> WJetsB = !> - -#WJets = ,,,,,,,,, -WJets = ,,,,,,,, - +W1Jetsnlo0 = !> +W1Jetsnlo50 = !> +W1Jetsnlo100 = !> +W1Jetsnlo150 = !> +W1Jetsnlo250 = !> +W1Jetsnlo400 = !> +W2Jetsnlo0 = !> +W2Jetsnlo50 = !> +W2Jetsnlo100 = !> +W2Jetsnlo150 = !> +W2Jetsnlo250 = !> +W2Jetsnlo400 = !> +WJets_0J = !> +WJets_1J = !> +WJets_2J = !> + +#WJets_lo = ,,,,,,,,, +WJets_lo = ,,,,,,,, +WJets_nlo = ,,,,,,,,,,,,,, +# change here in case LO samples should be used +#WJets = +#WJets = , +WJets = +#WJets_0b_udsg = 'WJetsHT0_0b_udsg', 'WJetsHT100_0b_udsg','WJetsHT200_0b_udsg','WJetsHT400_0b_udsg','WJetsHT600_0b_udsg','WJetsHT800_0b_udsg','WJetsHT1200_0b_udsg','WJetsHT2500_0b_udsg','WBJets100_0b_udsg','WBJets200_0b_udsg','WBGenFilter100_0b_udsg','WBGenFilter200_0b_udsg','W1Jetsnlo0_0b_udsg','W1Jetsnlo50_0b_udsg','W1Jetsnlo100_0b_udsg','W1Jetsnlo150_0b_udsg','W1Jetsnlo250_0b_udsg','W1Jetsnlo400_0b_udsg','W2Jetsnlo0_0b_udsg','W2Jetsnlo50_0b_udsg','W2Jetsnlo100_0b_udsg','W2Jetsnlo150_0b_udsg','W2Jetsnlo250_0b_udsg','W2Jetsnlo400_0b_udsg','WJets_0J_0b_udsg','WJets_1J_0b_udsg','WJets_2J_0b_udsg' WJets_0b_udsg = 'WJetsHT0_0b_udsg', 'WJetsHT100_0b_udsg','WJetsHT200_0b_udsg','WJetsHT400_0b_udsg','WJetsHT600_0b_udsg','WJetsHT800_0b_udsg','WJetsHT1200_0b_udsg','WJetsHT2500_0b_udsg','WBJets100_0b_udsg','WBJets200_0b_udsg','WBGenFilter100_0b_udsg','WBGenFilter200_0b_udsg' +#WJets_0b_c = 'WJetsHT0_0b_c','WJetsHT100_0b_c','WJetsHT200_0b_c','WJetsHT400_0b_c','WJetsHT600_0b_c','WJetsHT800_0b_c','WJetsHT1200_0b_c','WJetsHT2500_0b_c','WBJets100_0b_c','WBJets200_0b_c','WBGenFilter100_0b_c','WBGenFilter200_0b_c','W1Jetsnlo0_0b_c','W1Jetsnlo50_0b_c','W1Jetsnlo100_0b_c','W1Jetsnlo150_0b_c','W1Jetsnlo250_0b_c','W1Jetsnlo400_0b_c','W2Jetsnlo0_0b_c','W2Jetsnlo50_0b_c','W2Jetsnlo100_0b_c','W2Jetsnlo150_0b_c','W2Jetsnlo250_0b_c','W2Jetsnlo400_0b_c','WJets_0J_0b_c','WJets_1J_0b_c','WJets_2J_0b_c' WJets_0b_c = 'WJetsHT0_0b_c','WJetsHT100_0b_c','WJetsHT200_0b_c','WJetsHT400_0b_c','WJetsHT600_0b_c','WJetsHT800_0b_c','WJetsHT1200_0b_c','WJetsHT2500_0b_c','WBJets100_0b_c','WBJets200_0b_c','WBGenFilter100_0b_c','WBGenFilter200_0b_c' -WJets_0b_2c = 'WJetsHT0_0b_2c','WJetsHT100_0b_2c','WJetsHT200_0b_2c','WJetsHT400_0b_2c','WJetsHT600_0b_2c','WJetsHT800_0b_2c','WJetsHT1200_0b_2c','WJetsHT2500_0b_2c','WBJets100_0b_2c','WBJets200_0b_2c','WBGenFilter100_0b_2c','WBGenFilter200_0b_2c' +WJets_0b_2c = 'WJetsHT0_0b_2c','WJetsHT100_0b_2c','WJetsHT200_0b_2c','WJetsHT400_0b_2c','WJetsHT600_0b_2c','WJetsHT800_0b_2c','WJetsHT1200_0b_2c','WJetsHT2500_0b_2c','WBJets100_0b_2c','WBJets200_0b_2c','WBGenFilter100_0b_2c','WBGenFilter200_0b_2c','W1Jetsnlo0_0b_2c','W1Jetsnlo50_0b_2c','W1Jetsnlo100_0b_2c','W1Jetsnlo150_0b_2c','W1Jetsnlo250_0b_2c','W1Jetsnlo400_0b_2c','W2Jetsnlo0_0b_2c','W2Jetsnlo50_0b_2c','W2Jetsnlo100_0b_2c','W2Jetsnlo150_0b_2c','W2Jetsnlo250_0b_2c','W2Jetsnlo400_0b_2c','WJets_0J_0b_2c','WJets_1J_0b_2c','WJets_2J_0b_2c' WJets_0b = , +#WJets_1b = 'WJetsHT0_1b','WJetsHT100_1b','WJetsHT200_1b','WJetsHT400_1b','WJetsHT600_1b','WJetsHT800_1b','WJetsHT1200_1b','WJetsHT2500_1b','WBJets100_1b','WBJets200_1b','WBGenFilter100_1b','WBGenFilter200_1b','W1Jetsnlo0_1b','W1Jetsnlo50_1b','W1Jetsnlo100_1b','W1Jetsnlo150_0b_1b','W1Jetsnlo250_1b','W1Jetsnlo400_1b','W2Jetsnlo0_1b','W2Jetsnlo50_1b','W2Jetsnlo100_1b','W2Jetsnlo150_1b','W2Jetsnlo250_1b','W2Jetsnlo400_1b','WJets_0J_1b','WJets_1J_1b','WJets_2J_1b' WJets_1b = 'WJetsHT0_1b','WJetsHT100_1b','WJetsHT200_1b','WJetsHT400_1b','WJetsHT600_1b','WJetsHT800_1b','WJetsHT1200_1b','WJetsHT2500_1b','WBJets100_1b','WBJets200_1b','WBGenFilter100_1b','WBGenFilter200_1b' -WJets_1b_udsg = 'WJetsHT0_1b_udsg','WJetsHT100_1b_udsg','WJetsHT200_1b_udsg','WJetsHT400_1b_udsg','WJetsHT600_1b_udsg','WJetsHT800_1b_udsg','WJetsHT1200_1b_udsg','WJetsHT2500_1b_udsg','WBJets100_1b_udsg','WBJets200_1b_udsg','WBGenFilter100_1b_udsg','WBGenFilter200_1b_udsg' -WJets_1b_c = 'WJetsHT0_1b_c','WJetsHT100_1b_c','WJetsHT200_1b_c','WJetsHT400_1b_c','WJetsHT600_1b_c','WJetsHT800_1b_c','WJetsHT1200_1b_c','WJetsHT2500_1b_c','WBJets100_1b_c','WBJets200_1b_c','WBGenFilter100_1b_c','WBGenFilter200_1b_c' +WJets_1b_udsg = 'WJetsHT0_1b_udsg','WJetsHT100_1b_udsg','WJetsHT200_1b_udsg','WJetsHT400_1b_udsg','WJetsHT600_1b_udsg','WJetsHT800_1b_udsg','WJetsHT1200_1b_udsg','WJetsHT2500_1b_udsg','WBJets100_1b_udsg','WBJets200_1b_udsg','WBGenFilter100_1b_udsg','WBGenFilter200_1b_udsg','W1Jetsnlo0_1b_udsg','W1Jetsnlo50_1b_udsg','W1Jetsnlo100_1b_udsg','W1Jetsnlo150_1b_udsg','W1Jetsnlo250_1b_udsg','W1Jetsnlo400_1b_udsg','W2Jetsnlo0_1b_udsg','W2Jetsnlo50_1b_udsg','W2Jetsnlo100_1b_udsg','W2Jetsnlo150_1b_udsg','W2Jetsnlo250_1b_udsg','W2Jetsnlo400_1b_udsg','WJets_0J_1b_udsg','WJets_1J_1b_udsg','WJets_2J_1b_udsg' +WJets_1b_c = 'WJetsHT0_1b_c','WJetsHT100_1b_c','WJetsHT200_1b_c','WJetsHT400_1b_c','WJetsHT600_1b_c','WJetsHT800_1b_c','WJetsHT1200_1b_c','WJetsHT2500_1b_c','WBJets100_1b_c','WBJets200_1b_c','WBGenFilter100_1b_c','WBGenFilter200_1b_c','W1Jetsnlo0_1b_c','W1Jetsnlo50_1b_c','W1Jetsnlo100_1b_c','W1Jetsnlo150_0b_1b_c','W1Jetsnlo250_1b_c','W1Jetsnlo400_1b_c','W2Jetsnlo0_1b_c','W2Jetsnlo50_1b_c','W2Jetsnlo100_1b_c','W2Jetsnlo150_1b_c','W2Jetsnlo250_1b_c','W2Jetsnlo400_1b_c','WJets_0J_1b_c','WJets_1J_1b_c','WJets_2J_1b_c' +#WJets_2b = 'WJetsHT0_2b','WJetsHT100_2b','WJetsHT200_2b','WJetsHT400_2b','WJetsHT600_2b','WJetsHT800_2b','WJetsHT1200_2b','WJetsHT2500_2b','WBJets100_2b','WBJets200_2b','WBGenFilter100_2b','WBGenFilter200_2b','W1Jetsnlo0_2b','W1Jetsnlo50_2b','W1Jetsnlo100_2b','W1Jetsnlo150_0b_2b','W1Jetsnlo250_2b','W1Jetsnlo400_2b','W2Jetsnlo0_2b','W2Jetsnlo50_2b','W2Jetsnlo100_2b','W2Jetsnlo150_2b','W2Jetsnlo250_2b','W2Jetsnlo400_2b','WJets_0J_2b','WJets_1J_2b','WJets_2J_2b' WJets_2b = 'WJetsHT0_2b','WJetsHT100_2b','WJetsHT200_2b','WJetsHT400_2b','WJetsHT600_2b','WJetsHT800_2b','WJetsHT1200_2b','WJetsHT2500_2b','WBJets100_2b','WBJets200_2b','WBGenFilter100_2b','WBGenFilter200_2b' @@ -2047,6 +3108,14 @@ ZJetsHT800_VJ4 = 'ZJetsHT800_0b_udsg', 'ZJetsHT800_2b','ZJetsHT800_0b_c', 'ZJet ZJetsHT1200_VJ4 = 'ZJetsHT1200_0b_udsg', 'ZJetsHT1200_2b','ZJetsHT1200_0b_c', 'ZJetsHT1200_1b' ZJetsHT2500_VJ4 = 'ZJetsHT2500_0b_udsg', 'ZJetsHT2500_2b','ZJetsHT2500_0b_c', 'ZJetsHT2500_1b' ZJB_VJ4 = 'ZBJets100_0b_udsg','ZBJets100_1b','ZBJets100_2b','ZBJets200_0b_udsg','ZBJets200_1b','ZBJets200_2b','ZBGenFilter100_0b_udsg','ZBGenFilter100_1b','ZBGenFilter100_2b','ZBGenFilter200_0b_udsg','ZBGenFilter200_1b','ZBGenFilter200_2b','ZBJets100_0b_c','ZBJets200_0b_c','ZBGenFilter100_0b_c','ZBGenFilter200_0b_c' +Z1Jetsnlo50_VJ4 = 'Z1Jetsnlo50_0b_udsg', 'Z1Jetsnlo50_2b', 'Z1Jetsnlo50_0b_c', 'Z1Jetsnlo50_1b' +Z1Jetsnlo150_VJ4 = 'Z1Jetsnlo150_0b_udsg', 'Z1Jetsnlo150_2b', 'Z1Jetsnlo150_0b_c', 'Z1Jetsnlo150_1b' +Z1Jetsnlo250_VJ4 = 'Z1Jetsnlo250_0b_udsg', 'Z1Jetsnlo250_2b', 'Z1Jetsnlo250_0b_c', 'Z1Jetsnlo250_1b' +Z1Jetsnlo400_VJ4 = 'Z1Jetsnlo400_0b_udsg', 'Z1Jetsnlo400_2b', 'Z1Jetsnlo400_0b_c', 'Z1Jetsnlo400_1b' +Z2Jetsnlo50_VJ4 = 'Z2Jetsnlo50_0b_udsg', 'Z2Jetsnlo50_2b', 'Z2Jetsnlo50_0b_c', 'Z2Jetsnlo50_1b' +Z2Jetsnlo150_VJ4 = 'Z2Jetsnlo150_0b_udsg', 'Z2Jetsnlo150_2b', 'Z2Jetsnlo150_0b_c', 'Z2Jetsnlo150_1b' +Z2Jetsnlo250_VJ4 = 'Z2Jetsnlo250_0b_udsg', 'Z2Jetsnlo250_2b', 'Z2Jetsnlo250_0b_c', 'Z2Jetsnlo250_1b' +Z2Jetsnlo400_VJ4 = 'Z2Jetsnlo400_0b_udsg', 'Z2Jetsnlo400_2b', 'Z2Jetsnlo400_0b_c', 'Z2Jetsnlo400_1b' ZJetsHT100_Default = 'ZJetsHT100_0b', 'ZJetsHT100_2b', 'ZJetsHT100_1b' ZJetsHT200_Default = 'ZJetsHT200_0b', 'ZJetsHT200_2b', 'ZJetsHT200_1b' @@ -2065,17 +3134,30 @@ ZJetsHT800 = !> ZJetsHT1200 = !> ZJetsHT2500 = !> ZJB = !> - +Z1Jetsnlo50 = !> +Z1Jetsnlo150 = !> +Z1Jetsnlo250 = !> +Z1Jetsnlo400 = !> +Z2Jetsnlo50 = !> +Z2Jetsnlo150 = !> +Z2Jetsnlo250 = !> +Z2Jetsnlo400 = !> + +#ZJets = , , , , , , , ,,,,,,,, ZJets = , , , , , , , -ZJets_0b = 'ZJetsHT100_0b','ZJetsHT200_0b','ZJetsHT400_0b','ZJetsHT600_0b','ZJetsHT800_0b','ZJetsHT1200_0b','ZJetsHT2500_0b','ZBJets100_0b','ZBJets200_0b','ZBGenFilter100_0b','ZBGenFilter200_0b' +ZJets_0b = 'ZJetsHT100_0b','ZJetsHT200_0b','ZJetsHT400_0b','ZJetsHT600_0b','ZJetsHT800_0b','ZJetsHT1200_0b','ZJetsHT2500_0b','ZBJets100_0b','ZBJets200_0b','ZBGenFilter100_0b','ZBGenFilter200_0b','Z1Jetsnlo50_0b','Z1Jetsnlo150_0b','Z1Jetsnlo250_0b','Z1Jetsnlo400_0b','Z2Jetsnlo50_0b','Z2Jetsnlo150_0b','Z2Jetsnlo250_0b','Z2Jetsnlo400_0b' +#ZJets_0b_udsg = 'ZJetsHT100_0b_udsg','ZJetsHT200_0b_udsg','ZJetsHT400_0b_udsg','ZJetsHT600_0b_udsg','ZJetsHT800_0b_udsg','ZJetsHT1200_0b_udsg','ZJetsHT2500_0b_udsg','ZBJets100_0b_udsg','ZBJets200_0b_udsg','ZBGenFilter100_0b_udsg','ZBGenFilter200_0b_udsg','Z1Jetsnlo50_0b_udsg','Z1Jetsnlo150_0b_udsg','Z1Jetsnlo250_0b_udsg','Z1Jetsnlo400_0b_udsg','Z2Jetsnlo50_0b_udsg','Z2Jetsnlo150_0b_udsg','Z2Jetsnlo250_0b_udsg','Z2Jetsnlo400_0b_udsg' ZJets_0b_udsg = 'ZJetsHT100_0b_udsg','ZJetsHT200_0b_udsg','ZJetsHT400_0b_udsg','ZJetsHT600_0b_udsg','ZJetsHT800_0b_udsg','ZJetsHT1200_0b_udsg','ZJetsHT2500_0b_udsg','ZBJets100_0b_udsg','ZBJets200_0b_udsg','ZBGenFilter100_0b_udsg','ZBGenFilter200_0b_udsg' -ZJets_1b_udsg = 'ZJetsHT100_1b_udsg','ZJetsHT200_1b_udsg','ZJetsHT400_1b_udsg','ZJetsHT600_1b_udsg','ZJetsHT800_1b_udsg','ZJetsHT1200_1b_udsg','ZJetsHT2500_1b_udsg','ZBJets100_1b_udsg','ZBJets200_1b_udsg','ZBGenFilter100_1b_udsg','ZBGenFilter200_1b_udsg' +ZJets_1b_udsg = 'ZJetsHT100_1b_udsg','ZJetsHT200_1b_udsg','ZJetsHT400_1b_udsg','ZJetsHT600_1b_udsg','ZJetsHT800_1b_udsg','ZJetsHT1200_1b_udsg','ZJetsHT2500_1b_udsg','ZBJets100_1b_udsg','ZBJets200_1b_udsg','ZBGenFilter100_1b_udsg','ZBGenFilter200_1b_udsg','Z1Jetsnlo50_1b_udsg','Z1Jetsnlo150_1b_udsg','Z1Jetsnlo250_1b_udsg','Z1Jetsnlo400_1b_udsg','Z2Jetsnlo50_1b_udsg','Z2Jetsnlo150_1b_udsg','Z2Jetsnlo250_1b_udsg','Z2Jetsnlo400_1b_udsg' +#ZJets_1b = 'ZJetsHT100_1b','ZJetsHT200_1b','ZJetsHT400_1b','ZJetsHT600_1b','ZJetsHT800_1b','ZJetsHT1200_1b','ZJetsHT2500_1b','ZBJets100_1b','ZBJets200_1b','ZBGenFilter100_1b','ZBGenFilter200_1b','Z1Jetsnlo50_1b','Z1Jetsnlo150_1b','Z1Jetsnlo250_1b','Z1Jetsnlo400_1b','Z2Jetsnlo50_1b','Z2Jetsnlo150_1b','Z2Jetsnlo250_1b','Z2Jetsnlo400_1b' ZJets_1b = 'ZJetsHT100_1b','ZJetsHT200_1b','ZJetsHT400_1b','ZJetsHT600_1b','ZJetsHT800_1b','ZJetsHT1200_1b','ZJetsHT2500_1b','ZBJets100_1b','ZBJets200_1b','ZBGenFilter100_1b','ZBGenFilter200_1b' +#ZJets_2b = 'ZJetsHT100_2b','ZJetsHT200_2b','ZJetsHT400_2b','ZJetsHT600_2b','ZJetsHT800_2b','ZJetsHT1200_2b','ZJetsHT2500_2b','ZBJets100_2b','ZBJets200_2b','ZBGenFilter100_2b','ZBGenFilter200_2b','Z1Jetsnlo50_2b','Z1Jetsnlo150_2b','Z1Jetsnlo250_2b','Z1Jetsnlo400_2b','Z2Jetsnlo50_2b','Z2Jetsnlo150_2b','Z2Jetsnlo250_2b','Z2Jetsnlo400_2b' ZJets_2b = 'ZJetsHT100_2b','ZJetsHT200_2b','ZJetsHT400_2b','ZJetsHT600_2b','ZJetsHT800_2b','ZJetsHT1200_2b','ZJetsHT2500_2b','ZBJets100_2b','ZBJets200_2b','ZBGenFilter100_2b','ZBGenFilter200_2b' +#ZJets_0b_c = 'ZJetsHT100_0b_c','ZJetsHT200_0b_c','ZJetsHT400_0b_c','ZJetsHT600_0b_c','ZJetsHT800_0b_c','ZJetsHT1200_0b_c','ZJetsHT2500_0b_c','ZBJets100_0b_c','ZBJets200_0b_c','ZBGenFilter100_0b_c','ZBGenFilter200_0b_c','Z1Jetsnlo50_0b_c','Z1Jetsnlo150_0b_c','Z1Jetsnlo250_0b_c','Z1Jetsnlo400_0b_c','Z2Jetsnlo50_0b_c','Z2Jetsnlo150_0b_c','Z2Jetsnlo250_0b_c','Z2Jetsnlo400_c' ZJets_0b_c = 'ZJetsHT100_0b_c','ZJetsHT200_0b_c','ZJetsHT400_0b_c','ZJetsHT600_0b_c','ZJetsHT800_0b_c','ZJetsHT1200_0b_c','ZJetsHT2500_0b_c','ZBJets100_0b_c','ZBJets200_0b_c','ZBGenFilter100_0b_c','ZBGenFilter200_0b_c' -ZJets_1b_c = 'ZJetsHT100_1b_c','ZJetsHT200_1b_c','ZJetsHT400_1b_c','ZJetsHT600_1b_c','ZJetsHT800_1b_c','ZJetsHT1200_1b_c','ZJetsHT2500_1b_c','ZBJets100_1b_c','ZBJets200_1b_c','ZBGenFilter100_1b_c','ZBGenFilter200_1b_c' -ZJets_0b_2c = 'ZJetsHT100_0b_2c','ZJetsHT200_0b_2c','ZJetsHT400_0b_2c','ZJetsHT600_0b_2c','ZJetsHT800_0b_2c','ZJetsHT1200_0b_2c','ZJetsHT2500_0b_2c','ZBJets100_0b_2c','ZBJets200_0b_2c','ZBGenFilter100_0b_2c','ZBGenFilter200_0b_2c' +ZJets_1b_c = 'ZJetsHT100_1b_c','ZJetsHT200_1b_c','ZJetsHT400_1b_c','ZJetsHT600_1b_c','ZJetsHT800_1b_c','ZJetsHT1200_1b_c','ZJetsHT2500_1b_c','ZBJets100_1b_c','ZBJets200_1b_c','ZBGenFilter100_1b_c','ZBGenFilter200_1b_c','Z1Jetsnlo50_1b_c','Z1Jetsnlo150_1b_c','Z1Jetsnlo250_1b_c','Z1Jetsnlo400_1b_c','Z2Jetsnlo50_1b_c','Z2Jetsnlo150_1b_c','Z2Jetsnlo250_1b_c','Z2Jetsnlo400_1b_c' +ZJets_0b_2c = 'ZJetsHT100_0b_2c','ZJetsHT200_0b_2c','ZJetsHT400_0b_2c','ZJetsHT600_0b_2c','ZJetsHT800_0b_2c','ZJetsHT1200_0b_2c','ZJetsHT2500_0b_2c','ZBJets100_0b_2c','ZBJets200_0b_2c','ZBGenFilter100_0b_2c','ZBGenFilter200_0b_2c','Z1Jetsnlo50_0b_2c','Z1Jetsnlo150_0b_2c','Z1Jetsnlo250_0b_2c','Z1Jetsnlo400_0b_2c','Z2Jetsnlo50_0b_2c','Z2Jetsnlo150_0b_2c','Z2Jetsnlo250_0b_2c','Z2Jetsnlo400_0b_2c' #----- DY -----# ;70to100 broken in 2017 @@ -2101,6 +3183,18 @@ DYHT600_VJ4 = 'HT600to800ZJets_0b_udsg', 'HT600to800ZJets_0b_c', 'HT600to80 DYHT800_VJ4 = 'HT800to1200ZJets_0b_udsg', 'HT800to1200ZJets_0b_c', 'HT800to1200ZJets_1b', 'HT800to1200ZJets_2b' DYHT1200_VJ4 = 'HT1200to2500ZJets_0b_udsg', 'HT1200to2500ZJets_0b_c', 'HT1200to2500ZJets_1b', 'HT1200to2500ZJets_2b' DYHT2500_VJ4 = 'HT2500toinfZJets_0b_udsg', 'HT2500toinfZJets_0b_c', 'HT2500toinfZJets_1b', 'HT2500toinfZJets_2b' +DY1nlo50_VJ4 = 'DY1nlo50_0b_udsg', 'DY1nlo50_0b_c', 'DY1nlo50_1b', 'DY1nlo50_2b' +DY1nlo150_VJ4 = 'DY1nlo150_0b_udsg', 'DY1nlo150_0b_c', 'DY1nlo150_1b', 'DY1nlo150_2b' +DY1nlo250_VJ4 = 'DY1nlo250_0b_udsg', 'DY1nlo250_0b_c', 'DY1nlo250_1b', 'DY1nlo250_2b' +DY1nlo400_VJ4 = 'DY1nlo400_0b_udsg', 'DY1nlo400_0b_c', 'DY1nlo400_1b', 'DY1nlo400_2b' +DY2nlo50_VJ4 = 'DY2nlo50_0b_udsg', 'DY2nlo50_0b_c', 'DY2nlo50_1b', 'DY2nlo50_2b' +DY2nlo150_VJ4 = 'DY2nlo150_0b_udsg', 'DY2nlo150_0b_c', 'DY2nlo150_1b', 'DY2nlo150_2b' +DY2nlo250_VJ4 = 'DY2nlo250_0b_udsg', 'DY2nlo250_0b_c', 'DY2nlo250_1b', 'DY2nlo250_2b' +DY2nlo400_VJ4 = 'DY2nlo400_0b_udsg', 'DY2nlo400_0b_c', 'DY2nlo400_1b', 'DY2nlo400_2b' +DYnloINCL_VJ4 = 'DYnloINCL_0b_udsg', 'DYnloINCL_0b_c', 'DYnloINCL_1b', 'DYnloINCL_2b' +DYJets_0J_VJ4 = 'DYJets_0J_0b_udsg', 'DYJets_0J_0b_c', 'DYJets_0J_1b', 'DYJets_0J_2b' +DYJets_1J_VJ4 = 'DYJets_1J_0b_udsg', 'DYJets_1J_0b_c', 'DYJets_1J_1b', 'DYJets_1J_2b' +DYJets_2J_VJ4 = 'DYJets_2J_0b_udsg', 'DYJets_2J_0b_c', 'DYJets_2J_1b', 'DYJets_2J_2b' DYHT0_Default = 'HT0to70ZJets_0b', 'HT0to70ZJets_1b', 'HT0to70ZJets_2b' DYHT70_Default = 'HT70to100ZJets_0b', 'HT70to100ZJets_1b', 'HT70to100ZJets_2b' @@ -2122,22 +3216,26 @@ DYJetsBGenFilter_Default = 'DYJetsBGenFilter_100to200_0b','DYJetsBGenFilter_100t DYBJets = !> DYJetsBGenFilter = !> +#DYnlo = !>,!>,!>,!>,!>,!>,!>,!>,!> +DYnlo = !>,!>,!>,!>,!>,!>,!>,!>,!>,!>,!>,!> DYlo = ,,, +#DY = , DY = -DynloIncl = 'DYnloIncl_0b','DYnloIncl_1b','DYnloIncl_2b' -DYnlom50 = -DYnlo = - -DY_0b = 'M4HT100to200_0b','M4HT200to400_0b','M4HT400to600_0b','M4HT600toInf_0b','HTinclZJets_0b','HT70to100ZJets_0b','HT100to200ZJets_0b','HT200to400ZJets_0b','HT400to600ZJets_0b','HT600to800ZJets_0b','HT800to1200ZJets_0b','HT1200to2500ZJets_0b','HT2500toinfZJets_0b','DYBJets_100to200_0b','DYBJets_200toInf_0b','DYJetsBGenFilter_100to200_0b','DYJetsBGenFilter_200toInf_0b' -DY_1b = 'M4HT100to200_1b','M4HT200to400_1b','M4HT400to600_1b','M4HT600toInf_1b','HTinclZJets_1b','HT70to100ZJets_1b','HT100to200ZJets_1b','HT200to400ZJets_1b','HT400to600ZJets_1b','HT600to800ZJets_1b','HT800to1200ZJets_1b','HT1200to2500ZJets_1b','HT2500toinfZJets_1b','DYBJets_100to200_1b','DYBJets_200toInf_1b','DYJetsBGenFilter_100to200_1b','DYJetsBGenFilter_200toInf_1b' -DY_2b = 'M4HT100to200_2b','M4HT200to400_2b','M4HT400to600_2b','M4HT600toInf_2b','HTinclZJets_2b','HT70to100ZJets_2b','HT100to200ZJets_2b','HT200to400ZJets_2b','HT400to600ZJets_2b','HT600to800ZJets_2b','HT800to1200ZJets_2b','HT1200to2500ZJets_2b','HT2500toinfZJets_2b','DYBJets_100to200_2b','DYBJets_200toInf_2b','DYJetsBGenFilter_100to200_2b','DYJetsBGenFilter_200toInf_2b' -DY_0b_udsg = 'M4HT100to200_0b_udsg','M4HT200to400_0b_udsg','M4HT400to600_0b_udsg','M4HT600toInf_0b_udsg','HTinclZJets_0b_udsg','HT70to100ZJets_0b_udsg','HT100to200ZJets_0b_udsg','HT200to400ZJets_0b_udsg','HT400to600ZJets_0b_udsg','HT600to800ZJets_0b_udsg','HT800to1200ZJets_0b_udsg','HT1200to2500ZJets_0b_udsg','HT2500toinfZJets_0b_udsg','DYBJets_100to200_0b_udsg','DYBJets_200toInf_0b_udsg','DYJetsBGenFilter_100to200_0b_udsg','DYJetsBGenFilter_200toInf_0b_udsg' -DY_0b_c = 'M4HT100to200_0b_c','M4HT200to400_0b_c','M4HT400to600_0b_c','M4HT600toInf_0b_c','HTinclZJets_0b_c','HT70to100ZJets_0b_c','HT100to200ZJets_0b_c','HT200to400ZJets_0b_c','HT400to600ZJets_0b_c','HT600to800ZJets_0b_c','HT800to1200ZJets_0b_c','HT1200to2500ZJets_0b_c','HT2500toinfZJets_0b_c','DYBJets_100to200_0b_c','DYBJets_200toInf_0b_c','DYJetsBGenFilter_100to200_0b_c','DYJetsBGenFilter_200toInf_0b_c' -#DY_1b = 'M4HT100to200_1b','M4HT200to400_1b','M4HT400to600_1b','M4HT600toInf_1b','HTinclZJets_1b','HT100to200ZJets_1b','HT200to400ZJets_1b','HT400to600ZJets_1b','HT600to800ZJets_1b','HT800to1200ZJets_1b','HT1200to2500ZJets_1b','HT2500toinfZJets_1b','DYBJets_100to200_1b','DYBJets_200toInf_1b','DYJetsBGenFilter_100to200_1b','DYJetsBGenFilter_200toInf_1b' -#DY_2b = 'M4HT100to200_2b','M4HT200to400_2b','M4HT400to600_2b','M4HT600toInf_2b','HTinclZJets_2b','HT100to200ZJets_2b','HT200to400ZJets_2b','HT400to600ZJets_2b','HT600to800ZJets_2b','HT800to1200ZJets_2b','HT1200to2500ZJets_2b','HT2500toinfZJets_2b','DYBJets_100to200_2b','DYBJets_200toInf_2b','DYJetsBGenFilter_100to200_2b','DYJetsBGenFilter_200toInf_2b' -#DY_0b_udsg = 'M4HT100to200_0b_udsg','M4HT200to400_0b_udsg','M4HT400to600_0b_udsg','M4HT600toInf_0b_udsg','HTinclZJets_0b_udsg','HT100to200ZJets_0b_udsg','HT200to400ZJets_0b_udsg','HT400to600ZJets_0b_udsg','HT600to800ZJets_0b_udsg','HT800to1200ZJets_0b_udsg','HT1200to2500ZJets_0b_udsg','HT2500toinfZJets_0b_udsg','DYBJets_100to200_0b_udsg','DYBJets_200toInf_0b_udsg','DYJetsBGenFilter_100to200_0b_udsg','DYJetsBGenFilter_200toInf_0b_udsg' -#DY_0b_c = 'M4HT100to200_0b_c','M4HT200to400_0b_c','M4HT400to600_0b_c','M4HT600toInf_0b_c','HTinclZJets_0b_c','HT100to200ZJets_0b_c','HT200to400ZJets_0b_c','HT400to600ZJets_0b_c','HT600to800ZJets_0b_c','HT800to1200ZJets_0b_c','HT1200to2500ZJets_0b_c','HT2500toinfZJets_0b_c','DYBJets_100to200_0b_c','DYBJets_200toInf_0b_c','DYJetsBGenFilter_100to200_0b_c','DYJetsBGenFilter_200toInf_0b_c' + +#DynloIncl = 'DYnloIncl_0b','DYnloIncl_1b','DYnloIncl_2b' +#DYnlom50 = +#DYnlo = + +#DY_0b = 'M4HT100to200_0b','M4HT200to400_0b','M4HT400to600_0b','M4HT600toInf_0b','HTinclZJets_0b','HT70to100ZJets_0b','HT100to200ZJets_0b','HT200to400ZJets_0b','HT400to600ZJets_0b','HT600to800ZJets_0b','HT800to1200ZJets_0b','HT1200to2500ZJets_0b','HT2500toinfZJets_0b','DYBJets_100to200_0b','DYBJets_200toInf_0b','DYJetsBGenFilter_100to200_0b','DYJetsBGenFilter_200toInf_0b', 'DY1nlo50_0b', 'DY1nlo150_0b','DY1nlo250_0b', 'DY1nlo400_0b','DY2nlo50_0b','DY2nlo150_0b','DY2nlo250_0b','DY2nlo400_0b','DYnloINCL_0b','DYJets_0J_0b','DYJets_1J_0b','DYJets_2J_0b' +#DY_1b = 'M4HT100to200_1b','M4HT200to400_1b','M4HT400to600_1b','M4HT600toInf_1b','HTinclZJets_1b','HT70to100ZJets_1b','HT100to200ZJets_1b','HT200to400ZJets_1b','HT400to600ZJets_1b','HT600to800ZJets_1b','HT800to1200ZJets_1b','HT1200to2500ZJets_1b','HT2500toinfZJets_1b','DYBJets_100to200_1b','DYBJets_200toInf_1b','DYJetsBGenFilter_100to200_1b','DYJetsBGenFilter_200toInf_1b','DY1nlo50_1b', 'DY1nlo150_1b','DY1nlo250_1b', 'DY1nlo400_1b','DY2nlo50_1b','DY2nlo150_1b','DY2nlo250_1b','DY2nlo400_1b','DYnloINCL_1b','DYJets_0J_1b','DYJets_1J_1b','DYJets_2J_1b' +#DY_2b = 'M4HT100to200_2b','M4HT200to400_2b','M4HT400to600_2b','M4HT600toInf_2b','HTinclZJets_2b','HT70to100ZJets_2b','HT100to200ZJets_2b','HT200to400ZJets_2b','HT400to600ZJets_2b','HT600to800ZJets_2b','HT800to1200ZJets_2b','HT1200to2500ZJets_2b','HT2500toinfZJets_2b','DYBJets_100to200_2b','DYBJets_200toInf_2b','DYJetsBGenFilter_100to200_2b','DYJetsBGenFilter_200toInf_2b','DY1nlo50_2b', 'DY1nlo150_2b','DY1nlo250_2b', 'DY1nlo400_2b','DY2nlo50_2b','DY2nlo150_2b','DY2nlo250_2b','DY2nlo400_2b','DYnloINCL_2b','DYJets_0J_2b','DYJets_1J_2b','DYJets_2J_2b' +#DY_0b_udsg = 'M4HT100to200_0b_udsg','M4HT200to400_0b_udsg','M4HT400to600_0b_udsg','M4HT600toInf_0b_udsg','HTinclZJets_0b_udsg','HT70to100ZJets_0b_udsg','HT100to200ZJets_0b_udsg','HT200to400ZJets_0b_udsg','HT400to600ZJets_0b_udsg','HT600to800ZJets_0b_udsg','HT800to1200ZJets_0b_udsg','HT1200to2500ZJets_0b_udsg','HT2500toinfZJets_0b_udsg','DYBJets_100to200_0b_udsg','DYBJets_200toInf_0b_udsg','DYJetsBGenFilter_100to200_0b_udsg','DYJetsBGenFilter_200toInf_0b_udsg','DY1nlo50_0b_udsg', 'DY1nlo150_0b_udsg','DY1nlo250_0b_udsg','DY1nlo400_0b_udsg','DY2nlo50_0b_udsg','DY2nlo150_0b_udsg','DY2nlo250_0b_udsg','DY2nlo400_0b_udsg','DYnloINCL_0b_udsg','DYJets_0J_0b_udsg','DYJets_1J_0b_udsg','DYJets_2J_0b_udsg' +#DY_0b_c = 'M4HT100to200_0b_c','M4HT200to400_0b_c','M4HT400to600_0b_c','M4HT600toInf_0b_c','HTinclZJets_0b_c','HT70to100ZJets_0b_c','HT100to200ZJets_0b_c','HT200to400ZJets_0b_c','HT400to600ZJets_0b_c','HT600to800ZJets_0b_c','HT800to1200ZJets_0b_c','HT1200to2500ZJets_0b_c','HT2500toinfZJets_0b_c','DYBJets_100to200_0b_c','DYBJets_200toInf_0b_c','DYJetsBGenFilter_100to200_0b_c','DYJetsBGenFilter_200toInf_0b_c','DY1nlo50_0b_c', 'DY1nlo150_0b_c','DY1nlo250_0b_c', 'DY1nlo400_0b_c','DY2nlo50_0b_c','DY2nlo150_0b_c','DY2nlo250_0b_c','DY2nlo400_0b_c','DYnloINCL_0b_c','DYJets_0J_0b_c','DYJets_1J_0b_c','DYJets_2J_0b_c' +DY_1b = 'M4HT100to200_1b','M4HT200to400_1b','M4HT400to600_1b','M4HT600toInf_1b','HTinclZJets_1b','HT100to200ZJets_1b','HT200to400ZJets_1b','HT400to600ZJets_1b','HT600to800ZJets_1b','HT800to1200ZJets_1b','HT1200to2500ZJets_1b','HT2500toinfZJets_1b','DYBJets_100to200_1b','DYBJets_200toInf_1b','DYJetsBGenFilter_100to200_1b','DYJetsBGenFilter_200toInf_1b' +DY_2b = 'M4HT100to200_2b','M4HT200to400_2b','M4HT400to600_2b','M4HT600toInf_2b','HTinclZJets_2b','HT100to200ZJets_2b','HT200to400ZJets_2b','HT400to600ZJets_2b','HT600to800ZJets_2b','HT800to1200ZJets_2b','HT1200to2500ZJets_2b','HT2500toinfZJets_2b','DYBJets_100to200_2b','DYBJets_200toInf_2b','DYJetsBGenFilter_100to200_2b','DYJetsBGenFilter_200toInf_2b' +DY_0b_udsg = 'M4HT100to200_0b_udsg','M4HT200to400_0b_udsg','M4HT400to600_0b_udsg','M4HT600toInf_0b_udsg','HTinclZJets_0b_udsg','HT100to200ZJets_0b_udsg','HT200to400ZJets_0b_udsg','HT400to600ZJets_0b_udsg','HT600to800ZJets_0b_udsg','HT800to1200ZJets_0b_udsg','HT1200to2500ZJets_0b_udsg','HT2500toinfZJets_0b_udsg','DYBJets_100to200_0b_udsg','DYBJets_200toInf_0b_udsg','DYJetsBGenFilter_100to200_0b_udsg','DYJetsBGenFilter_200toInf_0b_udsg' +DY_0b_c = 'M4HT100to200_0b_c','M4HT200to400_0b_c','M4HT400to600_0b_c','M4HT600toInf_0b_c','HTinclZJets_0b_c','HT100to200ZJets_0b_c','HT200to400ZJets_0b_c','HT400to600ZJets_0b_c','HT600to800ZJets_0b_c','HT800to1200ZJets_0b_c','HT1200to2500ZJets_0b_c','HT2500toinfZJets_0b_c','DYBJets_100to200_0b_c','DYBJets_200toInf_0b_c','DYJetsBGenFilter_100to200_0b_c','DYJetsBGenFilter_200toInf_0b_c' #DYm50_0b = 'HT0to100ZJets_0b','HT100to200ZJets_0b','HT200to400ZJets_0b','HT400to600ZJets_0b','HT600to800ZJets_0b','HT800to1200ZJets_0b','HT1200to2500ZJets_0b','HT2500toinfZJets_0b','DYBJets_100to200_0b','DYBJets_200toInf_0b','DYJetsBGenFilter_100to200_0b','DYJetsBGenFilter_200toInf_0b' #DYm50_1b = 'HT0to100ZJets_1b','HT100to200ZJets_1b','HT200to400ZJets_1b','HT400to600ZJets_1b','HT600to800ZJets_1b','HT800to1200ZJets_1b','HT1200to2500ZJets_1b','HT2500toinfZJets_1b','DYBJets_100to200_1b','DYBJets_200toInf_1b','DYJetsBGenFilter_100to200_1b','DYJetsBGenFilter_200toInf_1b' diff --git a/python/VHbb2017commonconfig/systematics.ini b/python/VHbb2017commonconfig/systematics.ini index 5d3ee6e38..14f4b90f6 100644 --- a/python/VHbb2017commonconfig/systematics.ini +++ b/python/VHbb2017commonconfig/systematics.ini @@ -12,6 +12,8 @@ mSD_sys_2017 = mSD_sys_2017.mSD_sys_2017(year='2017',backupPreviousCorrection JetSmearer = JetSmearer.JetSmearer(year='2017') METXY = METXY.METXY(year='2017') +FlagOverlapFromFile = FlagOverlapFromFile.FlagOverlapFromFile('/work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/VHbb2017commonconfig/SR_V5_V11_overlap_new.pickle', '/work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/VHbb2017commonconfig/CR_V5_V11_overlap_new.pickle', '/work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/VHbb2017commonconfig/NormOverlap.txt') + # this can be used to print the branch contents before and after a module which modifies a branch DebugBefore = TestTree.TestTree(checkpoint='before', branch='Jet_PtReg', branchIndex=0, formula='Jet_PtReg[0]') DebugAfter = TestTree.TestTree(checkpoint='after', branch='Jet_PtReg', branchIndex=0, formula='Jet_PtReg[0]') @@ -32,9 +34,9 @@ vLeptons = vLeptons.vLeptons() Generator = ['VHbbCommon.HeppyStyleGen'] # b-tag SF for DeepJet -BTagSFDeepCSV = BTagWeightsFromCSV.BTagWeights(calibName='DeepCSV',calibFile='data/btag/DeepCSV_94XSF_V5_B_F.csv',method='iterativefit',jetBtagBranchName='Jet_btagDeepB',decorrelatePtEta=True) -BTagSFDeepCSV_V2 = BTagWeightsFromCSV.BTagWeights(calibName='DeepCSV',calibFile='data/btag/DeepCSV_94XSF_V2_B_F.csv',branchName='bTagWeightDeepCSV_V2',method='iterativefit',jetBtagBranchName='Jet_btagDeepB',decorrelatePtEta=True) -BTagSFDeepJet = BTagWeightsFromCSV.BTagWeights(calibName='DeepJet',calibFile='data/btag/DeepFlavour_94XSF_V4_B_F.csv',method='iterativefit',jetBtagBranchName='Jet_btagDeepFlavB',decorrelatePtEta=True) +BTagSFDeepCSV = BTagWeightsFromCSV.BTagWeights(calibName='DeepCSV',calibFile='data/btag/DeepCSV_94XSF_V5_B_F.csv',method='iterativefit',jetBtagBranchName='Jet_btagDeepB',decorrelatePtEta=True,jetIdCut=1) +BTagSFDeepCSV_V2 = BTagWeightsFromCSV.BTagWeights(calibName='DeepCSV',calibFile='data/btag/DeepCSV_94XSF_V2_B_F.csv',branchName='bTagWeightDeepCSV_V2',method='iterativefit',jetBtagBranchName='Jet_btagDeepB',decorrelatePtEta=True,jetIdCut=1) +BTagSFDeepJet = BTagWeightsFromCSV.BTagWeights(calibName='DeepJet',calibFile='data/btag/DeepFlavour_94XSF_V4_B_F.csv',method='iterativefit',jetBtagBranchName='Jet_btagDeepFlavB',decorrelatePtEta=True,jetIdCut=1) BTagSF = !> # double b-tag SF @@ -53,13 +55,13 @@ LOtoNLOweight = LOtoNLOweight.LOtoNLOweight(year=2017) LOtoNLOweightV7 = LOtoNLOweightFromRootFile.LOtoNLOweightFromRootFile(fileName="NLOv7/nloweight_histograms_{sample}_V7_{nb}b.root") # Higgs reco -HiggsReco = HiggsCandidateSystematics.HiggsCandidateSystematics(addSystematics=True) +HiggsReco = HiggsCandidateSystematics.HiggsCandidateSystematics(addSystematics=True, puIdCut=6, jetIdCut=1) # write stitching factors as branch DYspecialWeight = DYspecialWeight.DYspecialWeight() # Jet PU ID scale factors -JetPUIDSF = JetPUIDSF.JetPUIDSF(year=2017,fName_sf="data/jetPUID/Oct2019/h2_eff_sf_2017_T.root",hName_sf="h2_eff_sf2017_T",fName_mcEff="data/jetPUID/Oct2019/h2_eff_mc_2017_T.root",hName_mcEff="h2_eff_mc2017_T") +JetPUIDSF = JetPUIDSF.JetPUIDSF(year=2017,fName_sf="data/jetPUID/Oct2019/h2_eff_sf_2017_T.root",hName_sf="h2_eff_sf2017_T",fName_mcEff="data/jetPUID/Oct2019/h2_eff_mc_2017_T.root",hName_mcEff="h2_eff_mc2017_T",jetIdCut=1) JetPUIDSF302p4 = JetPUIDSF.JetPUIDSF(year=2017,workingPoint='tight',ptCut=30.0,etaCut=2.4) JetPUIDSF302p5 = JetPUIDSF.JetPUIDSF(year=2017,workingPoint='tight',ptCut=30.0,etaCut=2.5) JetPUIDSFmedium = JetPUIDSF.JetPUIDSF(branchName='weightJetPUIDmedium',year=2017,workingPoint='medium') @@ -70,7 +72,7 @@ DropOldDNN = Drop.Drop(dropBranches=['BDT_DNN2017*']) BTagSFDeepCSV_noPU = BTagWeightsFromCSV.BTagWeights(branchName='bTagWeightDeepCSVnoPUid',calibName='DeepCSV',calibFile='data/btag/DeepCSV_94XSF_V4_B_F.csv',method='iterativefit',jetBtagBranchName='Jet_btagDeepB',decorrelatePtEta=True,puIdCut=-1) BTagSFDeepCSV_selected = BTagWeightsFromCSV.BTagWeights(branchName='bTagWeightDeepCSVselected',calibName='DeepCSV',calibFile='data/btag/DeepCSV_94XSF_V4_B_F.csv',method='iterativefit',jetBtagBranchName='Jet_btagDeepB',decorrelatePtEta=True,selected=True) -VReco = VReco.VReco() +VReco = VReco.VReco(puIdCut=6, jetIdCut=1) Vcut = Vcut.Vcut() isBoosted = isBoosted.isBoosted(useFlags=True) @@ -627,26 +629,25 @@ CheckDuplicateEvents = CheckDuplicateEvents.CheckDuplicateEvents() [Weights] #----- LHE scale ------# -CMS_LHE_weights_scale_muR_ZH_UP: *LHEScaleWeight[7] -CMS_LHE_weights_scale_muR_WH_UP: *LHEScaleWeight[7] -CMS_LHE_weights_scale_muR_ggZH_UP: *LHEScaleWeight[7] -CMS_LHE_weights_scale_muR_TT_UP: *LHEScaleWeight[7] -CMS_LHE_weights_scale_muR_Zj0b_UP: *LHEScaleWeight[7] -CMS_LHE_weights_scale_muR_Zj0b_udsg_UP: *LHEScaleWeight[7] -CMS_LHE_weights_scale_muR_Zj0b_c_UP: *LHEScaleWeight[7] -CMS_LHE_weights_scale_muR_Zj1b_UP: *LHEScaleWeight[7] -CMS_LHE_weights_scale_muR_Zj2b_UP: *LHEScaleWeight[7] -CMS_LHE_weights_scale_muR_Wj0b_udsg_UP: *LHEScaleWeight[7] -CMS_LHE_weights_scale_muR_Wj0b_c_UP: *LHEScaleWeight[7] -CMS_LHE_weights_scale_muR_Wj0b_UP: *LHEScaleWeight[7] -CMS_LHE_weights_scale_muR_Wj0b_2c_UP: *LHEScaleWeight[7] -CMS_LHE_weights_scale_muR_Wj1b_UP: *LHEScaleWeight[7] -CMS_LHE_weights_scale_muR_Wj1b_udsg_UP: *LHEScaleWeight[7] -CMS_LHE_weights_scale_muR_Wj1b_c_UP: *LHEScaleWeight[7] -CMS_LHE_weights_scale_muR_Wj2b_UP: *LHEScaleWeight[7] -CMS_LHE_weights_scale_muR_QCD_UP: *LHEScaleWeight[7] -CMS_LHE_weights_scale_muR_VVHF_UP: *LHEScaleWeight[7] -CMS_LHE_weights_scale_muR_VVLF_UP: *LHEScaleWeight[7] +CMS_LHE_weights_scale_muR_ZH_UP: *((LHEScaleWeight[7])*(nLHEScaleWeight==9) + (LHEScaleWeight[6])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muR_WH_UP: *((LHEScaleWeight[7])*(nLHEScaleWeight==9) + (LHEScaleWeight[6])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muR_ggZH_UP: *((LHEScaleWeight[7])*(nLHEScaleWeight==9) + (LHEScaleWeight[6])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muR_TT_UP: *((LHEScaleWeight[7])*(nLHEScaleWeight==9) + (LHEScaleWeight[6])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muR_Zj0b_UP: *((LHEScaleWeight[7])*(nLHEScaleWeight==9) + (LHEScaleWeight[6])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muR_Zj0b_udsg_UP: *((LHEScaleWeight[7])*(nLHEScaleWeight==9) + (LHEScaleWeight[6])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muR_Zj0b_c_UP: *((LHEScaleWeight[7])*(nLHEScaleWeight==9) + (LHEScaleWeight[6])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muR_Zj1b_UP: *((LHEScaleWeight[7])*(nLHEScaleWeight==9) + (LHEScaleWeight[6])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muR_Zj2b_UP: *((LHEScaleWeight[7])*(nLHEScaleWeight==9) + (LHEScaleWeight[6])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muR_Zjb_UP: *((LHEScaleWeight[7])*(nLHEScaleWeight==9) + (LHEScaleWeight[6])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muR_Wj0b_UP: *((LHEScaleWeight[7])*(nLHEScaleWeight==9) + (LHEScaleWeight[6])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muR_Wj0b_udsg_UP: *((LHEScaleWeight[7])*(nLHEScaleWeight==9) + (LHEScaleWeight[6])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muR_Wj0b_c_UP: *((LHEScaleWeight[7])*(nLHEScaleWeight==9) + (LHEScaleWeight[6])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muR_Wj1b_UP: *((LHEScaleWeight[7])*(nLHEScaleWeight==9) + (LHEScaleWeight[6])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muR_Wj2b_UP: *((LHEScaleWeight[7])*(nLHEScaleWeight==9) + (LHEScaleWeight[6])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muR_Wjb_UP: *((LHEScaleWeight[7])*(nLHEScaleWeight==9) + (LHEScaleWeight[6])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muR_QCD_UP: *((LHEScaleWeight[7])*(nLHEScaleWeight==9) + (LHEScaleWeight[6])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muR_VVHF_UP: *((LHEScaleWeight[7])*(nLHEScaleWeight==9) + (LHEScaleWeight[6])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muR_VVLF_UP: *((LHEScaleWeight[7])*(nLHEScaleWeight==9) + (LHEScaleWeight[6])*(nLHEScaleWeight==8)) CMS_LHE_weights_scale_muR_ZH_DOWN: *LHEScaleWeight[1] CMS_LHE_weights_scale_muR_WH_DOWN: *LHEScaleWeight[1] CMS_LHE_weights_scale_muR_ggZH_DOWN: *LHEScaleWeight[1] @@ -656,38 +657,36 @@ CMS_LHE_weights_scale_muR_Zj0b_udsg_DOWN: *LHEScaleWeight[1] CMS_LHE_weights_scale_muR_Zj0b_c_DOWN: *LHEScaleWeight[1] CMS_LHE_weights_scale_muR_Zj1b_DOWN: *LHEScaleWeight[1] CMS_LHE_weights_scale_muR_Zj2b_DOWN: *LHEScaleWeight[1] +CMS_LHE_weights_scale_muR_Zjb_DOWN: *LHEScaleWeight[1] CMS_LHE_weights_scale_muR_Wj0b_DOWN: *LHEScaleWeight[1] CMS_LHE_weights_scale_muR_Wj0b_udsg_DOWN: *LHEScaleWeight[1] CMS_LHE_weights_scale_muR_Wj0b_c_DOWN: *LHEScaleWeight[1] -CMS_LHE_weights_scale_muR_Wj0b_2c_DOWN: *LHEScaleWeight[1] CMS_LHE_weights_scale_muR_Wj1b_DOWN: *LHEScaleWeight[1] -CMS_LHE_weights_scale_muR_Wj1b_udsg_DOWN: *LHEScaleWeight[1] -CMS_LHE_weights_scale_muR_Wj1b_c_DOWN: *LHEScaleWeight[1] CMS_LHE_weights_scale_muR_Wj2b_DOWN: *LHEScaleWeight[1] +CMS_LHE_weights_scale_muR_Wjb_DOWN: *LHEScaleWeight[1] CMS_LHE_weights_scale_muR_QCD_DOWN: *LHEScaleWeight[1] CMS_LHE_weights_scale_muR_VVHF_DOWN: *LHEScaleWeight[1] CMS_LHE_weights_scale_muR_VVLF_DOWN: *LHEScaleWeight[1] -CMS_LHE_weights_scale_muF_ZH_UP: *LHEScaleWeight[5] -CMS_LHE_weights_scale_muF_WH_UP: *LHEScaleWeight[5] -CMS_LHE_weights_scale_muF_ggZH_UP: *LHEScaleWeight[5] -CMS_LHE_weights_scale_muF_TT_UP: *LHEScaleWeight[5] -CMS_LHE_weights_scale_muF_Zj0b_UP: *LHEScaleWeight[5] -CMS_LHE_weights_scale_muF_Zj0b_udsg_UP: *LHEScaleWeight[5] -CMS_LHE_weights_scale_muF_Zj0b_c_UP: *LHEScaleWeight[5] -CMS_LHE_weights_scale_muF_Zj1b_UP: *LHEScaleWeight[5] -CMS_LHE_weights_scale_muF_Zj2b_UP: *LHEScaleWeight[5] -CMS_LHE_weights_scale_muF_Wj0b_UP: *LHEScaleWeight[5] -CMS_LHE_weights_scale_muF_Wj0b_udsg_UP: *LHEScaleWeight[5] -CMS_LHE_weights_scale_muF_Wj0b_c_UP: *LHEScaleWeight[5] -CMS_LHE_weights_scale_muF_Wj0b_2c_UP: *LHEScaleWeight[5] -CMS_LHE_weights_scale_muF_Wj1b_UP: *LHEScaleWeight[5] -CMS_LHE_weights_scale_muF_Wj1b_udsg_UP: *LHEScaleWeight[5] -CMS_LHE_weights_scale_muF_Wj1b_c_UP: *LHEScaleWeight[5] -CMS_LHE_weights_scale_muF_Wj2b_UP: *LHEScaleWeight[5] -CMS_LHE_weights_scale_muF_QCD_UP: *LHEScaleWeight[5] -CMS_LHE_weights_scale_muF_VVHF_UP: *LHEScaleWeight[5] -CMS_LHE_weights_scale_muF_VVLF_UP: *LHEScaleWeight[5] +CMS_LHE_weights_scale_muF_ZH_UP: *((LHEScaleWeight[5])*(nLHEScaleWeight==9) + (LHEScaleWeight[4])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muF_WH_UP: *((LHEScaleWeight[5])*(nLHEScaleWeight==9) + (LHEScaleWeight[4])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muF_ggZH_UP: *((LHEScaleWeight[5])*(nLHEScaleWeight==9) + (LHEScaleWeight[4])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muF_TT_UP: *((LHEScaleWeight[5])*(nLHEScaleWeight==9) + (LHEScaleWeight[4])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muF_Zj0b_UP: *((LHEScaleWeight[5])*(nLHEScaleWeight==9) + (LHEScaleWeight[4])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muF_Zj0b_udsg_UP: *((LHEScaleWeight[5])*(nLHEScaleWeight==9) + (LHEScaleWeight[4])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muF_Zj0b_c_UP: *((LHEScaleWeight[5])*(nLHEScaleWeight==9) + (LHEScaleWeight[4])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muF_Zj1b_UP: *((LHEScaleWeight[5])*(nLHEScaleWeight==9) + (LHEScaleWeight[4])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muF_Zj2b_UP: *((LHEScaleWeight[5])*(nLHEScaleWeight==9) + (LHEScaleWeight[4])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muF_Zjb_UP: *((LHEScaleWeight[5])*(nLHEScaleWeight==9) + (LHEScaleWeight[4])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muF_Wj0b_UP: *((LHEScaleWeight[5])*(nLHEScaleWeight==9) + (LHEScaleWeight[4])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muF_Wj0b_udsg_UP: *((LHEScaleWeight[5])*(nLHEScaleWeight==9) + (LHEScaleWeight[4])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muF_Wj0b_c_UP: *((LHEScaleWeight[5])*(nLHEScaleWeight==9) + (LHEScaleWeight[4])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muF_Wj1b_UP: *((LHEScaleWeight[5])*(nLHEScaleWeight==9) + (LHEScaleWeight[4])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muF_Wj2b_UP: *((LHEScaleWeight[5])*(nLHEScaleWeight==9) + (LHEScaleWeight[4])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muF_Wjb_UP: *((LHEScaleWeight[5])*(nLHEScaleWeight==9) + (LHEScaleWeight[4])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muF_QCD_UP: *((LHEScaleWeight[5])*(nLHEScaleWeight==9) + (LHEScaleWeight[4])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muF_VVHF_UP: *((LHEScaleWeight[5])*(nLHEScaleWeight==9) + (LHEScaleWeight[4])*(nLHEScaleWeight==8)) +CMS_LHE_weights_scale_muF_VVLF_UP: *((LHEScaleWeight[5])*(nLHEScaleWeight==9) + (LHEScaleWeight[4])*(nLHEScaleWeight==8)) CMS_LHE_weights_scale_muF_ZH_DOWN: *LHEScaleWeight[3] CMS_LHE_weights_scale_muF_WH_DOWN: *LHEScaleWeight[3] CMS_LHE_weights_scale_muF_ggZH_DOWN: *LHEScaleWeight[3] @@ -697,14 +696,13 @@ CMS_LHE_weights_scale_muF_Zj0b_udsg_DOWN: *LHEScaleWeight[3] CMS_LHE_weights_scale_muF_Zj0b_c_DOWN: *LHEScaleWeight[3] CMS_LHE_weights_scale_muF_Zj1b_DOWN: *LHEScaleWeight[3] CMS_LHE_weights_scale_muF_Zj2b_DOWN: *LHEScaleWeight[3] +CMS_LHE_weights_scale_muF_Zjb_DOWN: *LHEScaleWeight[3] CMS_LHE_weights_scale_muF_Wj0b_DOWN: *LHEScaleWeight[3] CMS_LHE_weights_scale_muF_Wj0b_udsg_DOWN: *LHEScaleWeight[3] CMS_LHE_weights_scale_muF_Wj0b_c_DOWN: *LHEScaleWeight[3] -CMS_LHE_weights_scale_muF_Wj0b_2c_DOWN: *LHEScaleWeight[3] CMS_LHE_weights_scale_muF_Wj1b_DOWN: *LHEScaleWeight[3] -CMS_LHE_weights_scale_muF_Wj1b_udsg_DOWN: *LHEScaleWeight[3] -CMS_LHE_weights_scale_muF_Wj1b_c_DOWN: *LHEScaleWeight[3] CMS_LHE_weights_scale_muF_Wj2b_DOWN: *LHEScaleWeight[3] +CMS_LHE_weights_scale_muF_Wjb_DOWN: *LHEScaleWeight[3] CMS_LHE_weights_scale_muF_QCD_DOWN: *LHEScaleWeight[3] CMS_LHE_weights_scale_muF_VVHF_DOWN: *LHEScaleWeight[3] CMS_LHE_weights_scale_muF_VVLF_DOWN: *LHEScaleWeight[3] @@ -749,8 +747,11 @@ CMS_vhbb_Vjets_pdfwgt_2lep_DOWN: *(1.0 + (sampleIndex>=11000& #CMS_vhbb_vjetnlodetajjrw_13TeV_UP: ** #CMS_vhbb_vjetnlodetajjrw_13TeV_DOWN: -CMS_vhbb_vjetnlodetajjrw_13TeV_UP: *weightLOtoNLO_2016 -CMS_vhbb_vjetnlodetajjrw_13TeV_DOWN: /weightLOtoNLO_2016 +CMS_vhbb_vjetnlodetajjrw_13TeV_UP: *weightLOtoNLO +CMS_vhbb_vjetnlodetajjrw_13TeV_DOWN: /weightLOtoNLO + +#CMS_vhbb_vjetnlodetajjrw_13TeV_UP: *2.0 +#CMS_vhbb_vjetnlodetajjrw_13TeV_DOWN: *0.5 # V2 #CMS_vhbb_vjetnlovptrw_p0_13TeV_UP: /weightLOtoNLO_LHEVptV2*weightLOtoNLO_LHEVptV2_p0_Up diff --git a/python/VHbb2017commonconfig/vhbbPlotDef.ini b/python/VHbb2017commonconfig/vhbbPlotDef.ini index ab6e6ee1d..61fc4243b 100644 --- a/python/VHbb2017commonconfig/vhbbPlotDef.ini +++ b/python/VHbb2017commonconfig/vhbbPlotDef.ini @@ -82,6 +82,21 @@ nBins = 2 min = 0.0 max = 2.0 +[plotDef:DNN_200924_VHLegacyDNN2017V11_Znn_Apr2020v6final_SR_medhigh_Znn.Nominal] +relPath = DNN_200924_VHLegacyDNN2017V11_Znn_Apr2020v6final_SR_medhigh_Znn.Nominal +xAxis = DNN +nBins = 10 +min = 0.0 +max = 1.0 + +[plotDef:BDT_Zvv_BOOSTFinal_wdB.Nominal] +relPath = BDT_Zvv_BOOSTFinal_wdB.Nominal +xAxis = BDT +nBins = 5 +min = -1.0 +max = 1.0 + + # ------------------------------------------------------------------------------------------------------------------------------------------------------ # Generator variables # ------------------------------------------------------------------------------------------------------------------------------------------------------ @@ -2035,9 +2050,10 @@ max = 60 xAxis = genWeight relPath = genWeight nBins = 100 -min = 0 -max = 0.4 +min = -1000.0 +max = 1000.0 weightF = 1.0 +log = True [plotDef:puWeight] relPath = puWeight diff --git a/python/Wlv2016config/cuts.ini b/python/Wlv2016config/cuts.ini index ed567726b..342ebe748 100644 --- a/python/Wlv2016config/cuts.ini +++ b/python/Wlv2016config/cuts.ini @@ -49,6 +49,8 @@ Inclusive = (1) #----- Vpt split -----# med = (V_pt >= 150.0 && V_pt < 250.0) high = (V_pt >= 250.0) +high1 = (V_pt >= 250.0 && V_pt<400) +high2 = (V_pt >= 400.0) medhigh = (V_pt >= 150.0) #----- Signal/Control Region without overlap treatment -----# @@ -59,37 +61,56 @@ Wlf_base = ( && > && > 90 && < 150 && > && > && < 2 && > 2.5 && dPhiLepMet < 2.0) VV_SR_base = ( && > 60 && < 120 && > && > && < 2 && > 2.5 && dPhiLepMet < 2.0) +resolvedCR = (&&(||||)) +resolvedSR = (&&()) + +resolvedCR_VZ = (&&(||||)) +resolvedSR_VZ = (&&()) + #----- Signal/Control Region with overlap treatment -----# ttbar = ( && ) +VV_ttbar = ( && ) Whf = ( && ) -VV_Whf = ( && ) +VV_Whf = ( && ) Wlf = ( && ) +VV_Wlf = ( && ) SR = ( && ) -VV_SR = ( && ) +VV_SR = ( && ) #----- Control Region (medium) -----# ttbar_med_Wln = && && ttbar_med_Wen = && && ttbar_med_Wmn = && && +VV_ttbar_med_Wln = && && +VV_ttbar_med_Wen = && && +VV_ttbar_med_Wmn = && && + Whf_med_Wln = && && Whf_med_Wen = && && Whf_med_Wmn = && && -Wlf_med_Wln = && && -Wlf_med_Wen = && && -Wlf_med_Wmn = && && - VV_Whf_med_Wmn = && && VV_Whf_med_Wen = && && VV_Whf_med_Wln = && && +Wlf_med_Wln = && && +Wlf_med_Wen = && && +Wlf_med_Wmn = && && + +VV_Wlf_med_Wln = && && +VV_Wlf_med_Wen = && && +VV_Wlf_med_Wmn = && && #----- Control Region (medium, 0j) -----# ttbar_med_Wln_0j = && && && ttbar_med_Wen_0j = && && && ttbar_med_Wmn_0j = && && && +VV_ttbar_med_Wln_0j = && && && +VV_ttbar_med_Wen_0j = && && && +VV_ttbar_med_Wmn_0j = && && && + Whf_med_Wln_0j = && && && Whf_med_Wen_0j = && && && Whf_med_Wmn_0j = && && && @@ -98,6 +119,10 @@ Wlf_med_Wln_0j = && && && Wlf_med_Wen_0j = && && && Wlf_med_Wmn_0j = && && && +VV_Wlf_med_Wln_0j = && && && +VV_Wlf_med_Wen_0j = && && && +VV_Wlf_med_Wmn_0j = && && && + VV_Whf_med_Wmn_0j = && && && VV_Whf_med_Wen_0j = && && && @@ -106,6 +131,10 @@ ttbar_med_Wln_ge1j = && && && && && && ttbar_med_Wmn_ge1j = && && && +VV_ttbar_med_Wln_ge1j = && && && +VV_ttbar_med_Wen_ge1j = && && && +VV_ttbar_med_Wmn_ge1j = && && && + Whf_med_Wln_ge1j = && && && Whf_med_Wen_ge1j = && && && Whf_med_Wmn_ge1j = && && && @@ -114,6 +143,10 @@ Wlf_med_Wln_ge1j = && && && && && && Wlf_med_Wmn_ge1j = && && && +VV_Wlf_med_Wln_ge1j = && && && +VV_Wlf_med_Wen_ge1j = && && && +VV_Wlf_med_Wmn_ge1j = && && && + VV_Whf_med_Wmn_ge1j = && && && VV_Whf_med_Wen_ge1j = && && && @@ -123,6 +156,10 @@ ttbar_high_Wln = && && ttbar_high_Wen = && && ttbar_high_Wmn = && && +VV_ttbar_high_Wln = && && +VV_ttbar_high_Wen = && && +VV_ttbar_high_Wmn = && && + Whf_high_Wln = && && Whf_high_Wen = && && Whf_high_Wmn = && && @@ -131,6 +168,10 @@ Wlf_high_Wln = && && Wlf_high_Wen = && && Wlf_high_Wmn = && && +VV_Wlf_high_Wln = && && +VV_Wlf_high_Wen = && && +VV_Wlf_high_Wmn = && && + VV_Whf_high_Wmn = && && VV_Whf_high_Wen = && && VV_Whf_high_Wln = && && @@ -168,15 +209,19 @@ SR_med_Wen_ge1j = && && && SR_med_Wmn_ge1j = && && && SR_high_Wln = && && +SR_high1_Wln = && && +SR_high2_Wln = && && SR_high_Wen = && && +SR_high1_Wen = && && +SR_high2_Wen = && && SR_high_Wmn = && && +SR_high1_Wmn = && && +SR_high2_Wmn = && && SR_medhigh_Wln = && && SR_medhigh_Wen = && && SR_medhigh_Wmn = && && -VV_SR = ( && > 60 && < 120 && > && > && < 2 && > 2.5 && dPhiLepMet < 2.0) - VV_SR_med_Wln = && && VV_SR_med_Wen = && && VV_SR_med_Wmn = && && @@ -190,8 +235,15 @@ VV_SR_med_Wen_ge1j = && && && && && && VV_SR_high_Wln = && && +VV_SR_high1_Wln = && && +VV_SR_high2_Wln = && && VV_SR_high_Wen = && && +VV_SR_high1_Wen = && && +VV_SR_high2_Wen = && && + VV_SR_high_Wmn = && && +VV_SR_high1_Wmn = && && +VV_SR_high2_Wmn = && && VV_SR_medhigh_Wln = && && VV_SR_medhigh_Wen = && && @@ -250,11 +302,14 @@ DphiV_H = abs(TVector2::Phi_mpi_pi(-) #----- BOOST selection -----# dijet_mass = H_mass +#dijet_mass_BOOST = (FatJet_Msoftdrop[Hbb_fjidx]*(isData+(1-isData)*(0.93))) dijet_mass_BOOST = FatJet_Msoftdrop[Hbb_fjidx] DphiMET_Lep = lepMetDPhi BasicCuts_BOOST = (FatJet_Pt[Hbb_fjidx]>250 && abs(FatJet_eta[Hbb_fjidx])<2.5 && < 2 && == 0 && V_pt>250) +BasicCuts_BOOST1 = (FatJet_Pt[Hbb_fjidx]>250 && abs(FatJet_eta[Hbb_fjidx])<2.5 && < 2 && == 0 && V_pt>=250 && V_pt<400) +BasicCuts_BOOST2 = (FatJet_Pt[Hbb_fjidx]>250 && abs(FatJet_eta[Hbb_fjidx])<2.5 && < 2 && == 0 && V_pt>=400) NaddbJets_boosted=Sum$(VHbb::deltaR(FatJet_eta[Hbb_fjidx],FatJet_phi[Hbb_fjidx],Jet_eta,Jet_phi)> 0.8 && > && Jet_lepFilter>0 && Jet_PtReg>25 && fabs(Jet_eta)<2.5) @@ -263,18 +318,35 @@ VZ_WhfMass_boosted = (( > 50 && && == 0 && FatJet_deepTagMD_bbvsLight[Hbb_fjidx]>0.8) +Signal_BOOSTv3_base1 = ( && == 0 && FatJet_deepTagMD_bbvsLight[Hbb_fjidx]>0.8) +Signal_BOOSTv3_base2 = ( && == 0 && FatJet_deepTagMD_bbvsLight[Hbb_fjidx]>0.8) + tt_BOOST_base = ( && > 0 && FatJet_deepTagMD_bbvsLight[Hbb_fjidx]>0.8 && > 50) Whf_BOOSTv2_base = ( && == 0 && FatJet_deepTagMD_bbvsLight[Hbb_fjidx]>0.8) Wlf_BOOSTv11_base = ( && == 0 && FatJet_deepTagMD_bbvsLight[Hbb_fjidx]<0.8 && > 50) +# boosted regions, for overlap treatment +boostedCR = (&&(||(&&)||)) +boostedSR = (&&(&&>90&&<150)) + +boostedCR_VZ = (&&(||(&&)||)) +boostedSR_VZ = (&&(&&>60&&<120)) + # boosted regions with overlap treatment and mass window Signal_BOOSTv3 = ( && && > 90 && < 150) + +Signal_BOOSTv3_1 = ( && && > 90 && < 150) +Signal_BOOSTv3_2 = ( && && > 90 && < 150) tt_BOOST = ( && ) +VZ_tt_BOOST = ( && ) Whf_BOOSTv2 = ( && && ) Wlf_BOOSTv11 = ( && ) +VZ_Wlf_BOOSTv11 = ( && ) -VZ_Signal_BOOSTv3 = ( && && > 60 && < 120) -VZ_Whf_BOOSTv2 = ( && && ) +VZ_Signal_BOOSTv3 = ( && && > 60 && < 120) +VZ_Signal_BOOSTv3_1 = ( && && > 60 && < 120) +VZ_Signal_BOOSTv3_2 = ( && && > 60 && < 120) +VZ_Whf_BOOSTv2 = ( && && ) # event is in any of the boosted CRs/SR all_BOOST = ( && (( && > 90 && < 150) || || ( && ) || )) @@ -286,10 +358,19 @@ removeOverlapLeptonFatJetWen = removeOverlapLeptonFatJetWln = SR_high_Wen_BOOST = && +SR_high1_Wen_BOOST = && +SR_high2_Wen_BOOST = && + SR_high_Wmn_BOOST = && +SR_high1_Wmn_BOOST = && +SR_high2_Wmn_BOOST = && + SR_high_Wln_BOOST = +SR_high1_Wln_BOOST = +SR_high2_Wln_BOOST = ttbar_high_Wen_BOOST = && ttbar_high_Wmn_BOOST = && +ttbar_high_Wln_BOOST = && ( || ) Wlf_high_Wen_BOOST = && Wlf_high_Wmn_BOOST = && Whf_high_Wen_BOOST = && @@ -298,3 +379,29 @@ Whf_high_Wmn_BOOST = && # for debugging: only look at overlap isResolved_OVERLAPSR = ( && && && ) isBoosted_OVERLAPSR = + +VV_Signal_BOOSTv3 = ( && ) +VV_Signal_BOOSTv3_1 = ( && ) +VV_Signal_BOOSTv3_2 = ( && ) + +VV_SR_high_Wen_BOOST = && +VV_SR_high1_Wen_BOOST = && +VV_SR_high2_Wen_BOOST = && +VV_SR_high_Wmn_BOOST = && +VV_SR_high1_Wmn_BOOST = && +VV_SR_high2_Wmn_BOOST = && +VV_SR_high_Wln_BOOST = +VV_SR_high1_Wln_BOOST = +VV_SR_high2_Wln_BOOST = + +VV_Wlf_high_Wen_BOOST = && +VV_Wlf_high_Wmn_BOOST = && + +VV_Whf_high_Wen_BOOST = && +VV_Whf_high_Wmn_BOOST = && + +VV_ttbar_high_Wen_BOOST = && +VV_ttbar_high_Wmn_BOOST = && + + + diff --git a/python/Wlv2016config/datacards.ini b/python/Wlv2016config/datacards.ini index 65f98aeb2..52c12e25e 100644 --- a/python/Wlv2016config/datacards.ini +++ b/python/Wlv2016config/datacards.ini @@ -31,42 +31,34 @@ remove_systematics = True sys_cr = [ 'jer', - 'jerReg', - 'jesAbsoluteStat', - 'jesAbsoluteScale', - 'jesAbsoluteFlavMap', - 'jesAbsoluteMPFBias', - 'jesFragmentation', - 'jesSinglePionECAL', - 'jesSinglePionHCAL', + 'jerRegSmear', + 'jerRegScale', + 'jesAbsolute', + 'jesAbsolute_2016', + 'jesBBEC1', + 'jesBBEC1_2016', + 'jesEC2', + 'jesEC2_2016', 'jesFlavorQCD', - 'jesRelativeJEREC1', - 'jesRelativeJEREC2', - 'jesRelativeJERHF', - 'jesRelativePtBB', - 'jesRelativePtEC1', - 'jesRelativePtEC2', - 'jesRelativePtHF', + 'jesHF', + 'jesHF_2016', 'jesRelativeBal', - 'jesRelativeFSR', - 'jesRelativeStatFSR', - 'jesRelativeStatEC', - 'jesRelativeStatHF', - 'jesPileUpDataMC', - 'jesPileUpPtRef', - 'jesPileUpPtBB', - 'jesPileUpPtEC1', - 'jesPileUpPtEC2', - 'jesPileUpPtHF', + 'jesRelativeSample_2016', + 'unclustEn', 'jmr', - 'jms' - ] + 'jms', + ] sys_BDT = sys_Mjj = weightF_sys = [ + 'THU_ZH_acc', + 'THU_WH_acc', + 'THU_ggZH_acc', + 'CMS_vhbb_Vpt150_13TeV', + 'CMS_vhbb_Vpt250_13TeV', ; 'CMS_vhbb_DeepCSV_TT', ; 'CMS_vhbb_DeepCSV_TM', ; 'CMS_vhbb_DeepCSV_TL', @@ -106,7 +98,7 @@ weightF_sys = [ ; Jet PU ID 'CMS_vhbb_jetPUID', ; Prefire correction -; 'CMS_vhbb_PrefireWeight_13TeV', + 'CMS_vhbb_PrefireWeight_13TeV', ; scales 'CMS_LHE_weights_scale_muR_ZH', 'CMS_LHE_weights_scale_muR_WH', @@ -282,17 +274,16 @@ weightF_sys = [ 'CMS_bTagWeightDeepBcErr2_13TeV_pt4_eta0', 'CMS_bTagWeightDeepBcErr2_13TeV_pt4_eta1', 'CMS_bTagWeightDeepBcErr2_13TeV_pt4_eta2', -; -; 'bTagWeightDoubleB_mp_pt200to300', -; 'bTagWeightDoubleB_mp_pt300to400', -; 'bTagWeightDoubleB_mp_pt400to500', -; 'bTagWeightDoubleB_mp_pt500to600', -; 'bTagWeightDoubleB_mp_pt600toInf', -; 'bTagWeightDoubleB_hp_pt200to300', -; 'bTagWeightDoubleB_hp_pt300to400', -; 'bTagWeightDoubleB_hp_pt400to500', -; 'bTagWeightDoubleB_hp_pt500to600', -; 'bTagWeightDoubleB_hp_pt600toInf', + 'bTagWeightDoubleB_mp_pt200to300', + 'bTagWeightDoubleB_mp_pt300to400', + 'bTagWeightDoubleB_mp_pt400to500', + 'bTagWeightDoubleB_mp_pt500to600', + 'bTagWeightDoubleB_mp_pt600toInf', + 'bTagWeightDoubleB_hp_pt200to300', + 'bTagWeightDoubleB_hp_pt300to400', + 'bTagWeightDoubleB_hp_pt400to500', + 'bTagWeightDoubleB_hp_pt500to600', + 'bTagWeightDoubleB_hp_pt600toInf', ] ;!! -------------------------------------- @@ -331,15 +322,15 @@ systematicsnaming = removeWeightSystematics = {} -List = SR_high_Wen,SR_high_Wmn,Wlf_high_Wen,Wlf_high_Wmn,Whf_high_Wen,Whf_high_Wmn,ttbar_high_Wen,ttbar_high_Wmn,SR_med_Wen,SR_med_Wmn,Wlf_med_Wen,Wlf_med_Wmn,Whf_med_Wen,Whf_med_Wmn,ttbar_med_Wen,ttbar_med_Wmn,SR_high_Wen_BOOST,SR_high_Wmn_BOOST,Wlf_high_Wen_BOOST,Wlf_high_Wmn_BOOST,Whf_high_Wmn_BOOST,Whf_high_Wen_BOOST,ttbar_high_Wmn_BOOST,ttbar_high_Wen_BOOST +;List = , +List = +;List = + +ListVHLegacy = SR_high_Wen,SR_high1_Wen,SR_high2_Wen,SR_high_Wmn,SR_high1_Wmn,SR_high2_Wmn,Wlf_high_Wen,Wlf_high_Wmn,Whf_high_Wen,Whf_high_Wmn,ttbar_high_Wen,ttbar_high_Wmn,SR_med_Wen,SR_med_Wmn,Wlf_med_Wen,Wlf_med_Wmn,Whf_med_Wen,Whf_med_Wmn,ttbar_med_Wen,ttbar_med_Wmn,SR_high_Wen_BOOST,SR_high1_Wen_BOOST,SR_high2_Wen_BOOST,SR_high_Wmn_BOOST,SR_high1_Wmn_BOOST,SR_high2_Wmn_BOOST,Wlf_high_Wen_BOOST,Wlf_high_Wmn_BOOST,Whf_high_Wmn_BOOST,Whf_high_Wen_BOOST,ttbar_high_Wmn_BOOST,ttbar_high_Wen_BOOST +ListVV = VV_SR_high_Wen,VV_SR_high1_Wen,VV_SR_high2_Wen,VV_SR_high_Wmn,VV_SR_high1_Wmn,VV_SR_high2_Wmn,VV_Wlf_high_Wen,VV_Wlf_high_Wmn,VV_Whf_high_Wen,VV_Whf_high_Wmn,VV_ttbar_high_Wen,VV_ttbar_high_Wmn,VV_SR_med_Wen,VV_SR_med_Wmn,VV_Wlf_med_Wen,VV_Wlf_med_Wmn,VV_Whf_med_Wen,VV_Whf_med_Wmn,VV_ttbar_med_Wen,VV_ttbar_med_Wmn,VV_SR_high_Wen_BOOST,VV_SR_high1_Wen_BOOST,VV_SR_high2_Wen_BOOST,VV_SR_high_Wmn_BOOST,VV_SR_high1_Wmn_BOOST,VV_SR_high2_Wmn_BOOST,VV_Wlf_high_Wen_BOOST,VV_Wlf_high_Wmn_BOOST,VV_Whf_high_Wmn_BOOST,VV_Whf_high_Wen_BOOST,VV_ttbar_high_Wmn_BOOST,VV_ttbar_high_Wen_BOOST # diboson list, use with: --set='LimitGeneral.List=' -ListVV = ttbar_medhigh_Wen,ttbar_medhigh_Wmn,Wlf_medhigh_Wen,Wlf_medhigh_Wmn,VV_Whf_medhigh_Wen,VV_Whf_medhigh_Wmn,VV_SR_medhigh_Wen,VV_SR_medhigh_Wmn -ListVH = ttbar_medhigh_Wen,ttbar_medhigh_Wmn,Wlf_medhigh_Wen,Wlf_medhigh_Wmn,Whf_medhigh_Wen,Whf_medhigh_Wmn,SR_medhigh_Wen,SR_medhigh_Wmn -ListVHLegacy = ttbar_med_Wen,ttbar_med_Wmn,Wlf_med_Wen,Wlf_med_Wmn,Whf_med_Wen,Whf_med_Wmn,SR_med_Wen,SR_med_Wmn,ttbar_high_Wen,ttbar_high_Wmn,Wlf_high_Wen,Wlf_high_Wmn,Whf_high_Wen,Whf_high_Wmn,SR_high_Wen,SR_high_Wmn -ListMjj = ttbar_medhigh_Wen,ttbar_medhigh_Wmn,Wlf_medhigh_Wen,Wlf_medhigh_Wmn,Whf_medhigh_Wen,Whf_medhigh_Wmn,Mjj_SR_medhigh_Wen_0,Mjj_SR_medhigh_Wen_1,Mjj_SR_medhigh_Wen_2,Mjj_SR_medhigh_Wen_3,Mjj_SR_medhigh_Wmn_0,Mjj_SR_medhigh_Wmn_1,Mjj_SR_medhigh_Wmn_2,Mjj_SR_medhigh_Wmn_3 -ListMulti = [Multi] List = Multi_medhigh_Wen_SIG,Multi_medhigh_Wen_BKG,Multi_medhigh_Wmn_SIG,Multi_medhigh_Wmn_BKG @@ -385,10 +376,23 @@ VV_Signals = VV_Backgrounds = +bins_med = [0.00000, 0.19903, 0.30964, 0.41741, 0.50046, 0.57677, 0.64369, 0.70447, 0.75825, 0.80505, 0.84760, 0.88468, 0.91594, 0.94300, 0.96704, 1.00001] +bins_high = [0.00000, 0.42450, 0.59368, 0.69441, 0.76858, 0.81910, 0.86345, 0.89504, 0.92043, 0.93816, 0.95293, 0.96541, 0.97470, 0.98198, 0.98814, 1.00001] +bins_high1 = [0.00000, 0.38977, 0.56215, 0.66767, 0.74285, 0.80074, 0.84504, 0.87982, 0.90869, 0.92983, 0.94648, 0.96046, 0.97146, 0.97964, 0.98692, 1.00001] +bins_high2 = [0.00000, 0.79552, 0.90557, 0.95074, 0.97403, 0.98620, 1.00001] +bins_high_BOOST = [-1.00000, -0.15418, -0.03376, 0.05270, 0.11842, 0.17658, 0.23194, 0.28364, 0.34080, 0.39974, 0.49506, 1.00001] +bins_high1_BOOST = [-1.00000, -0.10974, 0.02554, 0.12820, 0.21894, 0.30878, 1.00001] +bins_high2_BOOST = [-1.00000, 0.09972, 0.25770, 0.37594, 0.49422, 1.00001] +bins_medhigh = [] - - - +VV_bins_med = [0.00000, 0.22807, 0.36456, 0.43887, 0.49891, 0.55928, 0.61779, 0.67782, 0.73318, 0.78023, 0.82263, 0.85722, 0.89115, 0.91797, 0.94416, 1.00001] +VV_bins_high = [0.00000, 0.31684, 0.45817, 0.58795, 0.68390, 0.74185, 0.78907, 0.82685, 0.86836, 0.89728, 0.91666, 0.93184, 0.94611, 0.95927, 0.97238, 1.00001] +VV_bins_high1 = [0.00000, 0.29432, 0.44305, 0.57070, 0.66138, 0.73674, 0.78803, 0.82685, 0.86637, 0.89451, 0.91441, 0.92984, 0.94213, 0.95677, 0.97115, 1.00001] +VV_bins_high2 = [0.00000, 0.69897, 0.76669, 0.87244, 0.92857, 0.96495, 1.00001] +VV_bins_high_BOOST = [-1.00000, -0.17680, -0.12926, -0.09806, -0.04818, 0.00130, 0.04038, 0.09208, 0.13950, 0.19370, 0.23166, 0.28734, 0.32728, 0.40322, 0.46632, 1.00001] +VV_bins_high1_BOOST = [-1.00000, -0.22406, -0.16232, -0.09806, -0.05838, -0.01420, 0.02342, 0.04864, 0.09990, 0.16092, 0.22342, 0.26906, 0.31326, 0.38724, 0.44502, 1.00001] +VV_bins_high2_BOOST = [-1.00000, -0.12926, -0.03038, 0.11442, 0.14704, 0.20908, 0.28568, 0.36736, 0.45524, 1.00001] +VV_bins_medhigh = [] ;====================== @@ -407,21 +411,111 @@ BDToutname_BOOST = BDT_Wlv_BOOSTFinal_wdB_2016.Nominal [dc:SR_high_Wmn_BOOST] var = rebin_method = list -rebin_list = +rebin_list = +signal = +background = +data = +type = BDT + +[dc:SR_high1_Wmn_BOOST] +var = +rebin_method = list +rebin_list = +signal = +background = +data = +type = BDT + +[dc:SR_high2_Wmn_BOOST] +var = +rebin_method = list +rebin_list = signal = background = data = type = BDT +[dc:VV_SR_high_Wmn_BOOST] +var = BDT_VZ_Wlv_BOOSTFinal_wdB_2016.Nominal +rebin_method = list +rebin_list = +signal = +background = +data = +type = BDT + +[dc:VV_SR_high1_Wmn_BOOST] +var = BDT_VZ_Wlv_BOOSTFinal_wdB_2016.Nominal +rebin_method = list +rebin_list = +signal = +background = +data = +type = BDT + +[dc:VV_SR_high2_Wmn_BOOST] +var = BDT_VZ_Wlv_BOOSTFinal_wdB_2016.Nominal +rebin_method = list +rebin_list = +signal = +background = +data = +type = BDT + [dc:SR_high_Wen_BOOST] var = rebin_method = list -rebin_list = +rebin_list = signal = background = data = type = BDT +[dc:SR_high1_Wen_BOOST] +var = +rebin_method = list +rebin_list = +signal = +background = +data = +type = BDT + +[dc:SR_high2_Wen_BOOST] +var = +rebin_method = list +rebin_list = +signal = +background = +data = +type = BDT + +[dc:VV_SR_high_Wen_BOOST] +var = BDT_VZ_Wlv_BOOSTFinal_wdB_2016.Nominal +rebin_method = list +rebin_list = +signal = +background = +data = +type = BDT + +[dc:VV_SR_high1_Wen_BOOST] +var = BDT_VZ_Wlv_BOOSTFinal_wdB_2016.Nominal +rebin_method = list +rebin_list = +signal = +background = +data = +type = BDT + +[dc:VV_SR_high2_Wen_BOOST] +var = BDT_VZ_Wlv_BOOSTFinal_wdB_2016.Nominal +rebin_method = list +rebin_list = +signal = +background = +data = +type = BDT + [dc:Wlf_high_Wmn_BOOST] var = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] signal = @@ -431,6 +525,15 @@ type = cr rebin_method = list rebin_list = [0.0,0.4,0.8] +[dc:VV_Wlf_high_Wmn_BOOST] +var = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] +signal = +background = +data = +type = cr +rebin_method = list +rebin_list = [0.0,0.4,0.8] + [dc:Wlf_high_Wen_BOOST] var = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] signal = @@ -440,6 +543,15 @@ type = cr rebin_method = list rebin_list = [0.0,0.4,0.8] +[dc:VV_Wlf_high_Wen_BOOST] +var = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] +signal = +background = +data = +type = cr +rebin_method = list +rebin_list = [0.0,0.4,0.8] + [dc:Whf_high_Wmn_BOOST] var = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] signal = @@ -449,6 +561,15 @@ type = cr rebin_method = list rebin_list = [0.8,0.97,1.00001] +[dc:VV_Whf_high_Wmn_BOOST] +var = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] +signal = +background = +data = +type = cr +rebin_method = list +rebin_list = [0.8,0.97,1.00001] + [dc:Whf_high_Wen_BOOST] var = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] signal = @@ -458,6 +579,15 @@ type = cr rebin_method = list rebin_list = [0.8,0.97,1.00001] +[dc:VV_Whf_high_Wen_BOOST] +var = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] +signal = +background = +data = +type = cr +rebin_method = list +rebin_list = [0.8,0.97,1.00001] + [dc:ttbar_high_Wmn_BOOST] var = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] signal = @@ -467,6 +597,15 @@ type = cr rebin_method = list rebin_list = [0.8,0.97,1.00001] +[dc:VV_ttbar_high_Wmn_BOOST] +var = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] +signal = +background = +data = +type = cr +rebin_method = list +rebin_list = [0.8,0.97,1.00001] + [dc:ttbar_high_Wen_BOOST] var = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] signal = @@ -476,25 +615,49 @@ type = cr rebin_method = list rebin_list = [0.8,0.97,1.00001] - +[dc:VV_ttbar_high_Wen_BOOST] +var = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] +signal = +background = +data = +type = cr +rebin_method = list +rebin_list = [0.8,0.97,1.00001] #----- tt -----# [dc:ttbar_med_Wen] -var = 1 -range = 1,0,2 +var = V_pt +range = 10,150.0,250.0 signal = background = data = type = cr +[dc:VV_ttbar_med_Wen] +var = V_pt +range = 10,150.0,250.0 +signal = +background = +data = +type = cr + [dc:ttbar_med_Wmn] -var = 1 -range = 1,0,2 +var = V_pt +range = 10,150.0,250.0 signal = background = data = type = cr +[dc:VV_ttbar_med_Wmn] +var = V_pt +range = 10,150.0,250.0 +signal = +background = +data = +type = cr + + #----- Whf --------# [dc:Whf_med_Wen] rebin_method = list @@ -516,25 +679,41 @@ type = BDT #----- Wlf -----# [dc:Wlf_med_Wen] -var = 1 -range = 1,0,2 +var = V_pt +range = 10,150.0,250.0 signal = background = data = type = cr +[dc:VV_Wlf_med_Wen] +var = V_pt +range = 10,150.0,250.0 +signal = +background = +data = +type = cr + [dc:Wlf_med_Wmn] -var = 1 -range = 1,0,2 +var = V_pt +range = 10,150.0,250.0 signal = background = data = type = cr +[dc:VV_Wlf_med_Wmn] +var = V_pt +range = 10,150.0,250.0 +signal = +background = +data = +type = cr + #----- Signal -----# [dc:SR_med_Wen] rebin_method = list -rebin_list = +rebin_list = var = .Nominal signal = background = @@ -543,7 +722,7 @@ type = BDT [dc:SR_med_Wmn] rebin_method = list -rebin_list = +rebin_list = var = .Nominal signal = background = @@ -552,21 +731,38 @@ type = BDT #----- tt -----# [dc:ttbar_high_Wen] -var = 1 -range = 1,0,2 +var = V_pt +range = 35,250.0,2000.0 signal = background = data = type = cr [dc:ttbar_high_Wmn] -var = 1 -range = 1,0,2 +var = V_pt +range = 35,250.0,2000.0 signal = background = data = type = cr +[dc:VV_ttbar_high_Wen] +var = V_pt +range = 35,250.0,2000.0 +signal = +background = +data = +type = cr + +[dc:VV_ttbar_high_Wmn] +var = V_pt +range = 35,250.0,2000.0 +signal = +background = +data = +type = cr + + #----- Whf --------# [dc:Whf_high_Wen] rebin_method = list @@ -588,25 +784,59 @@ type = BDT #----- Wlf -----# [dc:Wlf_high_Wen] -var = 1 -range = 1,0,2 +var = V_pt +range = 35,250.0,2000.0 signal = background = data = type = cr [dc:Wlf_high_Wmn] -var = 1 -range = 1,0,2 +var = V_pt +range = 35,250.0,2000.0 signal = background = data = type = cr +[dc:VV_Wlf_high_Wen] +var = V_pt +range = 35,250.0,2000.0 +signal = +background = +data = +type = cr + +[dc:VV_Wlf_high_Wmn] +var = V_pt +range = 35,250.0,2000.0 +signal = +background = +data = +type = cr + #----- Signal -----# [dc:SR_high_Wen] rebin_method = list -rebin_list = +rebin_list = +var = .Nominal +signal = +background = +data = +type = BDT + +[dc:SR_high1_Wen] +rebin_method = list +rebin_list = +var = .Nominal +signal = +background = +data = +type = BDT + +[dc:SR_high2_Wen] +rebin_method = list +rebin_list = var = .Nominal signal = background = @@ -615,13 +845,32 @@ type = BDT [dc:SR_high_Wmn] rebin_method = list -rebin_list = +rebin_list = +var = .Nominal +signal = +background = +data = +type = BDT + +[dc:SR_high1_Wmn] +rebin_method = list +rebin_list = var = .Nominal signal = background = data = type = BDT +[dc:SR_high2_Wmn] +rebin_method = list +rebin_list = +var = .Nominal +signal = +background = +data = +type = BDT + + # medhigh #----- tt -----# @@ -661,6 +910,43 @@ data = type = BDT #----- VV Whf --------# +[dc:VV_Whf_high_Wen] +rebin_method = list +rebin_list = +var = .Nominal +signal = +background = +data = +type = BDT + +[dc:VV_Whf_med_Wen] +rebin_method = list +rebin_list = +var = .Nominal +signal = +background = +data = +type = BDT + +[dc:VV_Whf_med_Wmn] +rebin_method = list +rebin_list = +var = .Nominal +signal = +background = +data = +type = BDT + +[dc:VV_Whf_high_Wmn] +rebin_method = list +rebin_list = +var = .Nominal +signal = +background = +data = +type = BDT + + [dc:VV_Whf_medhigh_Wen] rebin_method = list rebin_list = @@ -699,7 +985,7 @@ type = cr #----- Signal -----# [dc:SR_medhigh_Wen] rebin_method = list -rebin_list = +rebin_list = var = .Nominal signal = background = @@ -708,7 +994,7 @@ type = BDT [dc:SR_medhigh_Wmn] rebin_method = list -rebin_list = +rebin_list = var = .Nominal signal = background = @@ -717,7 +1003,7 @@ type = BDT [dc:SR_medhigh_Wln] rebin_method = list -rebin_list = +rebin_list = var = .Nominal signal = background = @@ -728,7 +1014,7 @@ type = BDT # ---------- VV ---------- [dc:VV_SR_medhigh_Wen] rebin_method = list -rebin_list = +rebin_list = var = .Nominal signal = background = @@ -737,13 +1023,86 @@ type = BDT [dc:VV_SR_medhigh_Wmn] rebin_method = list -rebin_list = +rebin_list = +var = .Nominal +signal = +background = +data = +type = BDT + +[dc:VV_SR_high_Wen] +rebin_method = list +rebin_list = +var = .Nominal +signal = +background = +data = +type = BDT + +[dc:VV_SR_high_Wmn] +rebin_method = list +rebin_list = +var = .Nominal +signal = +background = +data = +type = BDT + +[dc:VV_SR_high1_Wen] +rebin_method = list +rebin_list = +var = .Nominal +signal = +background = +data = +type = BDT + + +[dc:VV_SR_high1_Wmn] +rebin_method = list +rebin_list = var = .Nominal signal = background = data = type = BDT +[dc:VV_SR_high2_Wmn] +rebin_method = list +rebin_list = +var = .Nominal +signal = +background = +data = +type = BDT + +[dc:VV_SR_high2_Wen] +rebin_method = list +rebin_list = +var = .Nominal +signal = +background = +data = +type = BDT + +[dc:VV_SR_med_Wmn] +rebin_method = list +rebin_list = +var = .Nominal +signal = +background = +data = +type = BDT + +[dc:VV_SR_med_Wen] +rebin_method = list +rebin_list = +var = .Nominal +signal = +background = +data = +type = BDT + # Mjj [dc:Mjj_SR_medhigh_Wen_0] var = diff --git a/python/Wlv2016config/event_counts.dat b/python/Wlv2016config/event_counts.dat index d4c7738b4..97c2ec3d5 100644 --- a/python/Wlv2016config/event_counts.dat +++ b/python/Wlv2016config/event_counts.dat @@ -1 +1 @@ -{'WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_1_2297a171dca388374479109f72227c75ea4504f7d03679df75e29ba0.root': 46982L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_7_d384b65ee9bce463ab24eed9ea7252cb803814636f5839d5dc99b00d.root': 102005L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_5_69ed48716128bb69855a0df09a0c9fd7f62f8b034a941790b40e7628.root': 84541L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_6_245eaf27d2db6caaf2d7183d03f683a905d4400407c2b4283544281a.root': 44682L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_4_b151668b210a36e10fcf95766aec18b672b1ca93718fd9650568c72c.root': 28128L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_4_ba8b00fc25e0199db465d8c1b1ec364c7ec3b305eb8165240c529aff.root': 75184L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_6_39ed70afe620c623ab432a8ccdd7b8daeed6d8acd42b5574e821ef32.root': 93896L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_2_81d86dff59c75bb2d615efc87ea961ff23cd1974cd585456c0d56ffe.root': 9426L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_8_94ab1960aacfe6b658ba463d0aaed78413e5fc3a6214e4ca22057dfe.root': 111235L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_3_f39b1a7e6b19108158a1dab16d6cc7ba6f6b11c7a43494f3ce455cdd.root': 18748L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_2_4fed1ad070c8d6700782fdccaa88b260af5b979908a20b1b3872ad4e.root': 56426L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_1_5703ea0985fffe6031512fc73068adab2dc3e1cf90f37774266f6bd3.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_5_cce185cd536619fc069319b09fcc9ab5272a4f97d9f16d9975d81c3a.root': 35322L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_3_d09146b0688f6c5f45e4d47b61ada2396cc79ab0eab700d3ccb71b5a.root': 65800L}, 'ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213326_0000_2_7023135e9d95ea61207e1e762e7f8c276392a5fc3049cd9178f5a19a.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213326_0000_3_754e4352422617dd448bda021f6ced2fa9fbde2bf46fa7e7e0b92526.root': 39L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213326_0000_4_0b8d8d3f90a73743ecda13fc2e1f41c1cb5f094326c0ab5d7e35ad2a.root': 42L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213326_0000_1_fd4c805670bae0e9c48f1a1372fd797efdc0a5f5b2245728bd87b842.root': 0}, 'ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_1_7a23df555b6b9c2bb5122a03bbb9074d915ab13f38d03294ab93b3ee.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_26_bc29161c0491a4b503ab35b6758b683e512593825c0fc77c3bfe1556.root': 104400L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_10_84de7463877e81227fa2cc53556b85ba3ca301188e740724a025cc9a.root': 109L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_27_591f4a98c1ae36fe4cd86e301ca183c24d8a81d90cf555fb406f2283.root': 112007L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_19_2e926d5dfe9a9f65691e3b43a533d75f9be6ee5fbecb3469acfb4b83.root': 54094L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_2_7e63633bd4f37a3b46ea9662ab164745d725b5f3c97d1bb29e4e6309.root': 61703L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_7_6bcf9287f8c3f5b6e5d0117035797c0b9f11ae813b6bba35dff7c6a7.root': 145595L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_3_7a2bdf3b7de543f63d40b52eebe357840986015c418671e8f6261d31.root': 119617L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_18_e87784187e4bc9f6e88f8b46d7850985e94ac9af7f9358723acc7f54.root': 50047L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_17_2b399af008288719eb99bcc22b9596cd8ba663f49d6bbd8f6788f89b.root': 42492L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_4_4c79ecbd89ce843c7b123d9dd65de6cf2a3cb11acbecf6c7c4f71c7f.root': 126043L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_9_52ff02a99df9011b089bf9cadb3478ffaa3edcb1a08ff994a9393fa4.root': 159282L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_11_369b9dd4a437c449a2c14f2e244ee1ca2133f34af2892a821c6b605c.root': 3781L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_21_97bd350cb9805a47aab8f76e9f4dae4eb8b847aba7fe698c46fec162.root': 75232L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_20_887baa35015d03ef587660a31350515ad92dbb75b009afe92dd284a3.root': 67671L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_23_990db23757085eb1ed027894f8f5a8496c62c2dafaa462ad3c8c07ba.root': 88138L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_6_ff47515da767a7237fe5871c6915e4f055feff6c3c7e6a857fd5c298.root': 137857L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_16_1334d7799c7e9a3fac4307851a622e720a1f8ff0caff42322703eb72.root': 35413L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_12_94bf14ca0fec2b78d49da1053287b43104394927730452fd3ddaf0b8.root': 11391L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_8_a25b65e5bc633bdea490cfc20d537d0ae62282bcc0675d49db56ba45.root': 151807L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_24_298070d06c5f2a42933222df0b9f850a51ee1e0998156d920c5c0a71.root': 92944L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_22_0bc75b37b0f149c6bafd3c13595efd484043857a33969260e76976d3.root': 80777L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_14_672f8086dc50fb0029dc4f02df56aca1adb50c00034b56118ec64d14.root': 20323L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_25_afde4bedf79491c9b119642ddfba1470382bc14565c491893b2c2b8e.root': 100474L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_5_012a89bf4807ff81aba3a68725608d8f45e9f620533e50b93e394530.root': 130519L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_13_7fefb1c9cf4cb8b4ac51bcc394ffd8f2e4ba0ed3ad1f00f82aacb2f3.root': 18241L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_15_536ef1861670ecdbc094d8e13f545b11cb1e0ecda4e98282910e6357.root': 27866L}, 'DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_1_995e2e9a6e1bc1b68075980eb8e895f52cf8f73f2506849e3ed90962.root': 33869L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210344_0000_6_50b723c3d902b438d948b131144418ba6e2b58f14bebf8fa1682fe49.root': 33263L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_7_5d7aacfbfdedac486d4c55aeb7717fd961f201d763c22ffce55bc9f0.root': 103873L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_2_8802ac19928cd2d5794b527d7b2899779122fdcc7a2c1c6698b0912c.root': 33937L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210344_0000_1_02264589f0a5d3d0a92745868847023a90a4c165f95d7ad88b495d2f.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_4_c999f19905aa2d7e9c6cffc6e6bac01ace1a6cef80b000d2721c216d.root': 38954L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_6_ffd6252191f23d603a3a28301690f2046188e981aa3e221baac33fe0.root': 82954L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210344_0000_2_b5bf65130886e798f4420c596f0672a3be1d4312bdf9d3bf7eca5847.root': 20L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_5_c715c6e822f84fd191d510c7e2c995d3796d085202c3d73d5f0018b7.root': 58013L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210344_0000_4_ec3fc34495e3ec3280c7828e2b83677a1c2449ec690ac1ad0b99f880.root': 14718L}, 'WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_19_32e3a90d88aa085f2d645d39d0a173533631eda3fea7a384043fa15b.root': 57991L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_4_4d7ecc169b13e56f24894406d9c793edcd5fd650355fe4ed5ce808bd.root': 164677L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_21_162c18755901325e173ec94f9687854d952793eba2565d1998206388.root': 134314L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_15_ecec0c9b31234e6225ee05876d2a83e8415e578fb5a264a6225bc6d7.root': 45027L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_9_fc037da09fb16828e56d76e429cc48ece6745793c98e07a736988793.root': 86969L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_4_dfa005f30f8f7ca334fbb115563183c4f4a3fd29880a4b380a5caa30.root': 70153L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_5_fc38df7ef22610b5dc171a68b55d8212f1252f139eea6fc9d8a2369c.root': 169295L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_2_7fe63e57be4268786b1fa2f3ace82cabfd16ef26e66ca70752899df1.root': 129817L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_27_19da015892e2e4d8924b817305ffa3cbfdd9d7cc2f5b03ce0b8a4c54.root': 153954L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_10_312a5500ddb1e2c03a94a9d35a311f1be68e0fc127b59a18cf716a9f.root': 91472L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_2_86c9888d8907c1022086c7dc75a75fdbe425258ec995a65187aaae31.root': 2657L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_16_a97f5d4e9366c5b616183f7d2eb8d0ecb9f7935d8dc33aea3d93229c.root': 49465L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_8_02cf444dbdd80dfe482f862f05efd4e7a2a2354a828664eb64b16395.root': 84511L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_28_96067d128d1a56094601d2658ae2f86a0d4ef09982b1c76863478651.root': 154018L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_5_1e0a009f95712c711787974319722e0cb44b8a73d0aa5b9cd18601ea.root': 71280L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_2_dd9d773bf8307e2385f503d27094df42008b42d1e78b5b7df85a9da8.root': 60654L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_18_756f8493d7ddcfd7d93a029e59c92d7717e86e1f2bc9d6a951a1043d.root': 122168L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_6_622a8b7cecf2dcf9ddde31cb43cc48c800e6b8c32ec81bbafb341f67.root': 11598L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_22_104ab16b8d8e9afc9631304b2914842968066be032f48b33a92752f8.root': 138945L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_8_447ae9ca3b1822ac4fc6b62955d7949717014c4c8856b1dac87ef6c5.root': 179145L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_14_62ac9ed8d0feaa35ec75a190fe7b1c3e1356b49ec4bfc3d8c037f883.root': 107395L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_12_363fcc6ff2b7aca3a1cf23c74e37942bbeeba35f890e28285c0e8d91.root': 99125L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_1_cf6f6b1a4a7a3be80c42f1c9975642d1ccd8dff74429a09605b3fb67.root': 91275L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_8_80c6e3375039f15c64281277ecb16f747afda3dcb94253685d25d913.root': 16498L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_24_3fb43d2af42dbe31be7eec0f1775921237891f2376740a6ff4086b15.root': 144837L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_19_c0e7263d7b100af324938bce8ae659c3f93d34f2222d8a016ef1e7c3.root': 125489L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_5_642ceed03b6f61173fd5848f2e89d64dfaa446331a212348e74e4905.root': 9008L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_11_a24241db62f4e4026c9c1df8f6d703cafb3df631ff548bbbb96f5d7b.root': 28864L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_4_4b36f4184ddb8ee3ae488e5555a6771643df4addf07fa709d941b1ac.root': 6572L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_17_09549b25b1774b5ee5a08fc75a5426df6bb10d237dda845357f5e191.root': 54172L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_6_8331abbf7be15ec62365921ca1b6ea4e0b88830b92a1302537c2658c.root': 173337L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_14_0cbce65fbaea2fadfa6374f04f9f7b934f6ae522dfbbcf89a1930505.root': 40663L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_13_45cdc6c5c9e17fae76e93c0b7b11492cca1403b1639b0b4abcb9e527.root': 102566L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_3_f411a10929ac9ed284af9a97e251244e86d267c2ebc0ac2f48e58950.root': 3567L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_30_e0731860c3ff7c6b350a0c409e743f7e99fa59cc0a93a7ade63b6772.root': 159835L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_6_d4fa32172fa13429748a6b15e6ff2d5ff165d3158a33bac8e6034dfb.root': 75432L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_10_913ee14aaebceae4768395a94fdfc1bb2b0532fb664e9357716e13dd.root': 24099L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_25_e83e58baecfb8b733567592207a083b8763b4453373808da8b328001.root': 147314L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_18_77c33d117108643be369cff59815229ac6c884e053db2f0f42a5d617.root': 57415L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_11_56e1e4b8a410f0cddf03f34a4257adc11e098ffc06f5140a805b7bfd.root': 96114L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_15_f1023e3b080bd190b05d48b48ddc7cbed8a9a3e8dc44cbc2f5106b58.root': 112008L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_12_30fdc8911cc56f8bf1efab527a64a8352f6d2f3061230de2412ecdd5.root': 33415L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_29_78c6114a2f1e5b08532633742f3a5d336955a61b08cd3b688747b5bb.root': 155854L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_16_906e0dc5e9eaf82077afd083dce861732db5e770ce92aa524e0b7192.root': 114463L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_31_ccae5be5dfd9b9a45fe23bf411a8d47d1e0d1579951558aac41206f3.root': 162258L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_7_d6fa153422bec782a92e00cfb82391e9d4770f3a5992be29d266ce1e.root': 176528L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_7_dfbd27fb75e9e7f70817643cc01b7a7e17107826afd19e613f3c1104.root': 14062L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_17_87a2a8b081bf9d31015d2b464e05a28de66e9e4496a8c9f8a9309ae0.root': 117968L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_9_74d53e9272a5905eb55d6e1e52c097e41b08b1870e54d4496ed03f4e.root': 182017L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_1_dc7e7925433735645d4a9eb90fe508e5537310ba87021cb86edf158e.root': 19349L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_1_8f93135d825c756445812d2b176dc43359291cb08c4f42543af638cb.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_7_a10d068b82e31813ca68a19ac185b21a5d74be8949529356c2bddf28.root': 80132L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_13_f066e111a8ddea976865e7a4de33c221941021cfd3af8630a4586c1e.root': 38138L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_26_e86fdb8ece0f41b67fec416e7d8324cf02892a6b0fd9353cf0c6a1d2.root': 150879L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_3_83da6a1659f06129bd2544d7f536ef73f4aff30c03ff2597c05d2922.root': 65391L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_20_7742a1200de409bc4976c653e006dabb2bc4aa108e8cf72dad6a46b2.root': 130237L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_23_e5a9f51b6d8df005edfedfa0c06b967c4f5c033b878b1dc9f15ea8ce.root': 141784L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_3_70274aab22c341157555628e22b2981ec7c01c7243680767edb65b2a.root': 158327L}, 'DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211140_0000_2_a2d71bfdb579d4a2c6a4d97f069edd82ef07eeccbbc750c8ca8f44e0.root': 1282L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211140_0000_8_5dc49ec5c1e2964b7b97c79d88f315e99d2029f01fb7dc33683f9ff7.root': 102055L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211140_0000_7_e118a64b3dc15378b2709ef3f623d8e66fe71ac832dd6903650165c9.root': 65321L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211140_0000_10_ee16bf61015a30d0156a6ae665080023348a37124fc11bee37da9b12.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211140_0000_4_731bda1dcd206f60f12404212f7027b071ebe93c47190c020170bd46.root': 22052L}, 'DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211306_0000_3_fe1cb50a461995a5a835afd7ce7e73cc24d9ae0d848d23c35113983e.root': 8211L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211306_0000_5_d47a3964ab6a4918eec60959ca7666e7c2d02a95194a6c54676bb690.root': 52382L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211306_0000_1_d3b503927ac6c2bbaefa0f0ab9b7412783042ea3983f97d643f9d3b4.root': 0}, 'SingleElectron': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_7_41f8a71011961834c88799b363e8bb5977203cfe232a7145d047803e.root': 270106L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_62_9f29c1ddc86526e17899f6a07e85c27199527989b6151165378008a2.root': 260671L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_54_39418ff1747cf1c2d7075c6a1de984c17f51666a35767af82b3b2847.root': 354459L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_9_4757f24bb492d87ab8b2492a202706ee3066ff7945ea82791f615f04.root': 362111L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_5_7c84a96e4a69e6c5b6d769b74baebf2862bbf3da1ee18215a1eda442.root': 527225L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_3_64ff47da0c36303a8da625be6a58f8fd998754c4c1535aeb1a85e724.root': 312375L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_103_e66784e8fd2f602c5c00cdf990171c1d3aaefd4f7186398d1c6180b5.root': 5596L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_71_dad5b12dde13aa11b6dd2575f0c5656464dd3d5f0708546bd286e536.root': 272625L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_60_4e10232176514e8b47a38bca780b6b9dae867235020d8e13f0263931.root': 762133L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_12_1795459dd8b76fd5ab013dd79255dd96e479b6a3b6cf179eee433bae.root': 600827L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_22_0af293b2823e8f79b161db5add0888c475537bc8e7f229cc1efbac25.root': 206415L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_20_2a58cd217b88b0055be7c54d679b2655fb8ba91b40d90e7b62c558ae.root': 456572L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_5_3b39f2a7e889ef0b20b7b30b112543f14ac6f9de20b3187b4a2ca540.root': 418034L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_37_e29dc249c5a6bdfc44338a2c157ba60f401d9b40f8dd1d156efbe6ca.root': 170483L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_2_7fbad0608f7646e28287a45161ffc8e212bf6090550fadf4a80c9c15.root': 202758L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_90_6932fb6588382717f528b8a01c2e07d49a1ca8571d15ae65216075e6.root': 121186L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_25_48ddaaa99b0eb8b3dfd7658befc837ce25e72c23030693cea2d1db9f.root': 35520L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_22_9244140682bd26388cebe741002d409253594f5c4d7ab974cd171646.root': 300457L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_11_d8e68e3fc0cdfa264eaf5909cdeb3708bbfb9886ee6b09c34a2015da.root': 191613L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_30_7764a9e7368f4bde4d5f7343d5a488069e152bfdfdd6698e48ab75e8.root': 217713L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_33_a849676d403046fde583c9c93ee0f00d96f78c0753b38eaddb4a9fb1.root': 413864L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_20_e32ba0b1db4e201827b7c1899fd1857bb95b5261bdd0e23a8d75d7bd.root': 386487L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_55_fdbfb679cb81c0b8efef2d03382ebf8231ab7ae5a91cda05ad4d3ee8.root': 74167L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_48_023cccb9d88619b4b56b24e698b3a47311f4b46b593d736986f5dbb2.root': 522542L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_64_2c2ebdc9d882b11dbdc745108ee118553fd16803faae56a4b4b1228c.root': 263400L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_29_9ce9cfd56c498d62ffc556fd8869cd3ce78d7347d4f4d0d9ab8547e9.root': 311045L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_52_7d5349311ee60f3effe44d6c48db9878038ca073fad557c5a7c45b19.root': 534181L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_14_2c077bd96f6b0614a103bcc0903dbf91fb12911c738297f7a846fae0.root': 606579L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_34_7e524c731b5a54cd1d8511d389c39d76e6c6c61d66bfd9a307080e50.root': 489191L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_39_1d5dc7faabb4c5baa10c7fa88dc0a38887648b42b8acbfc2ac93509d.root': 327948L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_50_ba70798d582b74c9a76c7c913d47b8d15522551b688fcc5f66029e7c.root': 348103L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_50_1b521087ff1b235187e99742a87e95622cb4ee2d28f7459dab92fd61.root': 731730L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_4_cae2f1d600501a3c550d18fe136d90e8c250434a71fd3f5a5f6a5afd.root': 416103L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_48_fce6d17be14288013921b7000dee8b999663a402c2d50bdda4bb6671.root': 241231L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_96_8339e00db304169c581180608f6523d69ea940e8f92576073aee40f0.root': 128531L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_27_b9b5de864aebd008a96c3d965dc7c830ad988a3db5f874d2509ed990.root': 472728L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_78_7aa8964c1727d303f69b68408893ed711ea3abfbc86c477ffabae55d.root': 104785L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_71_bc82e6ff219b6f6b155b80f4c9331268bc7461b3fc2fd939b3a59db6.root': 579328L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_49_18885e05199f4f944a04857f00f6cd9ab67c633c488b77e1583a805f.root': 65707L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_98_9bc77cdd85d9a9e9a9bb0100928956b428b967f6380a1f107d1d63b5.root': 130639L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_69_8504ae1c7b666d86cc405b4c889af4a6c32ec5fcab19d368673bc4ad.root': 572069L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_27_589cad0aad8ec99d19f6e598bfd54ac387a2214c8eaddd2d5e52b8d2.root': 308542L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_10_a1a71c4ccd5533cd19ca5abf1463796e90510aed331dd67a021d2350.root': 134265L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_6_019c06947a1fb0ef4c4196d4301eff87b60c4948f431b84824987a87.root': 551472L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_19_33cfad92a00339d473e82a099738b398b9eebb388162e4a02cc6ee99.root': 294548L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_53_38a4d116efd96f454e78082a228fd267017bfc7f2d2cd2ab4b5dfae6.root': 742082L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_24_f34388d3e3606901881ecd961f681d403c8a9ca0449fd70b7b9a387c.root': 641441L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_21_aac61276d0838fbc8ff481a5fbf8be3c3805fa3cca99c9c911068d92.root': 148767L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_46_1b2b0f4adfbb16aca63a27d6246f3fda64a79d82ab0652b002486395.root': 715700L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_59_72e8c8e0819b4b166ca0661bb704267c153049a208d4562b3a17b60b.root': 79356L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_56_1d4be9ac3b67c73ed8bc2d7044f0548fd12e5528783a429a05edd8fc.root': 750865L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_34_b75fa5c82b290aedec0916c6b3a68c24971120594a65686b9d053234.root': 47299L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_44_92b1c3342408ffc3264da462b3d49dfdf304b5a617be5a190dbf4169.root': 708991L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_15_1a155eac955ae103277884a4fe404c949aef99a7f6b92246425da8c7.root': 375151L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_17_b15b739b40779b9f18f1d6f4ebf65f84f6ea3eb50fcc8e56380a429c.root': 447688L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_40_ca21dc6af99a4da899d55c71962b4bb0881e1f3e8ecd76f8cf1c9f94.root': 55556L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_45_748c3206a9975dad74a3c1dc4dce9d2c6c073bb866a408c03b8823ba.root': 712346L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_24_1de260818e1455e37bb5670324ad404dd2ea4a7b4139b43063b78655.root': 34392L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_11_30e82befaa9b187ff898c940ee863dac417869e0ac24a4219dc05d4c.root': 282338L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_73_14cb6609cd5753ac2b65c01dd3e398902c9f44e14ae84745efcb510b.root': 582300L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_22_ba5ff7c6ebcea9179ec2d3d4dfe5a02d705b999e31f05164d4633707.root': 32154L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_38_14a9f3cbf41af4166c361b3e960a8c33ae24b8be49d9a7c008c5cd56.root': 326336L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_9_3e84e4aac600b49aa1108d9404768c199a7d4aabf3616d7eb7db1530.root': 188908L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_36_90a0e39201f4917b9a17d6330c411c17ddba963f7e98589be20ec02e.root': 323239L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_25_2de83dfef4115a0448825db1fabbd8fc502e2b88e9640df75b3ee1e8.root': 154097L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_25_d574decfc730a38d629d67d24c34bc4489cedec29c16a2a94f658feb.root': 305421L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_30_6f5e3ce234f5fb1597095c3c697628a8d5ae0409389c373987070118.root': 43056L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_95_e416c94c17c738c514d62a4916caa0c9b6798cf144b5a124e4973c9f.root': 127175L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_53_f0d2e732e0f83a6218bb43e754673b48cb5d02d36338454ed8c33b79.root': 353280L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_109_563f650009784de868f70d922f74f85ef68d5a5361473530224e0770.root': 12511L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_47_7ff2e3d178bab24377770b722ecf72a9af22460b5b0286a040c4ee15.root': 183635L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_13_c872995332b57a342818a3cd7d2cd8c28635ad770517bd3351824d17.root': 371126L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_25_2ea38c597b09b1394ca79007f124a145e9f60bea791d338a463d068b.root': 210152L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_42_428b8e7c3051cac64fafd9717131d301a41d2ca1b31645cda034ae2d.root': 57857L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_37_74c4edafdc086812a924ea34c7bfeb3f002c01c8b3b6d689a95ff4f0.root': 495651L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_23_4e2514621fea226cc319f05a43d0bf2eff1e22fcee333ccf72a1ee8e.root': 463209L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_32_18578666679c4cbc2b8bdb72b87d69183f1fd4afd51002a98c7a6627.root': 484797L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_24_661ca296e5062cc56156c8ac836ee8011309d5739466ab6ddd1a7ca7.root': 208844L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_38_caefbf6766cda570053fa1acb2ae828f709b9c41a51d6b2e812fcf49.root': 688206L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_58_2f5beeab82bb540a16506825958b200d41637e992f84baf19a12d3e8.root': 254637L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_14_8a7d3961c8b34d0e30e76d46de757d5d32839bb03694f5b79224d2c9.root': 372993L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_70_8109e94368ee25179b193587014362c59dcab7b4a538bcdaa72457b4.root': 576882L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_1_dca44cd4ea67380c1b4964336f70520cfc4d23d1a0af139471e96836.root': 427665L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_37_6135a15a9ecb66f41d1db6146c46ef811a9b5f7d750e3875c669e766.root': 50899L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_45_07714e0025dced20575bb510f7e6111fe78341f58f761f7dff25b66b.root': 338326L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_16_2f5458dfebe8de71657b12f46df562b5129a1544552fe698038a7e5c.root': 377092L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_60_3aa0fce286f47f9f471109c3fd15e29c6994d5ed2ac360a4409c5d78.root': 81986L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_71_1043e71651d165b07145d964d645852df79c8a31bcd799decfbb065c.root': 96321L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_92_d3f49195b3f0f53e690b72f68621e9f82b0d9683aa20dbb5c7eeb866.root': 123744L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_25_deaacd0acf6e28f17068c336e2a47f0f88940787046273bd0a82949c.root': 644656L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_44_6999bc8078f1ffd3d4c82ce4fdc6f50f683e8c1373d4633e3855cdce.root': 59901L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_24_7d85512211527fc41605380104b6ad9eee0e4de0e63c6aaf4a8008c1.root': 465656L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_30_fd0b4066530ed46b2d5bb4b4c971efaf63b0460b0ed4bf06bf261259.root': 161796L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_62_f0d2a46a1b2d980cbe1b0fdc916ce459276c5272117ff046146c6560.root': 557753L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_93_4eb3348b13099509d1aa580e03a8ebc388c28c5460fe06e06dc67c37.root': 124860L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_74_c8287c7f8e5ff8d56da7dc609ab6fdbf7a6c6b2e7319d4cf31711795.root': 276286L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_9_c014b9f53007f638ab93588038261022e5e5db6892042278eba1d5b7.root': 775217L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_74_bfb637d49333021ab8ee8b56d54c9c53ee6475984e6bb75ec2e3e012.root': 584525L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_45_d50eca64dca9b01095ca8b766d96e74fba8f32a758f6d0394f1497da.root': 237750L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_46_6601450ea4f2b2aaeb686a443b08d6da511b7d9f68f04550fd76011d.root': 62299L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_22_2a25cf55a810ba61f54d3dc9ad0c48e1fd87e6f6b6ca5728801777a0.root': 460778L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_32_391d7e9f0045f70f88a6fc3540efb02108736c7eaf1eae132abfd28d.root': 411996L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_53_80538b499fc473b6fafd7e8f1aa4d9132e45215ee3187e7b2a030047.root': 536369L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_58_c70517edf8c08224ad7f6d11b96b2d09a88ea3faa90fae8feb13389b.root': 753964L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_21_c4df5a48b62644886a7c7d5e024ab179eb4c84ed99fd5e7419a7a22d.root': 298882L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_19_c92592e957576346166f9a3d5e29a1749d88453ac3e5c9605e2790b7.root': 382793L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_39_6d6dbbfae361403f5ef42dc0a4be7735ea987f15ee039786006bc214.root': 172874L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_62_9fbe8b3cd38a52409067d84bba4ed68af8332fb1f64dbd655d2aaf27.root': 768204L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_73_3dd05c1c78e13342208fac1fddd23c9ffc540b34e0b7d384d5003298.root': 275108L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_14_0aa423469f78bcb3004f35222fe58689b9ed0aebfaea347108f9a4b6.root': 287232L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_70_37882a9e2c31c5d708f1c94f8aea0e0aa3029bab59bf887608082928.root': 95260L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_52_94beea66d113d3eb1cbbdccfbb164404eb0a85e3bad0f7f52ee01a7c.root': 738070L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_45_528de5547aa7c6fa737965c11b97cd18ffc8a2f94c6a60187c5053be.root': 515888L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_37_fbad24504b3bcf6ace3ae17cb4c1b4b77cd18adb8480f28e684671f1.root': 684756L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_113_cf74d1270b7718d2d943abde2b0ef5a579735c17b437366d18935b6d.root': 17915L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_3_1e6c89fedd469fd727c52210c9da47fe7a2b45bbc9ca142cdc280ea1.root': 41892L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_18_537fbd7111daf0ef07b1c6d850c6d7df7f408b2f25c82cbe0f2d46e2.root': 144331L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_48_23fb096d5a8b2e86afead3868b5c6ae0d57abe9fa84b3324237cfdba.root': 722266L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_21_abd80a18944692adbb06ce94c3e2a6dee60e52f10d61b81777df74bd.root': 388340L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_30_3e318126195ae1282aa42e7ad72c86fae297a32ad08e8d3278c97a4f.root': 663191L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_4_4f96561772fbf49c84272a6d998e9bf51b6fe4d27381a80088fb0b9b.root': 54405L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_45_71041784596748d37c665029a375b902c4e1b9ddcfe6f7f3d3e79731.root': 61219L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_3_8449bfd37836e1c971f809148daf8898412f9257df681f67f19224e9.root': 405991L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_45_e19206feb82a1280ce5247920e868e0c079f041d71e6e164ce731c73.root': 181217L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_56_006c5421525abecdad7223123d624720df94fb76967da4b71f9e7439.root': 75676L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_7_35adfc9d66c049fb7d54cbde6f90705a59d44b4f8b5cb9b6cc3939e3.root': 769104L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_59_0b5d37a11015b4c64e2ae4a04199b79807f926e5067fc0108306493a.root': 549312L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_10_169f4228664b563d39c40bb5274177f0918aa9435357fa4ede1fd378.root': 365651L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_30_61f2cff5b389517eb7137ee2255d02fe36b124018957aa280122866e.root': 313990L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_64_2dcca8df31a86f5c8195eead4f31abeb8961b9305bda7964a6747e70.root': 560404L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_2_e67e4fa603bace1dfa4c450ebf12734ea44da59e756db4643be02399.root': 296054L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_15_1ac5dd192c811d89e6023d0479abc4d1c641b0114ea7c639030b6965.root': 609766L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_67_c99bff70fe8ce7c82ef567cb6c4c9bf53db716c5af07ec50c2a3998e.root': 567680L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_35_99919530ae301539aa70258b6d347893a66331169b91bbf2dae8941e.root': 321658L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_12_f748223ce9423d0a7c4ba08d0896797aa4d2307fb920d1d3db33fc46.root': 435940L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_14_cad69396cbfa160b4283f1078e0459ac13c02a858030de0fa22a2f03.root': 139365L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_58_1d5c9148cb72a763e043e754a6c5b9a529982decfeaef1a59a86293b.root': 78153L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_5_767091f842f219cb14e339ab072cbd28f6d162e94183ec4dc8294298.root': 66650L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_13_5f556bd0cdcded5910854bba3f4e15dbbaac496dbb703d7494054669.root': 137996L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_2_b93e320b23b4bb4b26e556e418a15afdb210e8b3cfd68b3346410029.root': 454200L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_18_cd4ca54a49fc77438fd9e58cc87416e89b932a28bb04675bd8af5ab3.root': 26700L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_26_cc03bae36d401f8b1de0015ac1a3ad4cfdbf018f4a326848043733c5.root': 211329L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_9_537403f1f2877edfd5ce7c08d9573809e8a5254bb164446a154939b2.root': 120232L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_33_0b90f8300ab366dcb3a6947d00663169421a2904247daa8b61bc2062.root': 221305L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_38_7c0d3c33adbcacda92b04993ba1357074c91bfa624795e36315cf9ce.root': 497890L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_6_52436dda0264d3c141e6d5e61734e3b64aae8e37eee6a8e4a6a64179.root': 420277L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_110_e2c6caa09c1e819d233fbffc3a43efc937a324a4693f690c2772aa8c.root': 14455L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_29_0f9cfe8bd7a4a6bc394fb288e406124180e42dee43959d61efe04177.root': 40461L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_50_c700a2f925f59bea5f976b3f59bb4c593df37bb9a8ba120de4298ae1.root': 529292L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_88_42d177ed9823a96d97afc696f87be1ea09538780a4792a69e80873d0.root': 117470L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_51_84b0d3b8c325a9f953cb83fb9ae211e922ce61842cbe57c2ffa6d595.root': 69330L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_83_8aa7cc2a7941bb82cb1835ad035c44c64821416d59584dbc73c2ad48.root': 111486L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_36_8dcce8e2bb8e5b31896d9c33166b7a94674349928f4d48593db07a99.root': 681561L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_2_1e6a8d03220237368a77540a7367dbb74b003664fa6d3918cac2439c.root': 384580L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_56_37b4d372123230ff2959b1cfae8f4f3078e49be91c3c57c2bcf80b31.root': 542779L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_21_b08f4827ce3342343b9323d032cfd1dee4d86d989f37b02d1df16c46.root': 458661L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_5_1a5d93a41ca5b53ff44b7c8813b483a5e21cade51a36731c73c12586.root': 243766L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_94_3311bf130847cd23aa1c6dc741a226705ee845bc654124b64ff77d6a.root': 126016L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_36_c7277692464a813563d3071fe28d08dca91b455b365f1a3f8ddf86fa.root': 493522L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_5_3aee10df3116f7165827fc92daf4db777980f0ee99893c0b3f01f2f7.root': 728343L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_41_351fcfdf2e52c76460c7767424fe880ade0244706248ea651a39151d.root': 698683L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_33_15789c5043c372bbc6398a4948bb21aa2f930f7664a69c5c387b7299.root': 165624L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_41_231b2227b4603a06387501fddf408dff42eb11c03ab04f61821dc9de.root': 56806L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_39_c7866eefe189f275db4874411057fec5ad07dcffb84c551945d08c06.root': 499988L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_39_9216a43b8ec83ae6416098ca44250e0257aac328d7fb8b7891e84d8e.root': 229010L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_7_2925e83ae0abb4509d23f71acd4de5a4429ec898c66e5597eb81490a.root': 359044L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_72_a637c16115df94f7707e1c56f0243d5bf25aa8df574028466671871c.root': 581814L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_36_5a5924bc52735847ca07071bd0d450ead69db9d7c51ee4d771672894.root': 169321L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_53_a2b92a59ccced57f84f29d451a30df03572e5802f7867faab628814a.root': 71962L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_49_7ab07b318da454373739ebf88da87f60d8f917d0e45f3dfa32445356.root': 345003L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_49_408b3336b20be10e49577c9d200493c179b5352c6a2f97fa0085ab6e.root': 725352L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_40_791bb77dbd26031431bef27ef1f3fe8214723281b78d13f7aceca6d8.root': 231493L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_57_8d83c8f44359b7a7cd8e49fed06b8dcc05534bc98e5b6492bb55bb6c.root': 253437L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_26_78c76a39deb8227359adf705cb639b10ec6c6554e9439416eb693f6b.root': 307003L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_14_c35a1ac9ef35346644b2ab593bb9c0884cd6ce1d540933ad4c41b169.root': 21627L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_63_87b5ef51d96e42e75f010739818af2c05279bb5fb2a13eba7322f79b.root': 85993L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_13_2181ac9253e71c3945b04b210434d48f51e6f81ed70f9b1a412bb3f4.root': 20546L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_25_0c37f1506876843e589e595fd48a7e15ec813f919ec06f6b503ca9a4.root': 468095L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_67_edd948fd5880537490932e530be9305d1c7a2f70c78edadf28b83b7d.root': 90384L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_72_1fa239a064aecf4d8e3425b649dbc96f65250d3a1bb1a5c738d7fc76.root': 97411L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_31_eb152d87775339d49bb9d0bb7fa64b33d5af123a70e4ccd1bd4e4e75.root': 409973L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_4_ef680541899e7c8e2320b2367a4b95fea0f698b82cd431cf54dd35b4.root': 502357L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_33_07715bf9881c7aa613911ab0edc13f86bf04ca334c9744cbff1d366f.root': 486917L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_99_5dc99ae6e57963248ea2cd0591998ac0243e7929da233b6f2105215a.root': 131846L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_73_e934c18b4eb069590c1d496d373095d7697eb817c2bc7b23f6cce5ea.root': 98708L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_46_b160469040490e38d09e02dad47af88ef8cd0de450bb44deadb5eace.root': 518026L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_28_343298c61659feb5d159bb1ec4fda815d4a25c602436711964fd6cfb.root': 39300L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_81_3dce768e83a596664c3a54ea783d7bf638484f3aa65fbadff6143c79.root': 109165L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_66_b53bebc0e3311f019b60fd7240621e21636c2130212c34f8c2b5db97.root': 89329L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_42_3c66c573f3963cd0ca9bb0faf1fd0784c3c7126800bdc5dc559596d9.root': 233953L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_1_d2c9049615e21d7c5d4513d5a85ed8544b8d5bfe3ca5ab3ad686ab37.root': 133003L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_1_db89fb5f3589b7f90544fda41bb9b7900c48ffb1df08c54e0d6b558b.root': 591540L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_16_648914e618782dd8c9ea72eb3cf6d05454cf767a724a0708187d42fb.root': 613055L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_14_00c5b9fc3a6219d6389134b81eac4d37f0d9f1da67aae5fe059e1e75.root': 195358L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_12_f148d750e3ddc4288e250dbe6ce258691a9d6c9ec4bba855af6be50e.root': 136712L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_100_ab0bbad3c15f7e79172558d86110d6ab563985aedd2cedc31959fcf6.root': 2290L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_38_7b895c8a12ad4cf6465aae6e530982da1639f669e5682a734782dd02.root': 227537L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_54_2fd2c627400f932a3c2e95f72c873947dfe87037de912d30a4b762cb.root': 745081L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_66_8f169ff9e0e34a50de72b6f8c3bc5aa2956445d5e9d50c8c89b37fd3.root': 266026L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_107_a51e3ef6e1977c7d3ff9985ab7a6e14fbdada571e9e5a2611eefe401.root': 10287L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_33_4fa3195e8cec0317609f0ca75ac1db2360b450db7c78e7b0b2a51374.root': 672628L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_47_def8c5a458ddd2f5ac9b8335049e23d142af86a86c2e681a9baa128d.root': 63476L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_59_fecb475a20900f032903e45d82dd1c444a49e29194306cb78dac0c71.root': 255907L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_19_5531ee3c04353c3d24ecc5b8fe28770cdaadd372892095f8004e84bb.root': 621965L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_1_ebed7d806f1324a2c2db9453e19f2309b556da0dacbe12913061c392.root': 363422L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_65_878b2b7fb5b2e24b3cb3fafe86a5c12d5fd5858ebe480064a5ffab56.root': 88177L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_9_7f403015a446e3fbc1d76dc5e0ecfd8e0f74193ae2e54a03dc5e3d76.root': 589194L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_60_1f2bb2705ef857767d821653cf4be4ebfc7f82c15b302f68efb97693.root': 258382L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_31_c3482b102b819c2d13117ebdc1557743f4b4010bfd4d3e15e7c509ad.root': 315637L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_32_78d94592949bcc84bf96afbda3015a72ad9135ae86bb5b87a098df83.root': 669592L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_22_58961688e595d5be474a5dc2c848a5f2c8fda69328f11be237d08618.root': 150029L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_65_9c5d31b62da1216518edf76fe226cb070103fd6e4fd6270d4170e1ba.root': 562971L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_10_dd3223a52585631b8cbc9702d25ee47d9c8a2446879b22758193c492.root': 594530L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_44_171fddb14b540a58bedd968beca57400e7bf2978e7a79798fa444ddc.root': 513470L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_50_676cdbaf8de8cba9305189ec86682450dea707ccf36990af8f2d7705.root': 68020L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_29_0fe95969471011cc7c749c7fa01ecd26df73203709d1ff7f4b8cca0b.root': 159307L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_13_2698b62423aa90b83951b1680423ac11ea3d2aaed6d6650ab890a46a.root': 603856L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_52_efc3b073101f4d3be2fc895abd650a8aeab41c7fd57ad583a192e900.root': 247622L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_28_c9f6fade598695da710922e81629fd2a79ac61b33d97df61ee2e5ca2.root': 654142L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_38_0e9843ccce500a99c86df60954c2c12e8c54773030d9962eebf04eff.root': 52070L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_26_e5b0ba1acf6321e2eb1ac35ca720ffa372606800cbb1efea70b27b09.root': 36688L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_2_b5fe2672cbbf36a4ba2329973220081eea6c7ac82009420590975c6f.root': 29192L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_1_26262de71af26b980b45c9fd34e2a3f12c02f5ec114a2eb43191fd00.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_34_396201b7a5dc6bc9f00375d5604b6d29a0976b37de59f7c1dbe18b12.root': 222600L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_57_8709bb3fcba78996141a14e3e41d17bf7e53f03ab4bbf1a4ff8872dd.root': 545018L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_35_02f3e5c7478546f2bad397215d1dac62ac4b0295bf2a93dd75eaa3db.root': 491330L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_32_90faa55faea47e4260640c5c3ea71335cbff94f33a83fbabc45fd9ae.root': 317163L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_8_d5ee2fe1740cbb5d976cd1edb7be4360d21a80476eb4178a40a2f5e0.root': 276861L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_72_43b9856b89ee66b9f250f84f8a41cdf978ef831d3ca57cdea3975e9e.root': 273905L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_91_58001ad89c55889daf1e7b29c7f2428802691d215e4fab885aaf865a.root': 122567L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_32_04aac5e49dc2931147397b9994ebfc3a60225661171cd69635d6d098.root': 220051L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_47_ad888601b6a7eeb4acae835b53895c332d3c02b119a2d43abb8c475b.root': 718792L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_19_54304f2436043da3bfce690cb98ddadcedecfb9766c5a2fa621df994.root': 145577L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_48_bf9fe98d7cf1130191e300cc55a77bc1936d49f4fe8396ce4e7ceb69.root': 64462L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_35_082f02d2cc4e316cb5bedd47c25c5ac906262402161ee1d11f9df51a.root': 48521L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_66_67439803a0938c5b6196bcb7957c8fed4609be01cb9249f57750e88e.root': 565255L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_86_79249fe17123da017a0d287bc5c1a622fa2567cfb15ad04f156f849e.root': 115051L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_30_e109ff55ec2afef3cd253fa2880befb1f542a5c45e7cf6d711edd176.root': 480211L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_29_52bafead89c60646d274157ea15411830df48736f9aab9044f24e20e.root': 656925L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_26_60962181303f8b8284260ea5937c66bef32547551cbf7e71ad5a1142.root': 397939L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_39_2d77104a4e29c4814eb6636a441c9f680fcc660b98e93dfbc3b0c99a.root': 53430L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_10_acda776a68970e40522f2eea3659537cfa000e6acf0834ff754da927.root': 190406L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_7_456784d4d531aa9ce0a7ed1b042739c00b1ba0892748f063306e5363.root': 574218L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_15_5f78b16fd4f33f991e3a337666c2fac47a253fc8372f93269088c7be.root': 140662L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_6_700ea86f368e62bce802052269a3a99195f06998ffffe757f6f66e9a.root': 185347L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_65_e1259c9107d75dd9dab044b5c14e72373f14df0aad8eef0e097dd519.root': 264628L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_49_76ec06291e7edb4f5e908e4656c7901a6e91f408b543514e7b68f60c.root': 242475L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_102_effb088a1cf49f1b1736d80f3f00482c169f3e19f940f24489ac17f0.root': 4512L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_55_1bbcd6adaee7d52c99e710400d7a8d938abe82edd471ec9b411cdcac.root': 355260L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_35_3d0ff34f38a0daef5b0703b06491abd8dc0246ca0d3ac092a7fb9117.root': 223835L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_33_5e3dda8f6b57f4854a0e72581632d2abd45ed3681d89e1880f8c8d60.root': 46050L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_61_25fe353a5a4cce8d1988934bbf0a68fe8757557f6919ae1912c71588.root': 555770L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_23_d11f113a8e562a5a1e551b2dfb1d99b26b61893da6ce2eac94513388.root': 392205L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_27_fd4b436564a082665001f1ca64d082065b1f24eb50bd07b729e55e89.root': 156709L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_31_c3f766ea40f452305b609e610ecf265530a7a3c386f4f65a1ef4494d.root': 666459L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_112_af5604c22e235a4e4e4955275175a80f99a1a151ec54dcd384dc8ec7.root': 16589L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_44_14f9d7fea20c201d1dd610d6b094bf0ced97596823353a0028ae0bd6.root': 336810L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_26_11ddb7c783ea0093f8373717a6f7f1686a79684dc1b88db5457c6b3c.root': 470570L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_36_c4c8b7da9c939af98892d8b955849a6dc2e82b13b954daa9d6698b5a.root': 225029L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_7_aa900469b2b4b58f78659ad6a9937658d9f71e159243a1da984f42d0.root': 186137L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_84_2f74fa2c33fd5eb2c1f9e91fc913a8ee63830c55ff62fd40c4040757.root': 112686L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_40_1a7fe68116b700d5b0cdde70d789f4fd9fef38d78a17bd395eabbd20.root': 695655L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_76_86f40e3fbb0bef82aa09125392a1ff25419b4c964c1d70421a091b7d.root': 102164L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_34_52e1a2f96f5a2a5d14c42f1dba2ebe57d9cd79e5e151ebe4fe97b79f.root': 320051L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_8_e298862b4127c28fc832f0a721220408e4c1980a2c8891a725b8c481.root': 423817L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_68_27fb95e1dfd62758788e2d331dd1bdc6bfcdc60c401cf7dc90ff2a47.root': 569898L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_34_cfa1620548e5104850513546c80fd882cede8fce42ad0eed277456d8.root': 166963L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_42_6495ccc582232b9f5659ba21b1acbf1b97f1a97731225da08ce1d097.root': 702252L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_35_e6060f743b4a8717e18604172a1091f2286f7df8f75327cc5e2d76b7.root': 415871L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_10_6f467f5b152f4bbb5fb6fc8a4c22fb76fc397bdff463eb08f2aaf6a4.root': 1087L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_57_133edec5de413a2c4defdcd106779ba0d13ae5bc04c61c141ae4331f.root': 76916L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_54_57669ff0351366c82ebaa2bc27a43fcfac7c826c7a89de3dc3568183.root': 538427L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_49_c1cdb0b2a827490a9c665b93b230169f48064fd4109b2974b6a92bba.root': 524715L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_8_11cd27074f82efe9b48a53cea3525b07144d35e5a47ccc2691690f96.root': 187758L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_23_fd801c23c8fe6276cd0706791ff7a525f939ac002cd7a656b2030a69.root': 301888L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_3_b8ea45f679e76ce0dfa2ec40e539332f50d23bab8c50411bf3657cda.root': 660026L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_19_f16b5bb0115841bfaf70dbb6c8e11500ad12a5345bb0f235299bd617.root': 201466L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_52_ef5279bebe08f5de80922d067d4daa0da429564dbeef73a70a224fd6.root': 351242L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_51_65acb6dd3a574ae83d4ef26de80a98ede4f2b1bc9c839e1caf9c5e00.root': 531820L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_6_e3d43a5dc6d707830768657a81bb5ec8f0854fd1394293d545a9bc9c.root': 257140L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_19_89e308504d71ea61956f20bb18def873928058aa75a4bedde99d8e61.root': 27866L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_41_c0667b8c17aad3e4eb3615754ac539c567d4ae7874b02425ce4a1ab5.root': 232746L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_12_7d1408e76bd077713c9a7a898528c86c2a6dcce55a92ac3a954b363c.root': 192871L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_9_689236b7f704464c390a064d0ca1755b14b3a736d1fee2293f992bb2.root': 278058L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_18_ed48244fa03cb39b93ae48786b624bfe4b5df5eb9b65821985b2c2c3.root': 200231L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_85_fc3a5e2ef61eb56d7cbe39b8b86fdc61939400b0af494b08292d7a45.root': 113878L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_37_fabbbf9126334fb4f9448467be8201439fbe5cc88da3b66110be686a.root': 324811L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_34_e15b1db32066ed560a33f658c93a51bf6baa44de0456e6b362697eaf.root': 415773L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_11_1dd762b35c4250fa70c95fde1c05f96b4742c0210baced5a11a7bd98.root': 135516L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_29_26f022e3c57635bb687d38678a047edb69cee357b6ac3901f981dbc5.root': 477680L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_7_f874909579b54d1ae510c26112b1e6cc5fe812830f22fdaac89d6d2e.root': 93973L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_24_ed91ec9d404ccee86735b7fcf892b846ee52d504506e2fc0c4b1098d.root': 152771L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_69_8e74facf78ad1f84c73c2d30ceefbece451c1723abd3b0d4e4273b79.root': 92795L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_63_9dcbf7bb97a8bbc4ba7337d130b693eb5e819a455289fef388694c8b.root': 558007L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_43_7b5cb87b8ab231d26aebd82458ba8295b26bf2984ce27184828933e6.root': 335370L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_105_4673bd7eb9ca80404051453777822ba18c12b4471a504d34dad0ecc7.root': 7823L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_58_09f12b08875753e61ec35dbf4a6962c6a97164ed74b9a53d6ef7517e.root': 547155L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_15_d09f72f7f0099d8589871e56e51330f668d32a36e70dfaaa1cac7457.root': 196514L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_25_8eab5650b09bc8a91993699fa46719b5a4911e53f5b750369fc7e8ab.root': 396001L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_43_0b99ac8f60e874d437d81d11d538a6d3bfd3a72318da6d6002236aed.root': 705589L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_42_a1182805773bcca8f74c6c41aeca71f5a659b8bba311188756e7785b.root': 508926L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_18_01029eceba2969dc9ea99a9d73f601db56f4ff9a6eec0faa8ca62d7a.root': 293020L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_75_7047b799134df6f480b5e037b44ed9cc53a72cb59798fefd3a99786f.root': 586670L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_17_a04b055b79074534ef5ef5b3604c959f144e983af306668b03c9428d.root': 143108L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_23_025e7d09704203dbc8c522cc351bfd3e2ae3c22f6329e379f4bed418.root': 151561L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_61_4a88ca949208e6cefa8a5d964a32823983a006fe3539b7ef0a9d79de.root': 83373L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_74_087a5fc9378ee1dddb98aae0689462eaf1dd2787ce52f53417bc41bc.root': 99752L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_47_ce60b3e572bd0e7a4473c370ff30093583e0d38b1c2b4a0a5f6a484b.root': 341607L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_114_53b121eaf5f18c7cb82d30cab53239f2a223319a67250affff42134b.root': 19144L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_20_f0dab977d6f1275202b5f79318e0dab466077b47151a24c0379e0c17.root': 147596L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_33_0d230fe477a51697e336a65bbaa161512dbba0a8a478f79ddcd6c33f.root': 318650L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_46_cccf46f4fdf0de58691f938bd6e6e65358c9eb8cc7cc10f9bdee3e61.root': 238858L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_55_970d25870d608995eb69547cfe4672bfd6418d2a7c107fdbd6c6e564.root': 748163L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_61_f09e8c5eeaa6cb4b16f1363a916faa044fdde1634a990977fc2a0363.root': 765290L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_31_aa7bc5accf103ea4366032c565bd4782c1789277ca9ab98dae14c1ad.root': 218808L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_77_43e31839e04d055558307b985a54e676c18730a3865044d46abd8864.root': 103526L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_28_805fbfa4e9dc92b2984af300318d6f6c7240012eebd5cdba558e51ca.root': 309351L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_15_4f03e3496c3281deba76a49041ec52a9e59d592836c3fda26aa62d42.root': 288647L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_17_b7101fc421ccc5d70fd77ad7449be8ae948a745e0881f22d122ffb31.root': 615999L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_75_1b5b0a6d6fe1a2e10a6692d56452bc2df59e04f5f5a72c17a0a47ff4.root': 101079L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_21_ec03b2397ed4ed55880bf278dabf42bf9015437a607e0f8690b78486.root': 31073L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_111_792af6f863d56ef05fb71d5a0d5499d85cedecccef4dfd5535ca1f52.root': 15479L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_43_d28a965e1b455285cd707ce0320cfb35f928f188dc1e9f8205705387.root': 511090L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_16_9ae3506d6c361ab2cfde9c8bf286f4596e1164d262defa2999673d80.root': 197760L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_23_6fe8ef3a479963ac0653d9788efe1ac2080a25666dd369048d31edaf.root': 207613L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_16_751fc8504b3dc3f078c4a7b6e4817949438ec7bec317dd841c5e618a.root': 24500L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_17_32586c56f707e4b030caf3c857851fd785b17546d1b42bbeab4546cd.root': 291525L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_47_c4ac5f0d151e5ca971641d8ed86a25f8be23013dca508e2d2e17e9cf.root': 240084L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_20_2d357daed30266385188d078b9e6ab9df85ca3255dce8fac3cf6b56a.root': 29827L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_64_ae8ea35b01ebd9ab5a759bd7e28e120b70bf759650bf8a898533410f.root': 87187L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_29_95428b58660a0bf4ed43cb67470cefd53a1e0366c3b2f3bec8b19fb4.root': 404163L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_32_9a2bea25e5dfcf589161eb2d6a78eea15baa8eaeccc6265b8875effc.root': 45125L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_4_b0a3f79ff1feaff5b546a4b3a6bb789a09a8081412cf2dc72782e85f.root': 329476L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_41_ca7a960ecff087d256546f6b1b9a2969bc4d2e28d669276dad9109c3.root': 176606L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_51_5122e7d1b1ed8dc47e3df9cb9fdaab1cdfc196fef0cfec44bce5ce69.root': 734608L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_14_3fbe74d5b5728d0da9cddecb1b0a9a18f47409db2d987d7efcccfa23.root': 441041L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_52_943c9f963ccef6bf44d13979a5c23240abf75b0ac762b8cdcdd27643.root': 70876L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_26_97710f2116df7bc05f904be8b4429b8b931f31cb14ce151244541d91.root': 155379L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_27_42b458b5793bed1ced043fb783b4e8018d86213d8e146edb3b49b60d.root': 400205L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_13_b9e38f081ab538af81fe0cd305117a9463a70631bf1b679a2f9275df.root': 285656L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_7_18e7c7072d81c2640723e95eb0bdd189d3ea5cc34f4c08c1b63643aa.root': 422128L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_13_6c1b0d82b8200ab8242a46b08ba27ca7b2e45fcb387626ab9a040be0.root': 438299L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_51_297821f495d435daa858aa0e3dceedece80aa176135b319bc024eb36.root': 246324L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_5_ddaf55afec28641857966aa058cd09dc3c7d58798c21a992b13616a8.root': 184163L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_24_9a5084ddbee3c94f26a89d3117fc6bf12f250415239dfe7814c90d6f.root': 394015L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_17_c70d1d5dd5c8eb0f34d94edb16467e95789e302d9ebf39bbc4930efe.root': 25640L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_16_52dd009e85927dd6d77f9e08ffbcaa3f46792c256e8c26ce883b3afd.root': 445486L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_8_2c517c773401d4e688da31fff817e2475097455a509baaa52e274360.root': 107034L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_68_3611a30597dbb133e9c26820bd88d85df005558404f1e609d0fe2cf3.root': 267654L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_8_3925cd4c6e7e2d8b0d4a4e1637006802a5a59c50ca0304470ea5b7bf.root': 360603L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_15_451c34c5e5702ce4a24e2435d1ec247a2ee491bd727be2d7dd815629.root': 443405L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_108_63adb972d1fa4905788e3152fd9f75e03a019ccd1f8805a3bc76175d.root': 11410L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_57_15d209438211163bda9d5cfe205da138e73871083b0986a0d99ea563.root': 751022L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_4_4043e260043edb41c703a1c8a333fb6924fc662b970c700596e3b7c1.root': 692866L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_27_163b65eb6121b48b24fa1a89506e31a1129e5330d73f7f8864714675.root': 38111L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_46_cdae0cc48c991ab6fef14404a67bcf087ba9fe90fb0ea1d58269851c.root': 182401L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_1_8fca5cd9f8b3025f14358ecf808e20c640d09dd30e341aba6ed8db02.root': 279323L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_79_ab7265fbc8bd527df11372c12611ba70f01b6538552f50eb67ac4edd.root': 105940L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_21_f090d18315fb06b4d3844759efc2bf971fe1d2547bf022abed015669.root': 632156L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_27_87e53028727718aa7724f8ab74f1100c164e6f584529c49b98ccb753.root': 212718L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_89_4ec3614785f8f98da5bf40581a198ed271e093821c2f4119440c1578.root': 118862L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_35_11ad370400639c3e473f54914e015189b6406c0ea87a9a765e934dd9.root': 678453L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_2_78e5b1ab2b6e655afb17088fdf76dbb87a88275ad349ad3e60b48e0b.root': 625102L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_40_7cc533f45abf6457162d0f8ba82674843d8fe211cbb4f92d398ea322.root': 330935L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_28_b374e4d4ad8340788871aa01ee4fd855c4595bfb277d35b6424b0ec8.root': 213972L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_104_9dad4b817289f354923b76506595ced02f504417b42271a632d13810.root': 6687L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_23_61e10c1ec746051507babb572fdf2a595e429de5dd64aa91b559eba4.root': 33253L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_30_67fbd61f86de1a79e975e6c72287520d91b241b0cb914c0f9413f534.root': 408176L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_4_339367274927c4a037d1293405bc2b7bf8c910818549e20fad56e3ec.root': 174196L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_80_5014a06b284281bff195c88ab97c51f2fcd06d33e237c82468fbbb13.root': 108117L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_16_ea867c1f2e7315b933c20760d9c9a9df0a89990a7a64d409fce0b44f.root': 290047L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_17_d7db2b0073167e5924b6dce18bd24156c0a0224876082b91aaa3b6e6.root': 198972L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_40_3a73473dbf3dfb783643f282ff5d4ab1431f8ab8d416ab49b96fa383.root': 504711L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_48_b7909f50b3039cdeefb8b2eb4e0533f9a75ce26032664e4d17f09840.root': 343221L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_12_ee1d6e0577adef86ebf8ca680f3694029ad11d05035cee4cae3ba708.root': 284227L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_1_298db5fd1de8c20bd18386a1c8f3c9de692f42ca2b5d3e5cd013bc95.root': 190178L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_40_024db0919ecc71073d77b70a3003c05ee4c96f29e09a5de4b135e81a.root': 175343L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_106_f64a5d2440b18bf17c88c02415d66f0df57f6f6257eac66eb16b1c74.root': 9036L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_43_10243374fa9d20793d90fa47c3c6f5de78b87c751e8d281a9f1cf16a.root': 235226L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_8_98c19a941aa8b9831f1e2e70b9a0540cc1f3e1c300629da2c23e06de.root': 772042L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_27_edcf652e4607eb99c962dea8f857718c33afd1fd3937d9ae4a028819.root': 651120L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_29_5a2934825a9075366a73bb477d9db9ad5f06693840ef2e8236561b51.root': 215148L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_38_d46ebc81a21cad2093738df32de16bdc0d57baafa3f2ccd6d5bc3f6b.root': 171726L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_55_85e63c929b7f1ba3ce04edb87080c2f9224eeffe39785ed90d48f6c5.root': 251138L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_31_c3ffd54f9b15641799acb2a775ac2d4b975113a9cfd52f87c6108dbf.root': 163143L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_6_5ef56eed58988ad963493ca951cb1b56760eeb2f2134158ce40bb100.root': 357462L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_11_2a4408c96f2e9708ab5575183a5b7795f48e784296368975814144be.root': 367577L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_63_fbfde9a556b8eb8d7acee4bf048b15337492e52be589165c0ac59a38.root': 261956L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_21_1dc4e12afd1abccb67b4cce141a29894811d39eaa7a0ef00912d0e37.root': 205239L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_36_39381b1559d173069b8c58e438cba512f9d2eca00faa8bf84c9c8d14.root': 49668L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_16_13e66b436b788319522a2eafc076b77593f1165d16fd1de3fedbc972.root': 141858L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_53_023009ed44eea33ce1f1bac0cccce4557fc816b4c11771901c67394b.root': 248753L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_50_8027c86070850a9e1557e840cd21802db570c30d2b6abeafe9842394.root': 244982L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_68_a9e964b3e92343ba65241eaf61b0a7ed0f3bb33c826f95c55573d93c.root': 91816L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_22_6321cc754eae20a7ad5e5ca4908a1adf7729e425538e7ad5bf751376.root': 390236L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_87_1b4c2949450ef2cbc2bc5cad0c8bdd7001f6421f39eaf1c288b9f662.root': 116211L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_41_02ec1936188d8f51e469cea2a382fc49923e6202bd749194c80218c5.root': 507094L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_34_49f4bc5479c1334a989569cee8018c4452e96bab5006ea9333064636.root': 675579L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_10_8f30f4d3c1a17fa3811c5e9a4b66bb1b916a717dd37c7dbf483dbc17.root': 429877L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_15_7f23a6e1ace95768ed23641b5ee7091eac976f364adaee2036f0356c.root': 22834L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_55_d39a61bea743728cef00326d87e3769bc567e65afe3696f104d0414a.root': 540587L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_43_5d9f266210a815772cefade88282d95df51a090801aee2515ea5ba61.root': 178794L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_62_0baa23aba71553e49d116d2c23030ea1fa06a8e3dc4360a2b2bde84c.root': 84880L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_6_3a4b55b48b2b29ee71e0a20c3d50a76952af4ed820aeb28431a0d213.root': 758496L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_54_246efa049c93f1cdaf9c61255c5feea9bb0a452cf569a21269c56ad4.root': 73017L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_2_61109abb410ced3baf66ae42ee00aad05ecbec48e5ae9877b363c942.root': 146772L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_20_07eb12ab28f4b948dc6c9a35af16829bfaa7d48533a38bb291f3dc34.root': 204027L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_42_29ef5d8f9d503052ddc9c9f3112003fcc86ff40559dfabcb0e20b8af.root': 177857L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_44_722042fc51f7cfd8ccd72e675e56eafbf498749b8a472c94c7b76664.root': 236482L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_32_3e23aa2324a006ebb09597f3571ded1300e449252366a6afde34de95.root': 164380L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_23_147f974645e84714b344410f1490503acbb8ce89b60805e68b551bb0.root': 638410L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_11_97635c4d2525b617d8338f176bbbf2af24579540b2c95d60b2ef2ffb.root': 432553L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_69_95c1504789ccb1ba7fd93221f7d9738a87fc619191ba46df383b3d7d.root': 268902L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_60_9bc32aafc99bec90fb1e508e92b739f7862a60debdf77bea06ab77a8.root': 553686L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_11_d38b192a003af78c5be87015b0a27b8bab10137bfb02364cf55f7dc1.root': 13190L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_97_2acc3af7fb8cc9186f76680b3f8ba16455bec7ebea45b84abd86d624.root': 129518L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_11_7d519a336d2e36a793a73f0e8f31e1ba3597ea9f9a8d831a784b5b9e.root': 597585L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_67_4d158fa28b60410143e741a8ae14c5cbeb5b445ed713569c5fc8732c.root': 266305L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_19_654bafe3d2ce78569a2ec598b34cc4c8ae5af3fc78b2371b448d7145.root': 452079L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_82_f721b7afb7706ced19ca71ee8812fdea97cd3bcdc8a7e0abe5aef910.root': 110387L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_3_5997dcae675420e1bf187da6878eb44b9518d779d6c8035d2a4ca469.root': 160598L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_24_25cbde6d85a0e139546d0bd2abc056de4c1feb72fcd55f90502c33b2.root': 303674L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_51_298d0e1830f9a675a590a1a6e5ea4e361275eb9fe01cbee4855f9168.root': 349680L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_28_24943b52408f0289bb5c0b63e4af87aba65dcd9bc6795b853c10184d.root': 157996L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_42_97eca8399e0c87da7d6a6ff1979332774c418cb0fc4449787a907b98.root': 333894L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_28_b1986764e87363f539cc1c07c49a78a6d7348281a38aadf1913a6214.root': 475299L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_39_430179792f5c725bc21ad0857a4f6f3c21cb1fb532a01b478488692a.root': 691387L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_101_c8e954c6ce6b07ad31292912474c89478d9ae6464545d7fc29c31aa8.root': 3403L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_12_e4e9b5a26a9d387581553e1ebd69657e9f9a59cfd84e835a34d70e9f.root': 369391L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_56_7dd71e65d488465cbfc9cef15648f1ad538886e7865575ebdb53ffe5.root': 356065L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_26_164f16b6dde4976353e12c1a9343e72355bb68b720bad87b86575b60.root': 648116L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_18_ac9ed0f22d1b33240f211f7106e555b78492f9221eca504fc316bb06.root': 618917L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_59_8cf8c2c15d57a53f25717da650286c685c4770e3f620f8d66d0b6d33.root': 756991L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_13_67da913f2a2fa0f313cf08edf7d3b78f0585affc7170d765efba2df4.root': 194135L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_37_4d63a51c413a2a3f6206907da7daa37a1501014b6a578d955ec17b87.root': 226237L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_18_4fc167ea9fc0c1a41e55f46d2550086b18d457ac169016cd4c81d982.root': 380841L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_20_b5fad5c2392551b4f0236aa51938cd827ce6a02339f56ac6ff9c9fd4.root': 628038L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_54_55fae4b34e91853a588f25a3b1b82a844410c847395faa53ff15952a.root': 249922L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_17_bc2280c3f570c3bd543598103d89ab2afc2ec778f310914f302bb936.root': 379050L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_18_3361bbf12ee00eab7b9e01322e932afbea0c74b1f5ff2154178f94ad.root': 449781L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_56_5fed38ac0a4531df9a19bad796c11b8fa5542ed5f5454167618529fb.root': 252310L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_22_bfa5fcac89b345d121eb780321e6751862fbf863837431d2d98b4dbf.root': 635216L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_61_d70512a9dbde1dc9756bafd17786dc2f5cbf380b435ad18b364b04f1.root': 259513L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_5_e5d4ef1b8215373e02fc52058a915b003ebb79a76cd8931ecb683d39.root': 346611L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_3_fa2c73ba4f2f86b8a376f0867f485c8d1230e67b6bddc8b3d55348a6.root': 216480L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_70_297a2b3219362a27498506d7da9aefe0a9842ba1a8b012b33d2aa743.root': 271338L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_6_c55b12e8f67c96ff40b81a681d0d133aee4a683908e552ef161ad4ec.root': 81141L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_9_f8c6ceec826584535337e1bd72c087c6c1e92b7d318591a73016d33f.root': 425789L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_28_9aa839d800768ea73ce3cbf6e397b747365cb09d28273197c06d00f5.root': 402427L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_10_f99189e57e1916e9b1c6db511dd29e7380acd2bf7434705fa8668d06.root': 280802L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_43_887cb5a5f386144cafff5b5f8146f4a0e162df12b4df3cbf6a3a055c.root': 58972L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_4_b85acd30b4b3ae5c08e904fef91406eb338ce5a9bef5ee9eee709360.root': 230287L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_44_e204035132e3c75950d5ddeeb0acef84a68277f33bf0344eef380c58.root': 180001L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_20_58facdab436324cd952666f6e9fcc60912b37aae9d882ec5f836ed07.root': 297475L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_46_7386305e0ad2f2353966eaeb53fdd5df401ae7464b3b91e7cb1b9d04.root': 339983L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_31_6c217c9385a65a1808ccf9b63e70264feee8b166dfd614c961aadf36.root': 482655L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_35_ad1b97694baa18aa776ba9477014727cb52a240ac10a3b2128a43d82.root': 168093L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_47_9778908e464044b8a0a99b5508af3bb80a384cd99649db7e46965204.root': 520136L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_41_8525906767f0be8518fae2d92a3cd338a565526e39a2d7c180c21037.root': 332266L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_31_6620b20ff61895418b2766c8a67558747b82da7b19165bccb34b6b2c.root': 44055L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_12_c02e55a66ff1cea249569a06464b21e8f55cefba5a671133755572f4.root': 19367L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_3_125a56e720c27bb74c849d02abddefe71b7ad3f2daf360e4aa5726ac.root': 480082L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_8_4327f6b66fa27672c23f4e7d5d540000ff1fdfdc4bef7ca91939a8ca.root': 586903L}, 'ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_5_91d5bb5d2eab21c0443bebf83f5499ec2d867c769f46ad07e54b540a.root': 42909L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_3_60f402a2b07436fff1183eeb96ecaec24a4cebfbf9bdda43298d166d.root': 26565L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB84_190607_053924_0000_4_bd29d2b3e4804ad79fa0899ba9a45bd75adff062bf952e8a31ccb53b.root': 117147L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_10_a1e58b1c85b8d48c76a72616526037c34409850153a7d26b4829a5e2.root': 8261L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB83_190607_053836_0000_1_fde76c4222bf3eeedb0df7a1028f21e8bc359ee10dfe9d1e56a8f47a.root': 82235L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB84_190607_053924_0000_1_97142654d0443e2e7395500ef43e101046da0d4d50a4ee34330b9844.root': 92524L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_8_f1a528fa00b707e6c9ddc3f44576ef3418f8d5568429c3a919a59a47.root': 67614L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_9_cdeff43aa0568dce44f1b9fa2ac4f1afbebd739f99e598a3f27b11dc.root': 75839L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_7_5b53d8c5383ccb79e60f284b17527b17cd1a4c2290e03d2243562db2.root': 59355L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_2_3be70669fea0dba791b24ba9d1fe5544202a582d5b5ac55753908e58.root': 18441L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB83_190607_053836_0000_2_6207aacff63bdd6ac498a7516200dd11efc6e66cfe527ea8714dbf9f.root': 90495L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB84_190607_053924_0000_3_d91b358726d1f4a5166f4d8103bdfc1e0bf28e91f6356f6d571a3c2c.root': 108845L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB84_190607_053924_0000_2_0d09e3b6755fc836c07ce0a74e4d8093e97c48503a2be6f37f99b9c8.root': 100795L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_1_bf3ca7b31b5ff5890f6d614e15a6da4a60154bd9456f1b2923ebf482.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_6_cd92fae854a7e7a99672866fe16413b372eef7e82cfcb790a09af03c.root': 50988L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_11_b52a23e740394f84b7aca34374de9ba5933e0dedbb0d2a8f1986a336.root': 16361L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_4_7e2268a5acb6a61252dc16e40c651d53001e07f52c49bee1d0104bf1.root': 34747L}, 'WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_9_9268e809a234e778d82d1a9b2e4d64f9bd730037a2b94fc81f44f8c5.root': 497465L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_3_29ed3d3d80a3f1b10e89d782ba4f7a443873901d1001a29ce38e31bd.root': 326334L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_13_f3a8c29dc4f74dcf8b64461a76afdb3ecc113882790270cb749697cb.root': 123743L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_8_880b7d81c67b42b195dd81527b10dcec33f35ac0f4f30b74af5aadea.root': 481110L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_6_7c318d301739a10129eca4bbf67b317a9113db70ad083e30e441f161.root': 407094L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_14_c197454559d43fe1ffecd80543d5cd332ba9ac3702a8ad17c906ea38.root': 154381L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_17_d5c8adc8ef01186c4d74d7d14b7fab9e039748427ffe70c698b2dd84.root': 252171L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_15_7b593288a0d347502c5eab0589a3b27a22c60d096b8b5ca58031f989.root': 193156L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_10_eb07493e825c01e66c9c8592ce330eb21ba9f00f422f4500e37c20ea.root': 19826L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_5_dedfaa6b5be6b3d0239506d37badef4506d3c551cc44367c71dbcea0.root': 384472L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_16_a2beaa5a4d37028fa7ee6760c27021ed27c5ff9b84eee06550899b2a.root': 213958L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_7_f5a6c5d7c63b23b769236494de3509c71527db20d5cc766364b6345e.root': 442727L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_2_1e8dc5ac73d430ce7fb2b1960b8ed1e746fb57afba5fe7f2f53188a9.root': 290699L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_1_50871ddcfa285dd48fb0350a6ae37dcfa4dc6bfb68e5cac7d2c4dc4b.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_12_d65360165deaaf3cd634610e3a6d81aa6f3629b16fa9af0eba3b5cdd.root': 96731L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_11_05b8cffd88b3aa6576a7fb085da88aea8ce68a5a0b598ccb0155d29b.root': 58232L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_4_035e8c0eb934d25383a8da98fc85ebea548f5354dd01fa0c6fd8b780.root': 360374L}, 'DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211102_0000_6_d67f81a28adb72bbca1302747cad29f3d10aab9714f53b4992a8a2b7.root': 79519L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211021_0000_2_21564f60b5a0967c13290febdb3411b266413dd68a01e23ad58a427c.root': 7915L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211021_0000_1_cbf3c204aa47f28861ad420564e6806d624424773c35d168dad4013e.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211102_0000_11_4616f9baff5739cb0cc9e7bb19e69442c3e1e32a7bbd755f93182f9d.root': 40233L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211102_0000_2_c1c733a5575b22b40476441ced55d7db44a1597a012907db1df636a4.root': 43185L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211102_0000_3_4991ed259afb0aabae4aad04f512e18b398204dcd0b90c3baf4d68e2.root': 73708L}, 'DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_27_d89d721aab0fd087dd64739d5b7881f763510187a0bf5fba53ac362c.root': 21516L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_54_a6f44b48bb56f16d0197b97be48b8b5ecae63e35f2b887671e6de780.root': 35349L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_33_e35ed21567f3f6bd17dc0957d56219e1a57c32f8c92e090279f60789.root': 24441L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_19_1260e1af10745e4b887a5584c063ae969debe151a41be23334a48b80.root': 18152L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_16_936fdc2fb12f5c86ec600a4676385309b48aea9d697fbe62da59c27d.root': 16742L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_10_42a93afaa37eb8bde4f76378748e2cab39c478a642bcf895592d85f1.root': 14374L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_7_194a2755a20f05a30c983b46e3e552f5711be0b5f823625a7c677bf6.root': 40360L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_40_4278e76ae88cddb57c8e35e6cc89aab8e4c513a61bcf46af0897bc9b.root': 28118L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_31_49526fc5afcc40a71a9ba78b0d81f5b3626ecd7f008e67f7b4969235.root': 23407L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_14_d35f25027517379e1395dfef798b74d01eef420f55a2b0dd3bd85948.root': 15863L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_46_679b24244479d39135fb5294d36756c2db2f4159aa1a500861d0ec8e.root': 30850L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_13_03d69c8176d38257e5191951b1248e8b427ec571aab8f3e7164c8ac0.root': 15336L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_65_4bc5c01b57e6c56b63a183b31edae3ef993711ec4c6f5e968d093993.root': 39264L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_21_1e6dd6abc9dd63028ed19be76dee0284e191559bea4b89cc1a56df6b.root': 5276L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_1_3df224fd7c891a27acc8605edb01fb1cfda756267a76b996d11aef0d.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_22_d6cab1f853cfb70cef11cb58c4ad9cc76e9932c2dca5da0fb36dbf9e.root': 19761L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_3_0e427aa5afe590b241e155cc539e280c312e7559bc2aefa9eee0d143.root': 8573L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_28_40e2ab01188d8fdb2875b0a6876d00ad97636cd5e89809350b00c880.root': 8055L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_51_c66e57f50122116c955ed5df929db28e2b1321fe099e2d9455ede95f.root': 33814L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_34_0921b077d00c0cae0d73d7a220631ff72f01b174ec5c8b455505badc.root': 24848L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_55_7af19982a846a0a9700d9904524ffe22387a35695e749c2443c0542f.root': 35909L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_18_53812e3a819afef3527f25734493471bf8685ab370352098d27467c4.root': 17768L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_63_2c6f50346511c59bb42d5b9d8bb66031fa1c867ff4f7caa8b35add54.root': 38423L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_52_136086862d8ea7e644a6dbdc8101b1c2cbaa6aca65b888940cb6009b.root': 34090L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_11_5e49fe4057af8cc9d66422bc14d212aecdc2d78c23c69574152eafd3.root': 915L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_37_212d984e1284d0bc154b36c3fb622b384cb980424a74f9514a466d81.root': 26174L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_59_ebc74305a873b1ec5954b3fdce085276620d8020bcafb3696164d0b5.root': 37156L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_29_f56db0d673728b4c57655397001296df7fe98b3a3e0a77acdeeb93e8.root': 8420L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_22_ef50ae4fd8b4c90578a050fd06b45b89d3c2962ee84921a4f325d5f5.root': 5838L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_24_e7f3f4f1af3c517c003ce1643f6f82e9100b5f713732ba1a333466cc.root': 20462L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_30_c0f620da9a106e70e4540643b455bb08af74ecfec722e0babfdc84a1.root': 22753L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_2_5b93b6639e5d01082f3b213f6484abad4bf92bc81e07dbdf2ae7a1af.root': 18772L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_33_b21c0ac9f3d8dcdd0584502f547c660f697b85132cd03da07c25d9ab.root': 10026L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_57_ca5501bb21cae5aef9860e16692819cca11c5b8bc289429d070b0854.root': 36704L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_66_d59803fb855b899f78bdbe3a5edfdea8a13774b8effc82205435f76a.root': 39611L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_67_c708d2aedc17a754a27474cfcef979ef259c453b03593eb00c754be1.root': 39993L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_49_8496a3b8216898d3265ad847e5e9e66dcb2efc38ebc4482db14d56e4.root': 32400L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_9_1d299474d185674d89beaeae1067b7e67de6c4e3feda4754e88b59aa.root': 13689L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_23_38bcec6d8f6c5cdc7b60cfe1bb0a57838e3980dac5e26a7f05491d25.root': 20127L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_44_cb72bdd9040cc44219bedc7af7057e1d6046ed251a252347d75ca7e3.root': 29818L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_25_c70ed3f5898cb3da5da445bfd24a83e932ae00cc797184a8e5b803f8.root': 6917L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_35_ef289447ab4499b0bdabb18a747143d661a9993c27f310c5d69350a2.root': 25383L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_60_d3aa9e1afda9897b33ae29e6954c9976ee8bf555b833d84e9dfe0c5d.root': 37568L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_64_128aa618a3241f2a5f3219dd16b65e9a24570e7d26c0654dd84a8c03.root': 38929L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_31_b4f7f247fb78dcee6e63583632823cf1012529fb207f5cafe42acee3.root': 9318L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_56_a4661fb91d6df0ee09494b8951bf290f10a449d50ae2ac3170d6886b.root': 36275L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_61_b4255a356ab41bae1dcbda6801bec8733fef2e43b5c3c1f1df086726.root': 37899L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_24_a14cdab27960d900997faf51d47f4c8b40904fb2e40ca763d9ed95e3.root': 6571L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_2_d5ebf9eee8bd0e5000981f911150bd601e54032ec0bb4dad5c7f5f73.root': 4241L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_32_71cf3a41caf263c96b56efa726f54549d76f48360599d382b5681fa5.root': 23945L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_14_4b50efd8edb47621d19de3c5cd4548fb4ed169fd7953bbaa562b209c.root': 2247L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_20_01104fda5fcc90e2ae065234e590ffa4947e5d2c7ba30597762261b6.root': 4880L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_11_e16621dd11825c1f553fd506e5ed8ffe0b72b0314fc19d269291a9c8.root': 14413L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_45_1918420756fba9ae2116df46f82aa428d852f1ac5dcc0a455073fb01.root': 30448L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_7_945591357e8be529b4bad1b2d46850c7c89a1659b6865bf666621df3.root': 12743L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_32_8d70aa391d5125e37eb5a4e4ca49e359a98a4aecced9734e11a88413.root': 9662L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_17_dbf0f323bdb7e5cd8097d3f2becf2daa06dc4a203948c62aafa5f6a4.root': 3299L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_12_57c27fdbba20be53099cbc6b50b28d001a17d4e93752d7585f6a5db8.root': 15012L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_4_c63ac7cf84b200a24e81d3c142dada589de8774c55843522122c542c.root': 27490L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_39_979bbcbefdce41765169e5f1f44eb573dc826aa0eab1dc0c8a557cf5.root': 27143L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_30_8bf216e032868800544a4e63972cd3f1fc97eb1c602eaf66d99eada4.root': 8942L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_21_5922b472ab5f723c09b9f232ef79d9fdc271b7c460e5a05362a64bc8.root': 19409L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_8_981a1f48456e20c19a4d9b93960377a12614b91e634b61584953fb9b.root': 13280L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_50_e571f13def547fb138dba89f83aaa7799b7c8943cb75594562665465.root': 33249L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_28_4094824f99c2a18a11a8f535f9500ef8190c34dadbe1bd806f0fa55f.root': 22103L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_34_cf3e86f46559f15a25da2aa7bd57dbe4aa9cc927dfe65ac991a2c93b.root': 10585L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_12_7e4ce2c49dc19a7e2e09c7ffca21d69b479963a738e812b1480b3dec.root': 1254L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_41_455b0d2afcc68d6b572b8b6b3a753b81abe1befa6c19aba12f2de81e.root': 28474L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_18_381efa4f9fd2b47a217166d37cc4095c11c9175320141029bb550167.root': 3625L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_15_e64422c2f72fa19c87de5e689ecf6db7adb0d98ce795dcaedeaa06a9.root': 16176L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_8_7ba9b7dc0db2eaac4ea50399c7a83c6abd23228cf0ef2fd5f04b1e6a.root': 40962L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_35_7c3e5cdc7a4ec270249ac0b90a3c3715a8568b903181b71e5e81d6a3.root': 10963L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_3_4d66b871a3fc8cecbdd8b1e06c825c5eda2fcdbcd1b347e5604e2bb8.root': 22737L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_26_35fbca5e3dbc5eb3e661b626d77a5a55d2fe59e5a19904c42c734334.root': 21120L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_38_684a6bdf5f4bba1470f0e5b534c4d635429887d83de5bb396d387039.root': 26584L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_48_cab8ca704554ff58a742844ff7ef93e5894d15732bce9b177533d638.root': 32007L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_20_2d902ff20485a7e3ed80b95b1919cbc952520ba8927857ee839f888a.root': 19100L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_6_d9688e0f8377e37d7fd31b96471a9f096644b0a64a7d72bf21331a50.root': 37257L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_19_41337a331e1785bd78dae350286b9f7eb1758b78163eaad51e0b15d3.root': 3838L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_9_44ab91268449df9c25abe5ecfb5380fde9e0a85aa17ae13936c4124f.root': 41358L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_5_7f86d3cbaba332414c8cd481c8e88442ead90cc5086944cba88dadc8.root': 11703L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_47_483fb4457bfc4f977050fa29189b25057b207a781fa84afd917f151a.root': 31458L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_13_70087c6d17bba152e4f1f565bbdd4962920626ecb04fb3c4993f097c.root': 1894L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_27_614cf652499f5535b5da944fee7335236c8e2a33eee2df1ccdd077d4.root': 7585L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_5_84a5b90c92cd59276acb3582b8072ac2b66f33281e83abdc7ffed98b.root': 32761L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_26_246c06463cb9bdedd25ce8c3deb075ec4d9fdace4c2e3899d8cd2017.root': 7260L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_42_c4fca61a5ebb886f27d1fc198f0698c0050454f47cb897b6e6698f87.root': 28849L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_16_549433e3373271efbfe2bbdfe0f872e3dc4b7c9f52891ac391e7a83a.root': 2924L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_62_5076561ca65a5357f91a8ff037137ab889e65039b2ceb876516361fa.root': 38285L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_58_3fe3fa606aaf326532f8324a0d115249c7ee834c612be126098a049b.root': 37124L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_15_647387b73452c3c6da3856e96ae77025140f715709bb85b8fa2c7c36.root': 2588L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_6_036f22e2163c33373fa1cd9e65f45f10a6842822ec4ea05bd6ca9248.root': 12355L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_1_4ab817926851993d24f8a7705de18bafcaf37d51463d3f39312fc17d.root': 14092L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_36_6b911aeb8fad80df4270b9707b2fbf6311cae5a7f033a4d11f37b82f.root': 25737L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_4_bcf5e81af0b72c7700673b14fb9846c139dff5291e2df2cd45b60403.root': 11310L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_53_22d311721ab1937e2ec12511f33cd39f9e9dcd90c75ff2bddad1ce75.root': 34711L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_43_a17f8bdecf3402d3aac144095d3629d1b2d1ac8f22b13bc23609fca0.root': 29197L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_10_2b811c6b10cc9d20060967548e7cff06c8dbcdd4eddcaaabb51f95e8.root': 303L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_23_16510534ccd366018c68357ea6b1db9437d8451743cfa8bf9adf1e84.root': 6209L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_25_8bb3eab71f8b6c7d8293e42d0e7d8b7a2f7fe44716f9f46c52f30b87.root': 20778L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_17_7f079e829cca4fc28367312b6c327f4341bcf0a95fb5b68c2dc80938.root': 17369L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_29_738694c569dd3aeea39d73a719b4f79189d6f6b39e00932599959feb.root': 22140L}, 'ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_5_758ae4a0eaa5f141bb52ac6ae5fc3e35b1b8b60cf900c0b81da3d215.root': 157758L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_3_1514ae0e729223ca0d5abb08c78c2f3c6ab1c2de81035227600855e5.root': 74634L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_1_55f2fa102e7811e0003a6dc040eecff53f36fa4cf1985dd9fae1907a.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_4_be8aecc3cb062ffb93229b555253a0200332be3ef8a0e628a50a75ad.root': 117504L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_2_a5f0e1dfc7c89c583d851a2fbb9199e81126db321eb4a920ca8e3072.root': 47894L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_6_e95cdf3b5dd45f77b6c8378e7911104cb1fb5c2b76bf62537a32f65f.root': 176082L}, 'DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_202422_0000_1_99b1c841a4aafd62779a593beb3ef83802eba96c509ad9d3d1e2ecdc.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210023_0000_1_6c0b0f2045e1714485ed104d81b64a5fd8e80559e2b55a191f3fd10f.root': 88284L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_202422_0000_4_336e259b79437ccc48e060532bbddc108b8c66895576481e5cc65311.root': 37581L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_202422_0000_5_be2fac3c0822de7b9bd7ef5a87540ce6ae04c074ad3e646b952b8aca.root': 66612L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210103_0000_1_dc1b6c24d69dcd59eca271c3de974dd8a2ebcbc9186d2763a0500488.root': 176568L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210023_0000_4_8dd796558b0760ec56ad4198381e6a851a183527592c385d9b7a7cd3.root': 125865L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210023_0000_3_5e2b04820593450679ada0c26435c0971c445ff92bcc5391b0861a05.root': 94100L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210103_0000_4_0514eb5d6f9f5f90517d2412181503404e619930694dc0e37462bb83.root': 207976L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210023_0000_5_78fa5a91f3bee8812ceae0f6df01b866b778a0434824a18137745ff8.root': 154896L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210103_0000_5_9e2598d90f84e1025c5cf800dfd9502a423e926450c75ca1b07a4c64.root': 237368L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210103_0000_3_6165606c66b1615401794d4414d197a77c5b4066880a28f0b310f5cd.root': 180128L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_202422_0000_3_4d8585376a1d2ca1f537f9ceae091e6290792a8007b930b9ed4daf08.root': 5816L}, 'WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_6_b583a5fd4bc275f462480887ce6e802e3a5acc5d93e30fd11e272886.root': 421429L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_8_4dad18d6d6dd6baa245e6b6c831c3e9ae42b2ddf34f9d33a0d43d0bd.root': 598631L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_3_b5f271c9c6e3440ad5569c2b86692a97016c731ac93bab91325a8d9c.root': 121005L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_2_0cdc3dc6e381f0c5bbc06e0fd55a11dabb9b6de53f88ea01764028d1.root': 78971L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212835_0000_1_cecb7e3b3e0e37e71e48012341a03d7cb1f07a48df064a6b22156a0c.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_5_e5b15f06e878cf8ea151b1adf3673f6ef0510d1fcb6aa0da490c64d1.root': 286761L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_1_9b76c123c9efde240814b14faaefa9767f199d3e665a22129e40239d.root': 444L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_4_6c277a5d177187f7789c0ee3ec6cbb15c479854153e471438ed1c758.root': 205615L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_7_e9e89cc28c78bfeb8285760f2d0fec8b54ee1e44c42fda4b1fddd139.root': 505634L}, 'DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210624_0000_1_c10a9a95110507af23b76fe1715dc3b5a3fb60ba9df65265fe36abb4.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_1_a15e0541aa7e7e610eba81f75cc847306859eaf2b3ce5350739aaf91.root': 6683L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_7_7947f167d9a40b9c3185625e07ce1984c1ad43316c9500c125d3a4c7.root': 17742L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_8_5a60d024219d2e29f4146d456b2a39dd571378cea195f2123812c4a8.root': 20243L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210624_0000_3_1ae9fc1ee481cb6a08383da4c5a84497ef3dd3bad573b72d1a0cdd50.root': 2714L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_6_e3d360a656e6beba39e614f41e14c0874367a3467613607d23998f13.root': 16597L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_2_e4c27a13c3432f6be934a02ed4a2da92823ef85d379c5f266102045c.root': 9182L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_5_20f66b29d027751709d04c6a55cc67f7f1525795c804ef098231199d.root': 14336L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210624_0000_2_ca94b6b0cd1a2ea2833aaeedee2e8a5002c00f5db8fa89c55ab62118.root': 2597L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_4_e55490dc565ca486a46ede6df9147a9b7f3ac62f44b8d3a4dfe33350.root': 11944L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_3_b2f1f5537629eb715b18d56686e28081c76239050f1892f8b1370f4c.root': 9548L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210624_0000_4_4f08cbd178bcd78a391bd29be81f393b82f1277e2e7f9c19af2b20da.root': 5454L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_10_d5431c95b3e88eedb6dfe28ad8fb3df4386a30636be14f8804849387.root': 6833L}, 'WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212516_0000_1_062e22ea9a53a29d86a6d1941b8a7a342d3129690d98ea6b839a658f.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_1_2c55dc415af61d018f1ab1908b15eecf3fd05ad11f819a33fd76f27d.root': 16352L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_6_40817ae7447da5473b1c2baa03bc055020c5d640ea46f2fb24d15fa3.root': 291597L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_2_a612b25c795803879d758954e6b53759a4992016c4fb5e869744f074.root': 24348L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_7_025c415cdbd53a12f738c464e9babc1407cd7f07905ed0ea936b1b59.root': 356476L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_3_ccef1906a85fb19604226a247129518892b119b1a66bd4f795f1bfe8.root': 75354L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_5_91aa8cdb431325e1640b54d68eb30dd5f8af1f54f1447a0da9fc6ade.root': 204265L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_4_49eb569d21499bf06da73877fe05f8b7c5502acff9db7c82fe98b9f1.root': 132275L}, 'ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8/tree_-v1_190523_195606_0000_2_c7e8149cda04204e04da5ef82492b7e33932dcea3f32c856cff8962d.root': 856L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8/tree_-v1_190523_195606_0000_1_f51220c89576b2e9d9110b48cc9632bdb568eb1d52922730022f5a88.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8/tree_-v1_190523_195606_0000_3_f7e4b65e48dd7b487b0303f9c46d31cee8938c666547b5b5b520c1cf.root': 5121L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8/tree_-v1_190523_195606_0000_4_1accb772e8a95cf219c2bda139b57610ce3d54748989769160d2dcd5.root': 9655L}, 'QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_10_c65a5c8247462db8076a5973fc120c7d93833031539d51b78de9c3fc.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_36_697bcee493d7d7384ac3678b105737acfef0d97254a14d5d19a98ea2.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_15_e8cd0cd2a11c29a091e787bcd5030ecad0f5cfbdd2ddd84c02b3e84c.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_9_9a54e29ec6115f4a8e948ec6a319c5888a33d91250051e315ce5ab78.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_41_d64aaa6a2e16578a9f0e5731a6ae017917a66d05fbfd4c8aac47b3ba.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_49_8fe1f30771587a79ae1095a5d38851d3a24222d239a6028b16d2729a.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_57_7b5d38bd2bbac48cf25717cd416f3dbab782b93156cf1fffad06190b.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_39_8142dffd92e170e30ee28d4b4d6ca1363b8794f3734cf5fa835e41e8.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_3_537b68051997da16e0eae28b21a7d43022092400a0ef0dd2b05e483a.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_26_f59c83872fea4f1f0b4a2dcade5ee7deface7eec0560f7c93568d4d4.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_59_754541388aca98d7115014994e8bd1fcd08ab0978edd733399932d79.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_33_70822c9c796db889c6eb9881a57a23e55d47630a0c1ffff5fc2b884d.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_13_b4bf028b2c6d2da24ad6cc6fbcc121c3525b5ae07009196af8b30ac7.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_40_c0d4f2c6accddbcbb3dd8a162b02175e9f7efd1fc8d41dc08f6ffee1.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_1_2a770a9b36c3ac5113f8fa2f16dbafba5d23f642ebc19df783a3ab6a.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_29_124a5f8c0953b7ca3fc67a0d96283af32faed0e64580868a45c3b366.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_6_3fd3a6d559b7a7c02dde501637f31e6703c192f937a4383c1001ae68.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_42_97b10e7582df207d68ae93a00929215c01bfda5b281c1b737fdceb54.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_37_fcdd951c73e44c0cebd08e52cd5a4481603e2e9292bcad74a9da5320.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_51_d18692fec4039e41dafe17ff983c31161deea17668629dcae0c57996.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_23_651b92618f932cedde3fa5e267b0e565e778c3a62fa3d840ba7e927d.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_19_6c9a1dfe7de633cacd67cb680f8f8f3533a8a8c3ddfd821f72f6bd2a.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_2_40e3e6644932bd7350fe472e6d464189d34b2b117a9630f486eb9a9c.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_28_f33b94b24fa8801a84ebbb5236163ad1624c6102f4c095d7bb4823d9.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_31_6221f763ff3d726b1f6c14da0a83442dacc15f8071186da49b252de4.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_47_9654a4a8b5c87df84e1cd1e5d68cdaca3ccefa7eb754f7bcef74b82b.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_14_2d9b212a8fd8d766319830bd248d8a8446528f33be13c226bc3d6078.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_58_64351be9de667e1027abdd3948f8c784d93ff23019dec771db7117c2.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_22_866e4f3475793d6614765f76ebbdc2420c8dd680a3dead10c9523a6b.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_34_e25d9fc074090a6b6e58dbc1d1bdf752b0baefb01d18d480fc91f861.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_35_2a8a47a9bc93e8e86c0535d8e284d0dc25e631464a2db064eda0d755.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_46_74ca8aab9a274d495b31d1aaddde646865ab16bcbcc064044d6555e3.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_53_98222173431b8da3bebb92365640ff8b79cd42a20fd4490036d0c22a.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_55_5ecf3abca8333038e911f43f527132ee685a214cab789d283fa0632a.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_48_9a9d4d0ac0be1a8e51ff6a74cd4ffae4eff2c900e2dc2a028715d398.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_17_5be07b7e057c472a57817c203c20d21ef670ca0b13a4ef4720489cc0.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_44_da4c537ebf82715070a0a701b517391dee17d64e1cc0da01d1f5240e.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_32_5041771f8d1b8c5094efc2a2807b5fa83c014104df08e7dfbc074ec0.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_21_3626909b3da9e0728f2746ad9c0e7ff7e1e7607b32f52c6918bf4197.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_16_5b4af9c4c68056a2c370151180af36188f354d293dd67360a3f6d698.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_8_04794e26c37d27e6886db54f87c9c4899f5367221e65d038fad43376.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_11_48deb95e6a76919ac6f5205d8e7dd1285b79eec6572f6f03df4d9e75.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_27_d2ab40604fce9a7aea3e6181c2be8090188d279289dcab7553802dfd.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_24_14ed0c9749242262e1b7ac0365333d7867c64447f2d8b28a4e1b496b.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_20_95cfcfe3018024d1922cc341fb069e04470e432d21a8ef3f1604b8a9.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_4_858c42ed246119dd7d3676625d9b372c15d13db6b67df53ce7a5805a.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_54_10aaff71f798b59c379420e588958314a970988390529ff02fc41cda.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_43_ca08fcd9f0f562119134604c2a4a47115b360c80c4ef00147baa0c74.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_25_cfcfb28f2130dec6402293a8ea61157b39498be80e22c5237cfc6d59.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_30_88cf4128a3bbd262543d95b3be2d1b7da43860425569599a50283f3d.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_50_76f5b7f40eec30d347747a8d002a7783f3e3240196d273079d355189.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_12_98c885a96d45fce1a36b0107e80216e6c6f4e3b63c49acf89a1fb9de.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_56_17f6da5cee0b12e6da6e5054acf8e193ed388046759612b9b456f264.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_18_978d1cd881116b04faed9e40cac9bac7eba5d3cec39f93291452f916.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_7_c964a989205268a18bbcff46a1dc3ca0b5383f32d3c3dd3a47434d3e.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_45_dbc3bf153ad8565e4dc9229a9a79df7c3c45bf560b4b906e8b4475a6.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_38_f3d688e92ad8c07010734a99e243c403ffc1fed8c6113439ed0e4cf1.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_52_9c5752d4de3b1bdb073847cbd9c712ad93d94affc6740a9b178072f0.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_5_29cc00a99fd99091332003358a8e12276ed184fc1775ff3dcbc53680.root': 0L}, 'DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210903_0000_9_59ede02de1258d16232e81ea486cf3d3e7e16ef54ecb9328ec4df7cb.root': 37637L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210824_0000_1_c87377c4871090472072bbd5be852e76c45956bf30a5dae1a3a3b4bc.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210903_0000_2_73ff6e7c9e9a225cfcf31a46c4b7662f97a7de29a2741db0cdd51148.root': 16481L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210903_0000_1_080015323e046f2139453164e19dc5f51405c9cfeee0a871b391c227.root': 16029L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210824_0000_2_05d8c6ac27aec613232aa7879b178412b75f42de897a6a30ba53d00a.root': 15177L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210903_0000_5_d0592668d15a67867619c603055d228aab5a799d01f66030933e6ad0.root': 31149L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210903_0000_10_cdff6bbe073161520f8d59bef600aa571c90530f42e27561b8a8bd50.root': 16089L}, 'ZJetsToNuNu_HT-600To800_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_5_76ed071403ecc7f84fe352ad31cbe0574c452ec897e88ad5fcd0e095.root': 83L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_3_859df791734b881b5224f40d7e17c3db8c84b4e4a93e378fc3e3e2e2.root': 51L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_4_ebb39da605f0ff5c46e7b8816187efa350e4ea1786cadad748d190d5.root': 79L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_2_c3310da000eca94cf6cdd8b23b6d0c54b7ca1323cf74d682c14cc40c.root': 29L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_1_e47616a62e80bd19ef87089bd4fdbe0d3da40fe08c83386a09fb9cea.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_6_2e35356f1f6a49b3f56d3c6354c645e307ca4c3ac5dc05c8d622dcb1.root': 128L}, 'QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_5_c06ebe40669724a467c69efc64e3c7653f9085636050a9ac581fcb3c.root': 282L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194813_0000_3_f36b3fb1209248069e4cc4da1c6141ab4d38198507d88c0dd8a04def.root': 81L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_2_83708d1d697f2044d5d4f36cf9cb880f17b70ea1441fcaf93009b3d4.root': 149L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194813_0000_2_098872408bd4e8566ff267a2d1be761b2821784429a879a1a26d5b62.root': 42L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194813_0000_1_85586474339eb89a78654d14ff8ba72a7b1a89f3999550a26ecfe992.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194813_0000_4_5797e8d4f60fbda2ed39c80d9424005f06bc87d844de807dbb195fd8.root': 114L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_8_f1640796668213e6f817af3c7c0f9fb745db3850ba80f4615fc51892.root': 366L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_3_a96240be0e219c54fdd220bdd07d943cc2783e7c6e3e92b157f77fd9.root': 215L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_7_43ff34f506eef707e76356f2aa2e45c2a4618f0a5dab24aa58b53b2a.root': 333L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_4_f20644e4fd0a1b17380920c66a7b5bf362a68c062786a3320aaa5b8e.root': 253L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_6_9cbe97669edf95a85e504c6c4c199cfd56fe434d1dd92699fef46a08.root': 293L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_1_a9c3ad048f6d50c95755f34626da57274080d02fdab2d7a3b408c37a.root': 130L}, 'ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph/tree_-v1_190523_213825_0000_2_75981b5915b13a9aac69e3bb3509fd21366b3ded7b1aa61aa7c617a9.root': 46L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph/tree_-v1_190523_213825_0000_1_7ffd8ce623a12a400294d64ed4ee938bd776f2d94a65462d086e18fb.root': 0}, 'ZJetsToNuNu_HT-400To600_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_1_0f900dea914859f6467aede26df22b7187887ecd81730fa666c8932b.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_3_517b5c3261e54b0fd11c819ddac32baae6876c98aa30ca09f9c7e95f.root': 44L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_10_4445a70a90a28c467e28e81829a1e655016f5473ceabcd6a5e7f3374.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_4_7d06d0f72497457d312cf842eec26fdebbae7c68f1a3698cda01ea30.root': 54L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_5_8b2870f6e7dc2cddc73996a71365d2042ad30b44591dcd7ef509bf14.root': 67L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree_-v1_190523_213905_0000_1_a5434bac81a9b053443411496bc8066165d1a93a36d770f45fdd04b4.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_2_b3aebe6503ab575975a3b4f91342dba5e15232c6094bebaa926a2fa0.root': 30L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_8_b600e0537a6de7a76e8388fbe63ba6f4383bc9f3b928bd5c67b948f3.root': 101L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_7_737832fe4c9bd4ea87501137cc41b237dc7f7f45ac5718c9ac677cc0.root': 98L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_11_e644e71255f2cd08f254e6160d4f8729bd6149edcba9939c450fa704.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_9_b85cfa283586a53f82563cde26354cd3d06160fb78b027d63e0f3605.root': 120L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_6_43bf66462bde076a9aa905b92d752ea94b5401d5409d4ae656a75037.root': 81L}, 'QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_19_bf0644f8636b399ad13fada6476f4e275af65365906b922939945bf8.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_13_d75e97f6f97f5f753bdd21c50439971acc67dba791caaed6639ba8ed.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_7_d596074ee238eee857328f336aef145d2079d6ac669f05bcf0848784.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_17_308b2e78d882c0ba66c21780e221a6a096182a244b5e352c26254708.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_15_708817bbaf52fdc9f1a06414e5445973642d39ec9316aa842e424082.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_6_9c78f5611510faeadd79ba57202c64d91f58f1f4ba4482b28e5970fa.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_10_8eab575882f79486217c951958e89ddc285bc0ccca83158b4b1c2744.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_12_0f286fef695d8f3b424d9113bf016528a679b182cc3b07a65a797a60.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_16_e87bf763ba63f3817dfc84ba5e567178708926d248d6566fc039423e.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_31_d0023c6fdca27197dcd68a8324e34adee4c27079b186140380130058.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_33_0244e8708aa25234242b3c23fb42a5a5ca570166e50dfa31c4d565ea.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_2_575f59a47e2ab527af22ae7bad47c951f5852943a963621f71b359c5.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_18_3c16ad06a07c048f3e9ee932209af59f35f2413b4835aa5f1241f729.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_11_b3d38c829a87c799cfc8b788468dadbfb1b14f4512d510913323d5ea.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_7_48902f084da259e72adac5079e9045e19a830ed20486293d294c8849.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_12_fba3d26e155745a43664c73a79fddac84ecd6b1f3ba292c8cecb9eea.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_1_ecf8a65e1996e2b78401622ba2c2548b5ac78c50e89f6e81e10bd6a6.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_24_93af7e3086c3f71cae4c3b59e33f35012e379dd5cd19cf4efe9acdac.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_2_c756197a7e36255a92c22b9cd0f68dc077822af8875d411f5edada4a.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_5_07934e48339455675401414dd946ef1988639eb3e779ae3dc2287476.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_30_148d01f52bbe9e1bbdb98ddc8822b7ef2df8159c8e6ba227fd4c8237.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_21_49b788fa3bece595ab957808dbfe21010aa5264b8dc627f0aeccf4c8.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_14_0412184d61b13da4d941e007454e851369b159f46b365a9d67af4329.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_5_f5154dad0fdb8234be55d79d65bb9004077519c272c56bf5ccdcd661.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_8_f349bf044b69aafee33f883c39ea4de5cdf3ddcc107e217a2c58a37e.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_3_da5ad961268d3ed283beb0b09982e770b4cdbdd169aafcd0e61fa297.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_3_b2fb0fbbb6d67a4d16027490f0bf98ea21d6bd552439758dbc125dc8.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_8_1bad0970f625841609fbeb3a0578053eea08bf3a0c3ccf865af1bca1.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_34_d2599d4f11a84c0ca6e4100c1723190da6f5e078d22d094eca415595.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_32_2254eb1125b4698b4ffe6a1159aef93cc2b5b48a97ed694b67c96a43.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_9_168c86b90e1eed4f168bd199477e0310355b6dbc745523df66cca1a8.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_22_555873da715567c375e9cf559e5e8b7d10383f202d987b993f6ad070.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_4_1352d97436937a5be1eb8a54e27ea17e24ecac235fd0e8076c7f0b8d.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_15_6ce14a3d3e2b5a221a92f9f99d1b61586f13281829473d557da8ea13.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_11_f2661bc4d1bbe96d10f99c847e42c2761e37348e33e4765c02796778.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_20_ef5a4f03650d75387025af0c3eaf909cfb8df223d2a7d361a7aa3975.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_9_8defa3b14040a02a4f32bacb70bc6bfc42bb07701e982501cf88cbc6.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_4_267bae5f3d55c1250d3c9fa5b5febc6ad944d13a208ea99e8c65f63c.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_26_c3feb4f7ad1879c8159b2bbf3fa6792bff9b659dd29213588b47013d.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_6_fbce6e1d9725450a0615d4014ce5927eff387007eb38ecd268cf22cc.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_23_2f31e1da185cc69c5219917b67deba06c8c6d17ad53e51192c7f0288.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_25_6f7375c48487c777c40606090c5797dab0f74ab8dedd05feccee45e2.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_28_e2661ce0d50fc330f5ef2deab045d6c04771475e2b8286a263e8d2ce.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_27_6c18614b8dcebd0dba0ab4a5365aa6ee2e395722a28e9f1c5ef780d6.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_29_f7020c1b11a2cca43b9fa5a3385e5db814f83928974fc7b018c88861.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_14_2a4d626fa3f6ca47fc67852d08578281f2f5801cc908e64ca061d400.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_10_5c599e3cf965c665bf81a417bbcebf799e21a02b0eec89cd0ddf4f42.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_1_399b1ac2357478aeca326859a410911cb198c09e935890968161703b.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_13_dd0b920a533311e162483e388b1660c74b02d482381a44a275994b88.root': 1L}, 'WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_1_48c6848bdbe43fb32c1f2015233b95813ea60beb688d03d71236720b.root': 43213L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H80_190606_071404_0000_5_5a9787b6603fdb776589d0a78e84f664c717baa76e70ac99fead5f75.root': 34667L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_3_d0e393afbd7f72931b20a9ad8c21e23c168b2acfcaaa1fd21d96927b.root': 60681L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H80_190606_071404_0000_4_922ce1c72f25497e01c86f10b785c1d03d31f4e929d41cbde9a6d089.root': 26236L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_7_2be8163c188bcfd00af6064a347cc55f323f90dc50d907b555aa1f70.root': 94478L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H80_190606_071404_0000_1_54c6e3b93fcf17d3b75d8241f75abb295199c6dc6932c860e0c21636.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H80_190606_071404_0000_3_f6366fd1b9a371fd2b49401825aa9ef7e6ab469a16a2b0c21a43e494.root': 17584L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_6_514b7d7676de5af8c32c662c39c525cbd88e5a43be19c352f58822ad.root': 86746L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_5_be532c1c555ad615933fcd749096a6eae823649237ed1f9153434dc9.root': 78101L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_8_92d2b2a1e75aa3347bfc4edd1bae3808b3742d960126a4b633f6b521.root': 103077L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H80_190606_071404_0000_2_148bbbf3af94636f33fcbf1451afd3739679a876ed933683b377a302.root': 8769L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_4_036f2dd5382e999385c5944dac3614cf1245ffc1f8c4cc17e57b2aac.root': 69435L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_2_522e806587d3f1cb9ef0124b19f231ef08c748d5270844ca4fd15580.root': 52010L}, 'WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_2_27804605938813f93aa16e903dc494e5cc2d31214cb78660f6239ea8.root': 17729L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_3_9d6ca49b6974d7030080c6732ef9553ad0d606ffb8218f04d4e8fae0.root': 29054L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_4_729c617a1ae56fe6e8f3e4ff2e2c5c58a977bdd147eddf671dd1c4b1.root': 134412L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_14_95a58a93ba2462cf966d8db5ae679c610ab6e8b71a9b1aae9405d5ad.root': 688709L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_7_74a09cdab1f1b8ad0d18127b04499ccd11b842df3b02592102d72e85.root': 1424971L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_8_e3b9f1d607aadbdd6655211897ea9606eb40a531d70e557aa413d425.root': 1513619L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_10_1eaef293964e12f978204d8a7a7ed03f2be7bb0becacdd30b298da2c.root': 396215L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_1_24e03ef54bc3ee626073b5172d33d9c0192114711f4d79c549b1069c.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_16_20d9fc7ba412d53f5af2b28bec0ef17e3ae4d795a21c9e9066a299c9.root': 854095L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_1_0661433d63311d67fa93ef58cbdb32d917e8b34ef6d37af7825c44cc.root': 324392L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_12_0432d73c8960d1eb142aaf970bd6a4173ea27b72fc800ba0f208c1e0.root': 540720L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_13_35aaf1f88ed83a0799fb08e0d4e42c16eafdf84808146a8e6b6e16c0.root': 605504L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_6_18d3d08776bb23ae32ec34cf3c12c96e677c113c9a5e3965d82763c3.root': 1324983L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_15_3f4fd668df0c46cf8366c13929b1ec05a6413df8c2d5a6fabba101ab.root': 778464L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_17_ebb258887dbc90990e10e8738b44d68c6f8158c15c91e32fa93cc1a5.root': 923425L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_3_06f748a420834f05e3deba19caa1d91508e640e77fa56a1b883d1396.root': 1045944L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_5_2ffb4a6156e76808ca671591ad5a8776ca70de276dced0c2fd9f5ac0.root': 257412L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_5_d216814a1080981644e1d1c393c81fc5bac8af337b83890403c875cc.root': 1250717L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_4_91f5a58b84be708a53818289b9bdeca27f1bac9b484c45dc2654e426.root': 1136642L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_9_8fbebf48c3c9c06507e6e57a1d45f6d60c60e627acf3c6f57ec53e39.root': 1576104L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_2_f4543ceea4826470bd7c5ab254b65dc6fb6cca8d2a5a6619f677a201.root': 923484L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_6_40583eb75d74c43707dfa860ad2d012abfb0a43dd9c8703b37c6470c.root': 322061L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_11_d048e7d0e779b4f9bad0f75315288ac5995d57bf0b1bc9436c38f621.root': 476344L}, 'ZJetsToNuNu_HT-800To1200_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-800To1200_13TeV-madgraph/tree_-v1_190523_214109_0000_4_a82f827947187dc26dffbc5043ea11eea67ea50c2ee34b03852bb9d8.root': 88L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-800To1200_13TeV-madgraph/tree_-v1_190523_214109_0000_2_bfc00671d3008fa55d6c581eaf6d70cd6f974565b69c067f9826de75.root': 34L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-800To1200_13TeV-madgraph/tree_-v1_190523_214109_0000_3_0c16a462d14ff76281a76b6b265b9a7ebfa45bb9a6995e923706d592.root': 66L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-800To1200_13TeV-madgraph/tree_-v1_190523_214109_0000_1_4fb88ccc6b5edbfe8a6dd2326f159b45601c52e16f196d2bbdb10841.root': 0}, 'DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210225_0000_2_c0196d16f5d22cbdc43e85c27e5e3be89f7aa8ac320b79dda6ca82fa.root': 100887L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210225_0000_1_b54bb92c17e058aefc2878957ab947dd0c32ddf0d8929ff5e4884fe0.root': 0}, 'ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_214150_0000_4_e91f513377fb7abf9cf84eb0339ed468c8a5a89b75d54efab4b75647.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_214150_0000_1_f3b7ace6f6ab80552c75a5722141f61abbc33e3fb9a7c9829029b3b5.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_214150_0000_5_2655e47e7b031064111944ddef9806b37080df49bdd60f561950c6c7.root': 15L}, 'QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_2_2ca4e1ad91d003cf68655ba3277b63c6cfacda81b9370e4185d40153.root': 124L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_7_be748ce6611c00efb080c806d6fefe682f507c85f13f5a2233568937.root': 225L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_8_5f9c12e80f2e4a8a334f8d5f3b5ce03b9b8b8af9059d8c14f2e0b472.root': 253L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_2_a3dd8c98ebf9c998f6b62f093ddcb9ec0a03eb4ec8d2d87bf656d424.root': 9L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_6_3c545dba73a359bd3733cd01de01641e6e501a3bc1490d8e53af8c97.root': 67L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_3_425eb6e21735bd76a7a6d4753953043210416cf30d2bb8add77a0239.root': 150L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_5_871428d5e716296c6c3f2e587758698bdb2add3a215b288d1a5405e9.root': 50L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_5_b8b019ddea47e3ba90faa885ab0dd9cc32e909abdd1e971497bcf02e.root': 201L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_4_fa96cc70de4793dde3fe4600fa9c05d4d02bebbc6d8ea62fce9a2c81.root': 171L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_7_49eda309a8a3b3d4d0d7b5adaca262dc3427a5ce31ade42179c6b1e6.root': 74L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_1_f930d83c0e65c6c4b8f76c2b1f0c8da9123e8f1910c93e4d72caf772.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_11_021f24fa5983a26fc97a59483dd09cdc411ef5bdb6567cf9aaae0e64.root': 79L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_1_2888a55492b095cc2fe1005a3c3de4d055b208e390b4dea860028536.root': 74L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_3_7e44207c763263ee65d342bea8cbb9c5e43dba495794d783daece5a5.root': 19L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_6_b5207de1a09b20e7fbdda068b580d0a3e3bde3c1ae441a62e908128c.root': 215L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_4_3f959fc47d79897a6fac0d72e1a7fbd9fc744c1d0bd21e05170a3c1b.root': 42L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_9_ac89e2ad505192153e035b269c93b4cdf6f2d1cc02ca20f5919eaeec.root': 272L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_10_3e319cb9bf4441de6f94504a28cf8244bc22f3e16250e68b5b50307f.root': 78L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_12_3c3648c619a65b6cd4a80b5bda7e01ac9880160c698e5fab09b9266f.root': 95L}, 'QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194924_0000_2_021d46e5341b643a462a88d292598530b56805cd90fc9bcf012900e3.root': 16L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_7_ab7ea7a8520aff6470f8ca25411988a61568231ee91a9b9e966d756d.root': 256L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_1_9c70af842a14291b1a340f8e4cb9bed9628b9d8b3ed3ec5590bed198.root': 89L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_8_d368cf36d997ac9470acb29d0732863dd6c294d5ac03bbeecaae0cc6.root': 257L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_3_f22465168e6d104a516281bd0833e7f05484cc8431a06091a99547e0.root': 146L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194924_0000_3_9a88ef677c1dad8cbf12debbf46dae0fa6e896b43a2f10144e356105.root': 59L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_4_740766ec7030b9582fb3eff673cdf2df26236e5823df7cbb6b05afa7.root': 146L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194924_0000_1_7d5263175cd3a9edb96d9ac41993aa051d54aa02f034285065db2aa5.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_5_f7ad6e98373c778e602e543601a4a61d640a50493df0d6b1e777a831.root': 187L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_2_c64e7d98d971369f9bfcaaa7f06212a425eb175ae25edb295dbfd809.root': 139L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_6_144faa829ebd2220d0d017776939683be1b7fd1fc42bf24e23f505de.root': 229L}, 'ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_16_bd0821bca3e2d8e7ed0ba7b80e1126d4bc626aba13dc814772772c4a.root': 36200L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_22_c6c2d20afccebc5856a6db8132518e58abcb480a2d7165f20f78f9ab.root': 88693L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_15_c26273252a4ab9ecf25b59b8a573d22b1983f657d5256dc6628763d6.root': 31580L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_34_9a90993d35a48326e445b4ae1c4b1ea5520b9128bf0d1f9dcfe725fd.root': 183758L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_3_d5c3c4a6e12fb3cd1862807c40351bd6f6affcac03419f12623c65f4.root': 150730L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_11_e0a30c2ad0bda8aabc2a18f50434ce513047745f345bc273a6c50bf7.root': 10966L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_19_8781df695f4be4953d418798b7b51a0acd0c7c2e62bc28a8dd9ae467.root': 60403L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_17_c5d8dca961c5a5d6774b94c33187a810d44384b7e15489ec95f20bac.root': 44301L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_38_464e12f3453f0961115633538e373cd97e1748b60efe828b1b8a0e64.root': 212909L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_29_281334fe76ce6746113b93e7d4133ec11d3da9fc948620c59e9362cd.root': 142830L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_32_d654a26e5e94744f9be18aa986b96e93fe2ee9e8dadcfd51d7b360b7.root': 168046L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_24_afe097fbdb930b73a05a90fada1733cef8d42fca61e5fa346d357c7a.root': 102456L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_2_010aec19d36bd1072e2e32f4332fb9ece0cb91cd4aa43187e6c46685.root': 68417L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_7_08bbb82e6d806a198beeca875c521e5809738f2fc5a18efb962d129d.root': 280901L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_30_0db26f4f138938d4889477e09d8cf112551078ea7147db2b08cf0f39.root': 151874L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_9_eb1a789e0a8513ffa35e57e8688ee1b0e7797588f01ec7924f077071.root': 293519L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_12_8ee2286404a0edfbb1c2efd6eae6a469f7bc618d28ecf996d74f40c4.root': 19081L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_26_33d8eb4da86da2662649d24e6546b56f7e61ed308d65a1f94ef4ccd0.root': 118581L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_43_4f36190bd44955ea8df29eec0f5fe6230094b31f99aea887fb4be358.root': 251685L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_35_f0daa86c29e61548f7c4a889827a7618da312917f1ef3d949a3ef358.root': 191972L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_44_0028d3d1a1f59c6c9b1b48f5c1b8d3bbcc42fe7574e5452d9754b278.root': 259148L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_41_5408ed70d6bc73fedfe5edd6a679f078f4385fd44d7788f08a072dc3.root': 235649L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_31_81baeb037151c7aad75a2fdcebfa0423da8182b3a02626d44db9583c.root': 160053L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_25_f23dc736084f1ec20dde022ef92666ec5c07d74ccf1ab0ddfb44ca4b.root': 110603L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_23_8a84e27ea335c543063e9be88dfe68495831e230019ec62791368d3c.root': 94885L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_5_98dda8a1c0e503929bc95ca0c8b2a2e8451669d633d5ec638c3858bb.root': 265119L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_18_df691b59cca7b2bb9e7f7052377ef07f934b20198e1f81d10a032f7a.root': 52467L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_39_d9a691f303fe56fe9955c2ea76a685333eb383e4baab1992e7b961fb.root': 217868L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_28_466465dca502ce10f260b8e9e00834a244fe361b464eb7063892567b.root': 134690L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_36_a83895999634a148cd70707c38c2fb7c3661e251ce8559d1518924f5.root': 200069L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_33_b0083338db1595347f0ce3d4d3de874d6737a93a19d02e5082342bfd.root': 175851L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_21_253bc2afa4786b14f2dc6a37fec89187e03d12bb1340035f385d4632.root': 80482L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_20_abebb60b2141c6a8eac7d5958c1008772e61f6fd098a4c9f704e8528.root': 72519L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_4_8b429679dc0fbdf7705ffe047d9bfac200b306358e4bec31dc8637f7.root': 225806L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_1_1b4afbc353e2645158d61cc56020b30bb151e6c9fac46897164d6272.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_40_80ab45a38169ba78911b54dfb3e2dbe5e7584a20756bcca11f26267c.root': 231529L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_8_f2dcc70b8507f165d4361d9b045a377e8ea188639b343514b2b8ba52.root': 288863L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_37_24aa9e6962eb461c3925b749b2e3ef087e73529bef5a18a7022ac5e3.root': 205036L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_27_66cddaf270b017026744cb967f74fc6a7df85596fe589c12c6373444.root': 126517L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_14_80ffa96e4b6e6630f964348748fc94961b5283a8df420948546b3b06.root': 23584L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_42_e11e4ac95dd75175dc2a626f32950dd0a6f67197e7597ccde21af37c.root': 243604L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_13_0884c6766ea671ecb95ea75565fcfbffdd4b3125c47a4830c4e0c6ef.root': 19779L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_10_382bba6fe507ddb7dbcb46769802058fc3c32c25991ef39a05ee1b26.root': 3985L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_6_12bddc00e2fa293fb5637ca2155a78d0b9cdd13a8e35ca0782d6116a.root': 273141L}, 'DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210545_0000_3_b253e9339b57e45de862bd4a2dcc2c335a244df6d9c1f3ac3cd68686.root': 196857L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210545_0000_1_0beca7cc27b53669db27986b08ed2fb0970456ebcce0d369c329f469.root': 121974L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210505_0000_5_f5b191dfeccd98b09f48b4de02d557ac1a804c62f06a87b6364e0e15.root': 121630L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210505_0000_1_f3c749cbd9d90fa5e684891cb0fb82128ecb316b9027ce1f3f3ab9c5.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210505_0000_2_e67ef328daf49dbeec8a464ed5aed3bd0b978b8646469ff1171199fd.root': 41553L}, 'QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_1_7341fd77d20e3003580d0268682ff0689fb3cdcf6d8aa948f601861b.root': 19L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_14_57b6c923b646a233943d35bd818a9eafd0aaa8c49a78c651cfc74a63.root': 26L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_9_ee3bdc02ea5e3e05834fcea3091b256ad16471494a6dee1790e5ed63.root': 54L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_29_ac4afd73845660e2eda498a0b68855abaceaf1bbe5a535965b656046.root': 41L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_5_cfe3064251f071e3149ae8736998a398079272213efb52f4d63124ea.root': 50L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_10_9fe6c025a4da51c4b7d435e6c47276eff67855f7204fc274ffcfc83d.root': 23L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_11_e63803d5ac01b626b94cc4f6c5cef4a48f51eb198b26886c798dd3a2.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_32_7b5c075225d29468e47fb83f43d4143d96eb18642b0ae20177fb2865.root': 45L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_4_eecf06d7e104a7480eb23185bfa7643dbe70c149e5a2d6c8eec8475d.root': 9L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_6_1b4b91016bf77ba4f73a4e07098cbbf55cb4b01cd38fa2c0f7640daa.root': 12L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_14_6524c76f9140205cd23d92134e72c874451b82666b67b47072e333ea.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_7_2940ce54852b26e0c1b4697a8178187814439d2b5e45316e2e034840.root': 51L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_16_7f32bf1dc12a21ae70c715c052f4f72ce5b1af8a3ac0a412abc1447a.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_30_033a5c48613c940e91087cf17f74c4eb38937db0ef8232fd539a1605.root': 44L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_34_f6f6213475706c67d1a4ab973589822b4af95900ab1edae8ce72cafa.root': 47L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_21_ce691c7a62533f34ea18a02a131c41a9b6f2feb23a4ddb24401d1adb.root': 32L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_13_1016fd887929a505f6be2e703f545c2ebf63893bc62c7b86afcca897.root': 25L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_25_a613d0488e00bbe2a04d84e0249a41a0e39ab778ca9f8482a955c3bd.root': 37L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_38_c8a4c19313334881dff4b603be9372701b818b56f944bbbde6507263.root': 49L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_33_1f11dedb840f8a82a8b0ad58efdc1752ccec8657aa640152330f4df9.root': 45L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_16_25a2da486a793173fa5ec334f73fd3b52a21f7da519d7b5ce56fb683.root': 27L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_23_cef3118c1d0489064d2ce3efb0d8b8ec8e0d6a8b1971e3f14708987c.root': 33L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_28_a0a5677232ea96aabe77233eca243a7adc7fc0797d0a88f9f07f2cd6.root': 40L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_17_d113a167a1f7f526d75efa2a756463fcc1833cac7b8a02157da761ac.root': 29L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_18_f9eaa81ad7e3900fc76bdd14db0ea392fea033e5fe2a5e0aa0cb869d.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_3_02d1378614741099a12f03bb5fc8d695ff631b04726e16c7144fd10e.root': 9L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_6_c0a9f23fdcb577f587831a0d7ea9faf2d19156a95b77837feee32963.root': 51L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_8_bc3701a89bf6a0e9abb1adb191fb5d56f9caabe7d6834fc7004b4714.root': 51L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_31_f79a5e0309b984df6dbafe19a59e1f44bba508d96571d7fcb8942902.root': 44L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_8_6c5352e94564f312ffdb9dee05490c6c2427fd6d91ce701cf38439de.root': 17L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_36_e39d3c842d16fa01773402d478c51798ce357a4e45641a56379cfe82.root': 48L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_37_fb1caa3b003e5bd16e03b43603f5809d1ed1f68e9d863dfb4fb887f1.root': 48L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_3_0a4fd3a42d48f6e95afa7c0818cf69aa907f475d959bea04705bc28c.root': 44L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_12_b7131072747208e39eefb09a41575158ffb3f2bdb8a3a6c122a1a2ab.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_15_20423f83dfe6f46bbe07dea71cc15d31e105c79e8f9d331da816a090.root': 27L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_27_c30e40b7ced7df6dc650656a25b5b4284a0b92b3d43254241230e697.root': 38L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_26_fbc28e167618b290cb05413234352c90806bc2f6846a4ba523c73e64.root': 38L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_24_f7afa4f7a824ec7e44c99acb9c00dbca027ec72ccab321519415b70c.root': 33L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_10_3d8bee55eb6219d9b5cb4a62e0eee0776316abd5fc83bf794f27e5e8.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_12_b7bea85fe3deec3c1534aeda148b009104a71e3b27b51fbb8cbc57a2.root': 24L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_2_5c106ac8811c74dd4917db348adb4d092d15770c40122c78c82bb198.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_20_40b673cde63aa599398b06135ed99bf0ed5deb2fade2c10b4faa5674.root': 31L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_35_501a1b113c801ce826dcbfb4c291cb47074199e7e147b890baab860a.root': 47L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_15_9e2d6fc76fbc8e4c9d65c52d76128bd00b4887c70a42f609a53efde1.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_1_005aa1ab4aa37b8d627a4b3c6784d442c2e51ca6a50f339414f91816.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_7_b58793dd5f6f79eb2876a79edb883a6152d334a455c3023a2240ac46.root': 12L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_9_c4aaa240e4bf07ec1e76cef9434087491153a25431d2509cede69876.root': 18L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_13_f887dbc840a042998d4421d15581b19921d6c88661087e3a918a67fa.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_22_2130315709e215295a7c52048086bafab590abd28ba42aeb4908725a.root': 33L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_4_abf17321a1add79b866514320cedc3ebf47f8d7c21f65c6a8c6569e6.root': 49L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_18_285e4e573017e9af3490bf6332df9329b2f110d299de799c3d1cd9bc.root': 30L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_17_3069ef8152e3c4cf048821bce7aa2a73a8a220915df74ce734e468b9.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_5_ad3847b1d54be3a88632fc71ab08da17949a4f5c85e091c16014fb93.root': 9L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_19_6dc9d58f008b1972c07b7b7ca896d48c2e55bb8a45cdc49e341cf042.root': 30L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_11_1e0fd6a9e6087d0e273592b7d0299a37e986196e0db4288b506424f2.root': 23L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_2_cb481e4a57e01dc3ee6405563ad7251e32a71f2723005b48f88f93b0.root': 30L}, 'ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201112_0000_1_ef961048e8969db684615a1f0605ff730f231dd0b0792e5c36e08521.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201112_0000_6_526901a84f643a8ab0d0cad346e5a29b5cc92326ab88ec0f7c32e140.root': 31950L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201112_0000_12_cf9a84cb70412b63b189ca5f5bcd9010000196a5e5a73d82110cb75e.root': 17340L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201112_0000_5_baa60738fa218b6bd65636631b440a5d30b12bc310188ec2112b2a56.root': 31232L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201112_0000_7_5d311a82c58c9056a9cbc1fe4291d2da7bb52487f6e89514e30e5d16.root': 41191L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201112_0000_8_8cc727a19fe71d9921fa981b2d152fde38b8fd5ce38838526186aa56.root': 52206L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201112_0000_4_1ccf7dfd4aab60a0ada3efc94c5044c4b6f8fce4705e12a9611ec010.root': 24705L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201112_0000_10_0335bc03c26981342427b7c9fc6fded0a2f8f4d2d6d5eda3f3a77d33.root': 9016L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201112_0000_9_0bb95e93094b6f0807e593ca797baced4c6b8ea65c1da53211e0e2df.root': 60914L}, 'QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_5_63600ca1210f5e668efddfec111b422a43db2a2cc895aa35cafda9c8.root': 97L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_2_34a664691eb4665376a74258a0bb2a46c6572970c7c5aa54d3dc0abc.root': 281L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_18_054343c09315130bc55f009b461c8193dea0cbf1cfa42121bd9b1e0c.root': 249L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_6_1a912b49a527d02c6c849a52e536176e38a626b412ea82ac661e1241.root': 115L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_16_853d9132146eade84956ff941eba0c51b1ab6ac6d71d20e83c0e6e8a.root': 242L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_11_788a00101ead1e2b6eac13b2ae59cfa639c991ef8ccea5c9a54a4a66.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_3_bf89fe89d1ea21a18bf067da61a310558a076f43bad3ee568f7fd2fd.root': 62L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_23_8387dba763d06593e0440ec7596077b67d58c83f64c53681c8150e1a.root': 317L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_17_a1a0d237c41cfc369cc944c584b34a43459d52746896bffa950de887.root': 248L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_10_413c3bbe11a26dfa11cbb1c69bdd0eac475cf52eb0444dbf323ed80e.root': 172L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_13_a8fe6e53ccebde99f43115ae3d150837cb030096874fadded1e786a9.root': 40L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_25_c4368badc4daf5713b40c2433ded24fa0c34714e7d0c4bf1baa52991.root': 334L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_5_a0d4a628544c3013fb3ac6696ef6da01cce689d85acacce16f087761.root': 347L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_12_ebbd8b9e206755b3ddc3afe28bd00288df1c9c1b5a4f0bcf3147f9b5.root': 32L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_20_25b805a75ebb47812f608b196ce0d5f669c9feb6165db5b64044885e.root': 282L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_1_ccf0b7cc494793cdb030f399670de5819891d62b53e2128fc7c11026.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_14_32ce22eb3c7e9a6c3309bfcaa764b1fba08d587fca8f2cb6c9e44ed1.root': 219L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_8_6d522c20be2845799c751bb83e275328423f9bfd42cbc9188a76d9ab.root': 363L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_12_1002487dfec2b57232ab8da70473c14998770106df927ab66715f978.root': 206L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_22_619e374419cc22ccb63e97d09e4a545a612d78c12a2b7a41d5b4d1db.root': 301L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_7_fb7bd803ccabb62a97aace0066bfda8e0b2aa1dd908bbfb6e35acfdc.root': 355L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_8_b77d6035ce5739ff8f505918c0bd50d93a4f32ed7fda2259ee6f348d.root': 138L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_3_ab918d33558c4517cb192f94044ad56ec3f84ad3148d2d57917775a9.root': 338L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_4_737472e64d7734f886878cbb548bc46f168477eb10116ecfd87b9435.root': 341L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_9_724a64470569f242267a848db3ce450fbae6e4592994ac91bcc0bf47.root': 156L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_15_88e6c3c98c3f5a8847e830a803169e54c08c4904dc39a3458ad03ed8.root': 228L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_14_8bf45bbad7e6ea6d223af0a934d134ce02be270cd0368bdbea5cf80a.root': 47L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_11_860e75e4251ecf0dacddc419f4ab7e6703679f9519d1b1e8d1a06617.root': 188L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_21_122508a6c4ecaf2ec559beeb1df94b0b39404bba868cc18e671e3188.root': 293L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_2_809a05de77b68ada965ca86967595e167a4b511d222c438ac508f725.root': 54L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_19_e05eb46a6b04472f8acadb7242da1c9832cc5f5d46f21b79ca8f0a37.root': 270L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_9_f23f8dc4a350d427368bd3d715e1b2206de005c8dc8bab2cac1ebfcb.root': 379L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_10_78ba4c3b9ab3c0ac403d7d1badc51819af449ce0ddf65c624c13d808.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_24_43504b72b7fa87683a733a1d98a3a4a50c951866e00af009e6113fd4.root': 334L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_1_327a0f32a598d38b2100d210b79ec391026368f183ae19dad4eede3b.root': 170L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_4_bd4e2de673047ac058504ae5cfa8a59701eb05d2353ea4cb1b441cfc.root': 80L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_7_8153865d0412e7e6f0867ed0524137690864b3be693b327e9dc3e89f.root': 122L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_6_8f37b9ee98509b29590e767448342828a0b11d2e0b96ee05d54531e1.root': 349L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_13_42d064e600a11663836a314ad7d39258b3b0c381f26ef068d556ab8f.root': 213L}, 'ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_6_56f7cd1ca949aeaa3f6b78a2065c5c7275779ce681121fb5af9bfb6d.root': 133112L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_3_6d7756240da785cd73162ef8d44fa4d4732d631d58b903f6a7bb56ea.root': 67811L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_7_8a82f15c79fc40d4434f001b278c52a3f61e26af753010aea05bec85.root': 159925L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_5_da32d1cddf3c421ad9b288181c8ef1280b638d61086a5ebc5869b87b.root': 104604L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_2_8e605f2d7931c86c29aa00e6ef7c3a1ab22ee25ccaabeea633350183.root': 31690L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_1_014220020e362bd0ff4187731b1e98affdba25824ac4b0aa4b781b4c.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_8_312f90fed942188af163aad143709da50e6299b471b2976bf7cb190c.root': 173549L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_4_e5f2437c5fca3cc793943491d294628e757d191b97a50f2ef1a4d90d.root': 74949L}, 'WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212032_0000_1_65b849db80ee209901b9c9cf01d21216cb61e448154e4913260d7ad3.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212113_0000_5_9cb10619c0a963534709d75f0c28557b7d6d528557b526d8b05a76de.root': 71374L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212113_0000_7_edc72d7728a38cc9de938cef84f8aa1b787823072673a62baf23ef5a.root': 328834L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212113_0000_6_3e8ed993d75402295b73130d213fd49e9fd8d1a4d0c367223cc25b67.root': 177110L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212113_0000_1_9a4de8edd97ebfad89b62b6deeb9243788e664a3fa8176ff8a93eff5.root': 32733L}, 'WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212356_0000_1_90ffb0f57386e4b096febf370f8cc916a94182817d2c7c816bd4bf2e.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212436_0000_3_cd1a96d67cbe5ad6704c4fa869162dfe0a96312fc56a9c7cd94f55a5.root': 290577L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212436_0000_2_e01d71ff60c8fcec959997d7230aa9894aea7bbf45e548612e0296ce.root': 178007L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212436_0000_1_0e9e5da246edeaea8761e0a15c86c9d1c682e1a4bc958ccddb940506.root': 43451L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212436_0000_4_84ce3a5d63cc8ed1ee5c9f790c86ab0d36f4f39343869a19d0419805.root': 340275L}, 'ZJetsToNuNu_HT-1200To2500_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-1200To2500_13TeV-madgraph/tree_-v1_190523_213536_0000_2_779962a3fb891837d8969fea9baa9c1051c7c8ec0b0df1fa16e166fd.root': 28L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-1200To2500_13TeV-madgraph/tree_-v1_190523_213536_0000_1_63f63ad0bb269bd628c24ae47f5242d131c40d47e323bfe1190ec4b3.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-1200To2500_13TeV-madgraph/tree__ext1-v1_190523_213617_0000_1_0b38f6dae265d36ab081e46754c61808b373e2f0a03d16f0455c28a3.root': 29L}, 'ZJetsToNuNu_HT-100To200_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_3_99726b62febf45c53ef007f44c2c761841bbd935e482019aabaed45f.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_12_26015ef8aff0c32d6e2caea0d5df6fc7443b4956faa6847695ebdb7b.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_1_5987421b9c3faa548d00e069200bd8023fa5f09ddc0cdb41cbc60182.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_8_3d19006ad3ee1247965a790beab12a41cc41a3f03feb7921cfb9d8a8.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_4_f2f4b8f217a34df394f6b6dde9227db16bc6076f811028bdd2f9573e.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_7_6d3e8bad8bc294a7ccb31afe8d0fe4ef64ea05ce7f6790eb054e4021.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree_-v1_190523_213408_0000_5_0d7c6abe3754b71b073a4b72bd180ec22095e5b225347878b080f99e.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_6_f95bd5cd9abcb884356c32ea54cc926cc92c1b828956cf917981c4c2.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_10_73f09f51eb6bca90c6a87c17c4c88181d301f4a8400f41dad7434bfe.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_5_2c8cc4c5243102e6ca7acbe27e433f4acdb0876b9924de7bba13e91a.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_9_8c143baf32d16ef41da309a644228c24fb8a862c07d1e8fa384230d9.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_2_0bf68f3cbd730c14167a3346759382cd1106f8d1f4da01d2f1167b2c.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree_-v1_190523_213408_0000_1_804b8a8689af098c1d2210c54c6c047a3679f5a6f4f4295fb5261b7c.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree_-v1_190523_213408_0000_4_cab4c0b3a6abe2cde677044cbcce5d566845bcf82226e7bb685b445c.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree_-v1_190523_213408_0000_3_7d5cd1c42c822fa2c11fe4251d6e286ba5f52ae886640a0a32d74e85.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree_-v1_190523_213408_0000_2_44b186babdb12597211c507469b8d8ebca55ce1560084fa89a17c0d2.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_11_3c054fb443778508a03be877b95d3fe6adf5ac68422fdaa2c3ad4983.root': 0L}, 'WZ_TuneCUETP8M1_13TeV-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WZ_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200359_0000_1_eca201aef14a9d572aa6e9f4461f68cabfb76cfbeae457500f81cecf.root': 3026L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WZ_TuneCUETP8M1_13TeV-pythia8/tree_-v1_190523_200322_0000_1_87a920afb3203936a73f36f195cc99ccf22f9d486b2a6437e903ea6f.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WZ_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200359_0000_3_dc9dc2dfb2c87b94ec8940ff1d3326301a5329444823779957a6c1a5.root': 10350L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WZ_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200359_0000_4_8b8b29c62a43e64bcce8d5d1f30db8960848bedfb0cda05e8355d798.root': 12055L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WZ_TuneCUETP8M1_13TeV-pythia8/tree_-v1_190523_200322_0000_2_7b80cf493a97a7274ab97677461a6e9e2d66146023fb0f32a565f867.root': 77L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WZ_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200359_0000_2_98a9540280182f1c9c7ff30dcd9e141e35734290571c973775bbe2af.root': 6626L}, 'ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_6_86b42d9613f70d73a9c15e4d182fd7cab49210f2e14e9b98bbe50b61.root': 31341L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_12_3fbf475d83db08f836f405b52f319ecb81b4b2169a418a21d9dcecee.root': 8675L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_9_2945929d81b1cf11ff4175882415e850e98137e8855807c67aebec48.root': 39972L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_3_b253a0a8f4700151a3493333e789fea381eba1b4b337724465a59649.root': 22833L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_2_edfedbf2edee77531fbb74eee8117660ffd9bbf1b362005cd1cea2ff.root': 19945L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_13_1dadcac7c0d7a47d39f8885b83d504b1d4da69af8bceca765f8fe8f1.root': 11573L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_15_09a6f825f8202d27f78692080dfd017f16f767e2aebaddd53f0ceba6.root': 17341L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_1_e4cc7a03f799620872ab87b0608a4606c740f777c4ef8ce2fd367699.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_10_31b0442013d874ef417066d82f0cce82bcde99bdde15a9a1ad4cc4c2.root': 2889L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_8_bd5a4e5b1e9307116a4e8e80c6ddff7c6182340ccdb4b7946a9c32ad.root': 37024L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_5_90c2c4d2f5a4a6bb400b55bfbb6f2959c3a5db935b0a5eef47737937.root': 28545L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_7_b8ab7e9997962301f9151250c2e2d9f17724ae50f10b02c00ce02eb0.root': 34242L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_14_44087b48de6928ce66610b1b22ee65351fa2e092595c6ac8af34a495.root': 14437L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_11_5adec9bbd4785442dcf8950e27658e218e40e0a5852e62296b2ead0e.root': 5807L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_4_a537ab7193d122c20ea938e2b8bcfdeb13de0edf8414c1c772bdbec7.root': 25687L}, 'ZJetsToNuNu_HT-200To400_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_4_b70c6d4b5ac7d1892cd3cf25597855a331e903c9981b749df4586e0f.root': 49L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_3_be358bcf6659b6673afadf0562c75e18922e60a487e807a00806ac05.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_13_2004e9c540383402669faa23dad493225fd732acc1286ab2aaf207b6.root': 33L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_3_a564bcac5b4014faabcb47a850993f6df085d78eb7649f0599d73132.root': 45L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_16_60baf19ed4bf76541635d5e7a481b402531a5ee5b600bf95a8d68b96.root': 43L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_1_0435bb76bed7ae6501f9a2e48b6529898462f12d0b1d036b7f405c0f.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_2_1fb9a1359d634d35031542adee5657e6fe5753d875870f3a6e9031c0.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_2_e50fd00c197f2ac98fcf734119a5d538d3fc205b3869a93cdc76f3ef.root': 44L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_12_d7ed5c0a9c6bd894ef90114e5b66bc4011f72235bfce48935da9755b.root': 29L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_1_cea0c143d23200ecaa8fa22d3ca513025a475e7ae8d1a87b3bfa4e1f.root': 15L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_5_770d80d75ea47d18b403b94a1f907a1f4995c78f6153d9b221300851.root': 50L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_5_0ffece49ea51bb3814fe908e66f7bf87b8d66532443c090d25be72cc.root': 12L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_6_4e89e06c49e1f88e74327eb4f3df9a9574b4f8f2fe97ba23481da265.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_14_10b8b87976961ae60ce04a4bba4021bc3722a556a1f1fb48ae5e27e7.root': 36L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_7_eb0defe37e1c5df597ff2501c37e513797d8c0e30555d0bdcb9161cd.root': 59L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_6_9d15a9d6fe3a65d37ee33a0e6c27d6a84c0f948777e7906c7bdf95d5.root': 53L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_15_fe0e99f5a5d324192ae3be67537f088130ef4bb2c0ec40bc5ec7a2a8.root': 42L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_8_49e879ec13e7a05848438b25ddae05865a8a55c191757d91001fb318.root': 60L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_11_c49bb93797b9dd484e7a75e20543a8aefa863a0b52643327a8ba3bee.root': 24L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_4_86b55da5f932b3f757d2da71eb85bcec800ef4d7419ff7813c14ea0a.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_9_3896283b464d806e59d89f5cbb3ffd2a47f129df43673b9d26bb152e.root': 65L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_10_752c957db4c36ec7b1590e4e50c6e5dbe158f0ef6b5490c2130a28a5.root': 19L}, 'ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_213246_0000_2_0ee1c25daf4e57056006de9262b2bed40f5dd35bff37a329beb99943.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_213246_0000_3_7c57ae2a25738ad7e7dcdd852c97305860fa0f37e1ff1ec392f1f87e.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_213246_0000_4_43469ab07499bab7fd2629f0e728db1bddaccf5a6740395af24c557d.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_213246_0000_1_7604280dca0cdf5413412b221817a7398338a3c8eb9a086322bf6ad8.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_213246_0000_5_7430d32f81bd390941c36f5f08a0b780ae887d2a7830a49cdb730358.root': 2L}, 'QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_16_89f8c3016b3c1d9df82415a67d54edc47d18864751e00a892fffca0f.root': 114L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_26_9a33ba985db2c733b3274e08e43b67fae1962b43bd445c1d1b6b8d75.root': 170L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_9_281c4e19db536d44f60a23512ac8f2c4d68288934685b45b1a782910.root': 292L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_46_e59a30ef5079a648b7dc78ec47a9ca7bf59bae2669ccce4ad272e9f4.root': 263L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_34_605f5b29d44ac7fc90435f5ab9bfa55006605fb22d0a611787739a41.root': 216L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_13_012f5693f8d45e266d26e6c9168db532765359a79a574f403cac45dc.root': 100L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_19_95eaa2e47a4dacdbbc0d44fb0bc5247ebe9eff5acaf40a3b11561015.root': 127L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_37_db741c29e7d15549375346de076bad6413a539ff93bdbba989c4c501.root': 229L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_7_d888d4045946e7f30ed713d05e69ffdd6024e0a70b8f548f624fa01d.root': 284L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_6_767b6fe3a8b66ce4e65dcd8d561b25269d338e89ff5a49c93002aba9.root': 69L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_8_323b6501ecfc8721e0b46f9287022b76cdeddd97676fba3b0f43d4ef.root': 74L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_3_ce3f56964d21900985e06a85c72e5708aa0b21428365b9708a070a5f.root': 187L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_10_cdca0399e3b3a7638281f39ea2d94599fd532a7b7f605b30ebdf8854.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_5_605e808bc6bd7cea504073aa621cabcc5c44fbef5c72cc8292d6b94e.root': 66L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_14_702c1040afe9cae0cc11462482f052804e107086ef1c71c282c25db7.root': 105L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_47_cde740f448b81c6e8a8cfe097d9cd046fa7cf28fa06c66bacbd54266.root': 266L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_12_521d12ebf301b417a7d4395e93052c4b47d7e346b66d69d4bc59c0f7.root': 21L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_43_ec2069f541c0d2b9490ebe60e82b32d85430821f36eba2ffdd7df710.root': 254L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_11_244782c3b32767378da69b722ab4957af4627f323bae3f7fc4051f6a.root': 15L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_35_e0be799f3bc4e48245b54c8a4316ca4580f684eba6e39116a2d48b1e.root': 220L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_40_7f10bf5fd6e05fa98f5b955d7bad391bd8dec32afbc84053548e89c4.root': 244L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_4_4e91522d791bdd30257eb2f9c7a5ea01d1773e1891daa25fb1129a73.root': 243L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_16_068705413dd5d25816e8bd310f67ce6b888c7bb74171cbad6f65a129.root': 35L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_36_8fac23ef88e4a975970135376e51afb4d548dad0240994339ae99019.root': 223L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_4_df995ade28282f1b3edecdaf6c4cebd0943d3cf45985d2d093610cfc.root': 54L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_22_02bbb4e8d99063adc38a1bdb90087e6a2040ac1be7943078460d2db7.root': 151L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_30_8086a790563f74fc2f7aa535de97400ddb017c394295fa3b3651f039.root': 192L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_45_8b9de30f4d19dd1307215bf88b28ab3a4da97c7ff72b36e1e51ca0d2.root': 261L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_39_10821500b4ba46a2dfded07f45a8bcc6695803077c7e684c4a032ab0.root': 239L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_15_bf7f11f7a32bed828ccbc9faf09023b20c32de43014aec2d590abcca.root': 26L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_38_8c00113f05f063d0f9c3daacce387e2900986027e23cd9196b74424d.root': 233L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_13_7e35c3496488dbb19ffd173d54e34dca3ffc06ef0df03423221d6524.root': 22L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_8_ac56a28bb528f6248f992725fd19386ad777efa807818834414be937.root': 284L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_44_c68cbe125534050f09be8d794a7538d8701cd95571cae9b3fcf9b1c0.root': 258L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_2_f5f6d040bc1feae27f4570ae8cc55e5ace874fc4365b19cd21eba52f.root': 48L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_1_18ca6b45f3659cba744ae794d3e915c573e16a32d718231653c129eb.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_28_e0ae0592c0ab6ecc1bd9d86bca5316c3fc230b159b3f3769f823e0cb.root': 181L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_24_ad10de2f7bb18b57238b629cc25c665429ac7e62a783e3c546882b47.root': 162L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_7_0d95186f8d2e50e124bcdf221738471ff04d480eac1b3382b02a205e.root': 73L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_5_30ca4922f2ff821f93a65777171d6bd9da7bafffb79dfed557c39dcf.root': 275L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_31_890d11a7888e0f4d8c59bb2271c5849206370fbb1fc52534936b3a32.root': 197L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_6_56016cc5963f6724ca881328f487f5129e3bb234dfe8289900482b95.root': 277L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_33_b3709bdc49412b86c2b26ef1b38c8b82d94360ba7dacd4450540e5d2.root': 210L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_9_5985395416e0576b0496bda69611a1a1d1b8bec27e15cd30383b9eef.root': 80L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_23_55adc6f8b886a0cac6563c98cde4e56472f9c03f8fee6f4554c7e5a3.root': 157L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_25_72f58168f2d982f08860898c47a8495a756a2138694f593e0588cbce.root': 166L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_12_919f4ba14798e4f0bca235a35d097a45d144f8897c3c2c0bdefa699b.root': 93L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_17_56481f3bdbfaea5517083fbf573c490e7607cd727fcb05207871ef5b.root': 39L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_32_1ab3b6c7a988456129f2b17f52443a4b708e4e84818ea89bb7e38b3c.root': 202L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_10_476a6ba5c85b354c8b166a686d94388b7496e6f5b0ec0699febcfdd2.root': 88L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_18_880635dc013dc746350d859d43fff07a98775384442bf0f6abb3549e.root': 123L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_48_8162c0b15687b18bb7d795576330defeb7704617f49da4a0b06301b2.root': 271L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_21_8eeb4f86deb34f5788a45614c09a7bb257e683bb6f32ebfcd644c7b3.root': 147L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_14_1ef80c222a3fcde83dc07d77f76aefb6a9327e8f077d27849b583ec4.root': 25L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_42_2dbec05c9c99e9b2513a51f039875a0583b1b6506bde4f1c0832116e.root': 252L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_1_08d1ab886982bef6dc63895703d5c08e3557c8b39ef52ebfedcdeb8e.root': 87L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_11_f51070ce55369627d3b297731e4633f2fb91fa793f89a93d94b4e8cd.root': 91L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_27_eb99f8e350b0ad2a6255c557eb16b62c0949fd2dc3b86ee4c35588d5.root': 178L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_17_3b4bcfe3322be62724697c1851e20ee3c734c8ade055776211fe8e78.root': 116L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_20_2008c8d0e3df08a825cc0e92bae9f0f8df6f2dc8fad50b52c7e0cf33.root': 140L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_2_e65a5c62912a278b96cb9911d55eaeb472ac1c8bc1ae47ebba3d83ee.root': 132L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_3_7efa9174d99e9859578243d2c43befc2aa9a31ad0d3ea0ff0e7f5624.root': 51L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_15_a95838869212694216540733316963597d5a6e2deb08f30573ccd4b2.root': 110L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_41_68f078f19681773a6c317882dd1312e405d8e6305b8a5870381eb108.root': 245L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_29_6dc7281ee50bf6c82e77e4cd7670b16d6e07708247037548564142ea.root': 185L}, 'WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_6_0581a3d60f7b514d4e6e47d79d871b84cacdfb38e41e7c3288d45a07.root': 62660L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_4_b2b81c1018ae9cb379b01d8d8414c1947cdb3f83901a51e3d217c1a3.root': 39093L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_3_3144f6e6c7078cae1f968ee2d441a30ce27b582c687a7508d10867e1.root': 24414L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_1_e820002e64e96110820e9a5e5dcec25ff0397c5c51a39a8a5ae29241.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_2_2b1d1e955c80c8ef7ee3b2ce69afb9fe556cdc04e8bc8018b9872ac1.root': 4843L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_5_dd1504647982f99862a293f2bdce42a558909e0ee5062f4c2faa78d6.root': 47359L}, 'WW_TuneCUETP8M1_13TeV-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WW_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200211_0000_3_10a942072f6478ee0ff1f30ea76a506e8ab06612c31f1a258698b566.root': 10160L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WW_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200211_0000_5_52939b46e41fece3e67d48b1c31b6df3b2e7013fcc30520b7ef1d627.root': 22977L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WW_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200211_0000_1_c2ea44f4d53db4228d892de2d76492a780f40b5dcbe024f636b60115.root': 3847L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WW_TuneCUETP8M1_13TeV-pythia8/tree_-v1_190523_200136_0000_1_f12c15c7e622cc8ae8b7ed2cf42a98c06e32986779882185313d3444.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WW_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200211_0000_4_c2aa49f711189621fa9478cf0a97642c0cfa626aa3a74cbd1155df7a.root': 18642L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WW_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200211_0000_2_132ba026107acf4fb0911572822299bbf5eca19b43690281f4f071b3.root': 5210L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WW_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200211_0000_6_b60104e607454b0f2abe34b5649ebe9b73ce708f6c58b595de014d68.root': 27695L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WW_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200211_0000_7_edec0de9bbcc0fa9fc66405886f8f5dac0bef99fc148671cea766821.root': 30118L}, 'ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_7_5914f81442fa99d0daa17c7767d0a4b79831c89750dc42d3388ae70e.root': 17L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_9_401ef734d578a6cebb5dada6613ded20d353a4fde9c0d63b91b18ca6.root': 21L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_13_bd3e42d469b5009ab2ffc0040d84383824301823029f62855758347f.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_15_9914a75df101afb5f8dc8aee763de12bca4b7823e0aa8f05e7329d1e.root': 11L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_2_4d6c3a436abdb9f6681a7c41fbf33aa406f5f272e896e00e40f9e8ac.root': 12L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_1_bbdccef3b10222c4f047477c8f1754739ecd899c897fc1fdc87f3077.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_8_cbd5c0bc9374ee91b57f73fc7f2d69b1c4b3b21dbeb1cacf572e8d74.root': 19L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_12_dd898ed5e8037f04c58add92dacebe1f086e3906c63623e095eb1f8f.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_4_cad24134cae9c2a18d35d0891c344ef2fb2c002e38e68ee5ea9670ae.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_11_501db3f009bcc7605bee54e09f3af451ad6fea78becbaa84e529b78b.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_10_49ccfda5b35d5476b2642330259949cf147664b07aa468d126c5ae68.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_14_4f8a29fe193398708d0966643fbdad0af91efdbb217dbdbed2f2513d.root': 9L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_5_50f28c4215b53c68b34cbe1dde84dd16d56032f3cdab5705adb151fa.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_3_a531bcfe7b5195c0b8f1347cffa6b084464936761caad988ba531747.root': 12L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_6_af138b99dde593b7854723d13b4d19b3fde8c0160c209c35cf1a96d0.root': 16L}, 'ZZ_TuneCUETP8M1_13TeV-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZZ_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_201411_0000_1_0f962b8b1f6fcb13921cef189e78fc0e67b720847825335314c24e11.root': 1008L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ZZ_TuneCUETP8M1_13TeV-pythia8/tree_-v1_190523_201334_0000_1_47ef03dfa2a610ce7c2d842d90ce6068fc5b55f15b791b62c4638378.root': 0}, 'WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_14_95faeef0aa39d0814e64062b82e4bb95656e933b9737a5cdfc2146f2.root': 533851L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_3_f45ef064dd7b2f8f86919a297e9d0449dd6f0bf0b3d94acdb1ebdb0a.root': 744212L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_12_72b79763d4ce898f612f436428788790580f735a5e6c799c18adc440.root': 493497L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_5_16eec05dedd68c8042d10d200665afd6fd216ddc437e4cc64fef9ce3.root': 364346L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_15_24bd6374079ac105691d71cd340f1a50062eeca1708119bccb2676b8.root': 555983L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_15_318c04a36cc91e1d23df194687d8eec5edb5dcea3bbe5d852e003bb6.root': 240475L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_13_2c2119420bcc0d7a6947904c774189f84169419b45e98523da285c38.root': 533240L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_3_c5273e4ccd7d3d199fe31ab66683b48e07dde9fffd43806fdf4bb7e3.root': 317246L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_7_0f18c0b7edab548b34aea2e086afbe1213a7cd3e86281cb3287a66b9.root': 829973L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_8_66852fb5c8ed782f82fbf8e391cd01c5ef31a587c66e4e7b72ed369a.root': 850284L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_14_270ef89af77a18d8a5f8ceda4ea8e6be09bf9dd63ca2dd2970fd8940.root': 216158L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_6_e76436498e515bab4dc4a5784f277b09f2f440f241da4a89df83ab42.root': 387247L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_2_b3145f9d2d021c3dcdd222c7d31479dbaddde0aa01a8ec6a46ab1bad.root': 688080L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_1_fc4ee4742d517a60b7009a4111492ddc1da82db16970ca9767fb943e.root': 114076L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212155_0000_3_0d9340aad777fb466beda178daa8b44fbadc6e8d5d4f42571dc11cc5.root': 61121L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_6_da80136b7429e0d49702ad4ffe3d6e7a36d3aa49060ccdfe45155e0b.root': 806474L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_19_910bc035d291aa18f93a3f74af381dbbaf38c40496b0c65d29a2a822.root': 663673L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_9_ff73a6a8eac714ebb398bf6519de1e3210b98b69548db65f9272047d.root': 421503L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_11_661f70b825b6f9a2977aeb60dfbadc9aff7e92b6ba96b9e9e686990d.root': 157021L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_10_f8900baa5cda41f496ab016c9137a882d842ccaa10a169b8fd8218f7.root': 135806L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_12_00c26677549f3f7f3116a4237995f1295da5ed04ac948fa96d7b032e.root': 178605L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_4_7ba73ade347ed820fa5793f731020c8442785afd3d295ee9aa117079.root': 765383L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_20_845afda933a9597f4ef2a5b2f9d74fdf401e61dd2786f5da1bd44499.root': 704616L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_1_43ca926aa50d0198c5b7334662363040a18f3d8f5c16c7be9793945e.root': 437994L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_7_2c2c5aff98800a68d38964a4f24859b7da67ec7e4c5ba351dfc86ccd.root': 397997L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212155_0000_5_6260dc5a694028b9fc237c8f4ba4255ce3008025e1f973dc722830ca.root': 108640L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_13_8a98325449963cdecb8a9d6cdb995b86a4740df5a1da4e60a9c20c17.root': 202970L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_4_d7f0c9e1bd5a1766cfc3d5d942a2a1463c5514b606683b134bcc93f4.root': 341416L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_16_8b81f48d679270340ba9729cfd2e3b98042e5adc09161ecc7690d55f.root': 264752L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_10_8f26d6b50690dd074f285e5a47e1fbe9469fa56d886320016251cb8d.root': 438557L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212155_0000_2_3df4e6cb99321f70a576af6fb0c07749ea0de5486b7665b35230a957.root': 21584L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212155_0000_4_27d0b35229d833737e9b9cfb51373a280b94907a15c6c5772d130faa.root': 73339L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_16_bf23cc2d04cd09ee0a08b14841d34a1f2a50bedf7dc9152197d924a6.root': 584774L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_5_7a60ac6a107bfe9b1a0ae4cb779dae1009eda37e4d5d0d1bed0d9b7e.root': 785498L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_18_aa08f9d0c649f9200281a9930197961c80e6d8002942dd9d1c0a8001.root': 629296L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_17_248f1fca1f317e57a9cc0a462d5bf97a51438fe081bc23956d8de00c.root': 604725L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_8_316840b63496bbaab9676aad262cff3c81e8c2d13ce8528767c4308a.root': 420852L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_11_d15ee91845a3b20d6a5f731abd4d0ed09640c5c8ff93d04d1a2bebc8.root': 459661L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_9_00e045a826e93cfb073bf5ca4ac1b5e6c3ee48c265a540f3de14c209.root': 874654L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_2_752a6a63b240a54472449b825355704e9de71848c8cc05bc7f41d4d6.root': 292310L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212155_0000_1_bbbcdcd855e8796d4b24e3ab5d66b2ebc69bdf72cd0f470de1242c5f.root': 0}, 'SingleMuon': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_36_2d123bf041f7aa88e6ccde19aa510826df4101454dfb382e9b143772.root': 412622L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_29_81a04630db6102eb3c1da600b579f58bf8dbbed0a96ade5206945b7d.root': 46595L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_6_0dbad6530f019541a8ff81ac38617130f90cf2e5f2d5a056f5d5fc40.root': 441163L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_26_13ada11aba88bb182c8d25b4aeffbbeeba106e82cbced77ab366efbe.root': 39738L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_50_aaab8fc4312b4281e1473a9930808a18aac9b598733b20e63d7d75a8.root': 99912L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_21_19d666135f5c4bc4e09910e204b631c93d33e904cc2e0389049e2f18.root': 572080L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_3_e6574ec1de7703992831ff242419ddc366c292a86a0d6abc90a14e31.root': 598094L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_66_a961cc4790f5cdbc8c0fb6e9984d6c2aca4318837265da1cc2b5975c.root': 135519L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_47_66619cf8a32c8d6121d9ced24a0049f6370bd1ae45bcb1fd70c1d0bd.root': 851174L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_21_db8134479900ea8e8e34b2da77792d94ca576768c27fb54a5ae904e2.root': 185529L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_48_b7bae9028e44dbe85bdc04d6af18b8f4d935bf73de980a3719c5f7d2.root': 92904L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_71_46e52a840cd6e596bb80eef0498e31ceb187b932da01688d09c549fa.root': 724147L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_39_3ee5b074ef5d1862db394a0f0c715126c12e7026b386e30746dd4c19.root': 71113L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_1_96027c0e98e1779ba6e98baa17fdc7846bd74c3876b724326cc426e1.root': 451411L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_64_7fd2665850017aa20d5da77d25e92ec7697d6031696df0dfefae0f50.root': 131386L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_50_2e6bb9408aa19608dd6e12f0a5706a7488adc96f41aa63a28fe32edf.root': 330127L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_54_a0219a4ee36efeb369dffa828f24283efe8bab1e01ef8190e51f4046.root': 108724L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_44_f564454683297e040f57da491fb42bd2f0021a8977d394a916a67eaa.root': 435884L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_10_95be9cef23b5ca1ef39d3b011c1c4385c81da7b47038b49501c46db2.root': 739521L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_19_48d29fd0e7b14c9d7d33bf473de7010c583daf673e18ceb557242553.root': 765805L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_10_7ac5ddd45209291d08b53587046a7d394203668ec6519c09d0822021.root': 328L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_24_779d1b68f703447ef6f4e5967442835f42691cb19fed742d26316a07.root': 35258L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_24_51cf6369406319969eff95e5c588b558b5b302dd685616cfaf5250ef.root': 495530L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_78_cb92fe0bf2fa8c7aeef95d7eef4aea36a9ae033b1c0be76956cb4f78.root': 953002L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_5_bba76406c57a6965c73e1083622bd4e50555cf784c56a84696caede0.root': 218609L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_14_b39bee145d364a8030587ac747aaf3fffaea2b61daa85e42d7fff227.root': 240543L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_40_747d1f3b6ed2ed0646db79486b9bed158e256d4edbad1914e8c634ba.root': 304632L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_32_3626ba50818d3fa2cf42aed875ba418ed3b026edf1f2c6ec34847878.root': 209419L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_3_d13ea40fd2241ee5897d28520d565fc6eb6abe34334561fb1979c249.root': 394459L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_66_33e7ec3a500ef678b7f3213aa12ae869eb3ddbbb484c52f289097d18.root': 915838L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_13_881fbedce7c7b901195c65007400d11de08edf24900b84994b9177f9.root': 348153L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_39_bff81002c17694a6514acf30c13eff3288531509a75c4ea112a3a4b1.root': 625126L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_36_cde1a1cdbb3aa301a6560693b068ad9ebfed5294310ea0a830723582.root': 292647L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_45_10d01a9c819f85605c8f53b76385e687517226f70aaf75c40a6cd8fe.root': 644638L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_27_a4ad615cc1850dfd54425abdc325637b876208696f563876b8c3c4cb.root': 269089L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_26_9841e5eb80a68e234f5bd7885580b72353b2607f60a9126e84742a80.root': 384369L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_62_c4cffee0ee6d54b10ab3f67611deb985a9d9ddf00222ea81936a4875.root': 699716L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_58_47a199bcabb7fb2b75ad081f51f89bf9d5bd627ca2f28d03b6de22b4.root': 887553L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_48_75352540def4f377189b1ba7c50278a9184fc70adabc72b9b917ce05.root': 652706L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_1_60eb61945743ed11b3a873079d8fa647744bb451268debe9d99a5cc2.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_67_088513bee74e11664b88ccd9a0ff0baaba9fe1c6d722bcffc8bb8621.root': 712845L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_65_e6eb4fc1addb4add552ff2ac1a8dab81b9c29674c0ca0cf5c30c37b4.root': 912011L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_30_55a3497939893e5788f84cbe8d3d9f36c7be9e5552aab60cf64df15d.root': 396878L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_5_7d75c14656c8b2f4fbed3f3f961c3b10c53e5acf6d2a9d796bb19526.root': 97443L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_46_9aeb5c8d242fa92d14a53049e65cd5fb4ee2de54dbdb31d6f6c3156b.root': 647481L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_41_4c420e54c278f91781c8828985168ba72807d388262399a6de008946.root': 306942L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_57_c9c5a1a615360fc65d578e3c06b3194b7d2f6cb523563503486e9f6e.root': 682668L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_40_d8c2ab55da41860302a461d95e9953255ebdefb66954bb28d9e0a25e.root': 833059L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_42_405a777dc57cd543ac31358f94a0558fbeeba0b6fbb7d07c38ce83df.root': 430831L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_15_78785e56f07c8cebc3275b543dc781f8745540ac1d60fbf1d4f1875a.root': 12740L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_80_4124aba9d172903ac255cc5cbab7db9b24a2cc4eb7880d18e035f017.root': 961491L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_3_a21b649cdf56b4f34ed8499c88ec2455521fa68143a1b3cbd5bf2b02.root': 511130L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_18_31ef6ea0fbd32a2c50a15cd3cac81d660835d0a7132e2bd25c2aeeb2.root': 762943L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_2_f20bd89c24878606afa33eaf9a616cee4313427271a1964f9bed79ec.root': 568748L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_38_46669cd55f9c154934d27bdd3777f2dcd76d47924c3e4f6ad5a03dd5.root': 824749L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_18_43651f9c761579f23713510f598dac039425d1aef9756bfc1792633f.root': 562504L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_14_f811385f2480cf6fa5ec8877a567800f0ad9cd694858094e1e462365.root': 466058L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_72_0fb0d3ed6a17a6ab08647db2c44b062b852f2cb3b8ebd0dd7b0fe4af.root': 150577L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_8_f78e7587b0175b47bfa947264a1fcf2ea12f36e7c581630bf2d3dda3.root': 731112L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_22_62fc14b95809ec59720605e0eb74b2878071ad77e60997584b24ffcd.root': 187852L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_13_f10b9a9b7a720a406f5517fa055305408ecdf3d208456e349bbe667c.root': 547332L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_10_9201292ed25fa1f15c0673b7400469294f25392f10b66bd4aaac35fb.root': 230737L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_17_7b0f4d0e0179564e5d5f3aef5e4530b128bd10cf4e767c1dcfc9bc43.root': 474229L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_21_c42156ce72fb444efaba0fca9cccc27ec57841afa4cf7d358d171a56.root': 27769L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_34_afa4b79a04bbcac50157a02a69439e0263496fa8bf176688a043dc9f.root': 611952L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_23_bbd399d9f9b7e7e4a0701e31c4d8a7ae36d0bdff8030b3f152bf89de.root': 577743L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_36_970a80adb1b6e7a0f84bf1813d756b9ae18df531fd1179c76eaf1828.root': 617133L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_39_6e19cfa14806de91b6fd79478187b492551e961205a860a74f411eac.root': 299965L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_38_e342a77206c7725354afd8108cb45519dd577e3e33457d244b728213.root': 622476L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_30_41711fb9f9e887b4adfc8c0aa4824e2a8c2a64db90cd66d651f2bb9d.root': 600882L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_4_04630d6bfa7fc96f98a61314267a433c2b292d387c72f57b05f8000f.root': 830284L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_55_881719594fa612401dd634340269ef85575a32ff24ccfc9481ceda06.root': 110584L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_63_370b7c5b17dd4b88b5d2204e500ead841736bf489405d9e833351d9e.root': 702243L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_6_97ca981ea0f44097725b96e9223c37d3e96dad481ae897caff344e42.root': 524866L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_76_946d393249d25ec205508d1ac7e4042524c4ce7a052df034e3abbbbf.root': 947345L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_7_88abf07924328010c09b92ac30fa2d4c7706514d43837135eba11033.root': 527468L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_16_fbb2770107cacbf1a0f67cf1be39cacd1a6473a73e6cea2104dfe1d2.root': 556394L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_83_15336ad030025332edf3f432c4dac0dd2ad8a4ea8b729fe587954d62.root': 968687L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_38_471ecb4973cd02b10488493be7b73d02b1001879535982b6f84161a4.root': 417801L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_3_b708f9401cbc0af8b43d489867642c41c442a479cd3e2c54f27d9de7.root': 48676L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_19_b8642bc475ad21b06b729c8960c45b3bfffa663bc1846fbeb2443fa0.root': 479812L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_9_01e8744b0d7f35cd4e9a850af2f05742821ed6e5ae018d4bd704b263.root': 532863L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_30_fe97aa9c0fb1cc94841237161613257dd3e6a3a1e99ffdcc67633de3.root': 204817L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_28_bf53805e7aa760c77ad3c3cccbb8fec5dcdc5695b2b27aea74473d60.root': 198039L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_39_df4e0e7e811c495bf110fc2dc65ce44c9661ea2028e5ebf8ad8e2f76.root': 420371L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_35_ce544e98c4b1786e4ddc0cc6ebc6f3094e77deed615c420c8f330ad7.root': 614474L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_27_7e3de169774a3e028566ac6d1806873e3eeca510867f199046d5b42a.root': 386759L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_26_4a3e3f068008704da1ec98e4695ea9d45ca12d31347f591c01d78212.root': 586107L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_1_d430e1c0205407b788149f1191d2a90187d2b62746dd4b71986fda4b.root': 159153L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_3_489f1c24bc51c57be0951a58b3ccca62708c1baa1a6e137a41ab5235.root': 800069L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_31_5ba154c36053a32f7ba1a0e5be6d16ca52074cafb5e29a3031979ba6.root': 805790L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_30_0eecae62e4e504c28da8d3f495d5b3623b62998190512a1b92bb9731.root': 514074L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_60_fcf265935a8f7f54bffccf46c08bfeec74ce73f28e2dc85f606c212d.root': 123463L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_11_9b07d549c3d2266a050a5e7590df402e5fd8c07216b23345255f1699.root': 3275L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_71_5a62a01ad735e29a9c06894406675ec865f0465e7ff2f28a96250547.root': 148564L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_46_75588a56c4a486a248402d3b596addab24f88f8084774dc4d97d94a9.root': 318203L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_32_6e4f8518d58e07cd1a8957a52f0fa72849210dccd17234cf4e65f1cd.root': 808542L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_11_b170f3b23d342c4e16c6df6bccc6ee8e0a2f41c97c04fa8ac521776c.root': 345585L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_7_34d72c2d407591db3fa12bea11abd274780f63b551f5e042835c0e1d.root': 335008L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_33_c3d83946c349bdf36f74b8fef2da941277e6484d1ab018275819b777.root': 404694L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_40_112eca68744811c244d471fcae005436ee7bc11ff6bf1ee52cf8cf5d.root': 75667L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_9_9e86b0df420cb84018fa43f11f688be963e24febaee0d9ac52239b28.root': 339391L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_68_67e4b53160a0f46a5bf66ec330f6130fa40510793e8276272083a696.root': 715187L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_28_f6cbba09ada78e8a84b548323c56c664601a88e30e86dd5cf0fc76e3.root': 505963L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_26_5031a194378bc2baa8488d6ede201e9f11b0779b7bbd9e200763e137.root': 500487L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_29_8c2ffe19f75dca2a840aeb25f8a417bc0ee5653f47b6dbe3a5ae8786.root': 273867L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_15_2f1f8bcfb82fd3cde1f732600fa2c8a3963bd05aeeda2715617fd34b.root': 553353L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_30_2b1292861c619b090ff4e0f2e80268714dd5a85e92a75decc940d707.root': 50841L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_29_a8dc7f8d7f07b06c1ae8c377a85a0ebe0ee7c5adb962dbd5104cdc36.root': 508507L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_1_f9226da3713924bc11a9c1515cde12d1ebcd0954e5c5799c8b268382.root': 736883L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_20_fdcd7267e5219979a0adbce774e378526ba126a007daa6350e8494d3.root': 253013L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_29_8b496fe63aaad3167a374dffc0475a419216bcbe0acf710d156e51c8.root': 797044L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_58_fd35b7ac9142c0d75e37fdcb3aa085ea7ee5a6a94d20b7c1c6474afe.root': 117050L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_11_5bd61d231dde6fee98880b2c7efa246bf8a66516d6191fc170960d03.root': 742913L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_30_78bd519be810a51eb9284272cd5efe2970ba77737a822669d81eac67.root': 278609L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_22_d7eb9ad17adafecafc4ee8af4fee955f12d7096688f3c5ffce0a203e.root': 30763L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_12_cda3e8f79ff9b88d3c7e0c1b2fa37c86db74b0a1fcebbeed1e62b70a.root': 235577L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_32_8b028fcc540ac091fcaff5ea1906b57a6e9709a3a7e2612f77ba2acb.root': 402072L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_72_623673b5b092f5f2dd442017b836b2ae39009214710cc26d92449708.root': 936251L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_23_53dce0d11ca24abc2d572ad436d258a6666b9ab856541b2d13c3f5a5.root': 492690L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_64_88dc614047eb992e156507602b3983d25afc3c9dfbb6e32bd71cac89.root': 704756L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_6_6a5c33c3831bff1014bd617397a6e60373927e59f5abdfcf19d44a49.root': 121045L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_15_ff0330cafc0a21a540300a14c6f8e30a0b66b87a10fc56542a0a65ff.root': 353790L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_44_8319cf2cd781915f38aa40c37dd379060e5ba03ce67917be41c6f784.root': 642136L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_2_1bf1a088929f5625339c68c52ad3cf882da2b51717a48898f574f73c.root': 252995L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_26_8c6203c58e68a792263dd6782586ae7a7c21b456d208f26d0ba78a6b.root': 267035L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_9_376da52b0f70e97bd79d93c67e23cecbb58755abe4b14c9c318822e2.root': 157213L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_12_e873e1b4ef8422f04dd0958eab6690e08cdb63cdf4e477da106a5c87.root': 544184L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_19_c75bf520c6977db59f9c728d87fa6ebd5a0fb51ddabd9d38beb75169.root': 179172L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_18_4fe1bd9ab5fadfce836ce08572baf59c746a2828b182ba7156d44eac.root': 176958L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_31_c45d79ab270515c79aa0abc1aa5a21ccf6c47e9a2f5c1f9143bbe922.root': 399518L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_43_719e8e8f204b2648a8dee96a15d2c6aee8f1b33fffa59abaa0bc0d85.root': 311538L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_19_ea6c3652b8d132ecf659f3c37f3fb62278fb41b3970e01b9a7114902.root': 364166L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_31_cbde70893099cc9502ffeef638714eea9abc1436b8722764169d00de.root': 516623L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_9_166fa16d070eda4ab58eac2ba0c586cbc003aabddfc88b0eec60661e.root': 971257L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_43_dbbe1bd0ad379e588a2e13d6d0ca07a1f6c8a0887e26f02fdbcc96e6.root': 433257L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_67_652328b313552e17a41811b78ded2ac449c6f1b10d9c3e8b0c60d56e.root': 918907L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_20_1d7e2659b2d229d648441c642bbc8c480f1c149935f6c328b4eef765.root': 485000L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_47_f4e2cf7263ed017f942839528a4e3f6d3f0bfdf643bfd3e325b6b0f7.root': 90741L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_38_d42f6fc69f9dc2f6f65533f49a18acb4274a253a6e260a7f062ad340.root': 297628L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_4_10e22c8d4002adfe9735f97ef8a9dd4fa895c4b0c6464e3ec7dced78.root': 519644L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_38_dcdc957ce715d2c8f5e341ca18c7ce1bfb3cdb8d1561d6e03e69e024.root': 68529L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_9_21064d6677ad763fa748478c0a44f30d7ff737c5a916671515ff5a2f.root': 733978L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_35_7814a4e93a57ed39fc53f69c090f123ea7a1e64beb943a541a55513a.root': 61772L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_28_efa3227e4243ba4d92a6a3ada936ee08920aa01d3af84d3756409aae.root': 271488L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_49_f7bf42ce8cc13cd505b5dc5d54a985125f11dd2d163cea652c08dd87.root': 856495L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_19_d77990089227043fd49951cd3bfb47c2279bce94eae6ea07eee8964d.root': 21051L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_23_9f1a023f1d9dceffeb0d27780f81b4c908196e67c85be8ce613a0a61.root': 189967L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_12_6b2d8296c2b1b33a059e7d73a2878d5bf13ed4879b3fd9b57381766d.root': 5360L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_21_f09f1b806f07d251a5c3154ad85cc77cece43641437a98e7b6b04f2d.root': 487508L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_58_f36b4d6dc4123a58097972502932dd01e94b802b47c7dccdd3cc886f.root': 685380L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_28_3bdd6972470a59673d81d097764fa754e195f0bf5491b34fb2d5d6c9.root': 592097L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_54_d84dc682a5c20b61388e9ba0b79270595f99e3510ea2a8aefff10d15.root': 673909L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_55_0ee3ee01e3f40cb806f5b6457dbbd0320e7436317d3fe928abd72358.root': 878349L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_14_adbf4a17fa168d8b9b119f8ed1c81f1be9683b0d4221cf581afcc0e1.root': 751685L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_35_0b882780ffd04650201b30bda9d92b4e3f7e3be18c0e520be3fdb06a.root': 817440L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_18_83ac4630d8a4049bf11ea65dd678ef6bd21789d6fa68f8cd18c0ed6a.root': 19043L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_41_af17c28fbefaf96457c58150f62be79659319115dd4206bfd56970ad.root': 428177L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_29_3c04ef4a4da268b272e2d3ef7bdecf8aabeef39979a467b88086a924.root': 595302L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_44_e24673afe488b402a27b9fbf1137c89955b4b18097243c43a0e0d9bb.root': 84259L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_61_440069132e4ad9560dc326a6f14334e75609963223220ca4870f3985.root': 900576L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_43_33a0b1c23a55b347e7507bc962443b623057fa03d525042ac8a616eb.root': 639276L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_47_666e7d76e93d029d02cf4d0c26f607751f07d531c609ced9a0805953.root': 650102L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_70_3f0804f0af36bacf060d0c145eba2b8b5c3ec73974ff856e58d8cd21.root': 930766L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_16_817f8d18178977fc99ada8e638d09fd35433e75440bf929436bad0e3.root': 245296L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_32_8357a2793730a6e3321426f71c62da413561da6993ba85522bfe1716.root': 517735L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_52_a1873efe70eca55e30abb655d8324da80220431be7858219a8c2521f.root': 104270L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_53_4c6b64f8011e73abed7bb6d133d570fd06caf7be0aab7b826e55e984.root': 872514L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_45_334fe16c99c2c1ecd3b0790a0a7d6ae8a22917b550384689e2b2eda3.root': 845213L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_13_023b56589de053f91e551df0364cf60d57bdcb6f73e78e6d0a56ab1b.root': 238331L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_52_80c4fbbb46807a50f6dea3d2077c9fcd5cfc681ed3371a93b369d9cd.root': 869586L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_57_c02653a7814e82a7b984611d465ed96c4e02ae49a1460d8c555dd29a.root': 115075L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_42_70f8c600c75897e891b0aac5b4292156a63418d3cef99877f0a47b70.root': 838590L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_14_ce28dcbd8cbc452b09ba389ec6d6eab130fa5a95ab1a254261337e4d.root': 10265L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_23_cdf37c5dd44fe0984f06d0190dc8bb7641da2152c6d6fac57f52b5c4.root': 32575L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_37_39564e3acfb7d116c5c34cdf3dcdc4109a9b63f9504f9e157655c5b8.root': 415230L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_45_2bc64671c7de555b1b180f57ce55ac14e88058205701accedba313e4.root': 86539L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_30_f39822d5118bc4cc21a641c0b3f93f6f92b592161cd3c276f5614f6e.root': 802904L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_27_396f16001cb7527ac3215ae4ac4d4e37dab84e851e6e30d74166a2f7.root': 195536L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_70_447182d86f833ca37954d2fb861899e4a77d1eb624cbd3a23855058d.root': 720720L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_9_d8a4ef05acba619999718994b8c9a72e576d24f5b2ed2fada4734383.root': 227765L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_16_f3d63328a3f4b96a28ac1d7b4f6be694cdcd77eb46d85e9ac8b1b70e.root': 356494L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_1_4858e614971554167a9fa950724e67a119d67ac1fe4ab3c16a78d6f9.root': 229961L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_7_09efad8befd7655e86dcefcc9eb9718b5ce521dcce0ef693138b9f44.root': 927440L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_15_268517d8af491e42058f55f955aea691638bc9895b129984d4f189f7.root': 170085L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_8_63b9c63c20ce790e6336dedb73d1591ecbd691bc2572c3d8d71202a2.root': 154767L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_22_a5efa937e281c63b740e6532206b2991e20430b2d90a5b18e0c68b6d.root': 257710L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_49_392d630ebae62794d2ebe33eeaf1cdbb880523cd45c5f7356b329909.root': 325454L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_31_25af3ffd64f12eb122e62462dc90a49e85ddecfd48fee551c9942a74.root': 280888L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_16_4758bc0e2dc17cc4ce161b33bef7b4be19bac515cee6a29152622332.root': 172392L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_56_70cc5cf594e2903e6b868f19f5b045b9cb33504c5f51287dbed10425.root': 679833L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_74_d47f97b41a7a3f6bca35f12e2a9ee8dffb06bead35a388372fbce506.root': 941912L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_27_916f72ebd1fa962aa7fab800d5b1a7b6938c532a6d2db5c26eb5988e.root': 589336L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_2_8e859013e9a4e6c1600e97987bdceaa7637f5ed3d1de52e13fc0b646.root': 23280L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_27_6b9de8278af799486fc2965cb533512f8aad4ee69ebc52b96a42459d.root': 791307L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_20_ed2514ab9e337a1a3d768a160312c4f272919279b7d5b77a3553b105.root': 568981L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_22_12302970711fa810f8ee17cf41c08aca7804dacbe41ff0a61e87ccd0.root': 574770L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_15_be3d6f7baac3da44abf0e1bd8753b4ae7851d4ea4b3f11c7648f58cb.root': 469007L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_8_1e9016b1a3004241396e980d38b544a23a1928afa24d341819fc084a.root': 530168L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_19_d9d13a9234af33b93f072bd2907762c83e4fabbb0f1a0b02092b0517.root': 565657L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_50_daf687217437660c205e24a43e712ce79e0e7431e468b8a56f0fb8dd.root': 662434L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_33_da6440ca27f2299932727a6aa53da6788c3c1ca365acad81b0a4beb1.root': 811518L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_4_c38b7f3716e7097d17a64b09fdeaa01d3f76383b642f261020856715.root': 628034L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_13_7cdd1a8e7cf5827cd908f24e3f50d08b4b9ee01e4fbc672957170560.root': 165748L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_81_866ca15f4f7e01784842d06c274c0697e98764b0df2e32d8942f6dc6.root': 964531L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_17_9fe6f6ac5928c746f35be9c9e5bdd5ba7ddd0240d5410fd57a814e0c.root': 17019L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_39_b01295db91b86d6399ebe3f91692a820662e993cc4fa5269433c876f.root': 827511L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_21_785234ab569eabd90a28b27170a5392aea91c759737047969423d756.root': 255372L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_33_a5c3076330d01d28edab89a63465050e165b5e38ff047207442814bd.root': 609020L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_34_60286922e546a51dfd5529bf7703eab2b8f802b645f867e43c4df4f4.root': 407338L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_6_d4a8bc736dedc5921e98e61fe9abbf45c328897d17e15b89c9373016.root': 220830L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_60_aaba2111bc0bcd9329e86dede82aa6d310f0eee83a258dba40f44be9.root': 694110L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_1_9e86ea7d1afb760798c47098436b9bf02aaa8f5fada187f77b8538a4.root': 535360L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_51_00d9518c6b3468c0c91e3c914315512f7c89225693940f52a22fda6e.root': 665124L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_47_4ceb38e302d69ec040af3571d5e878071e9d2468ef5eedac569fa5bc.root': 320554L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_28_0ce49901349804c2dd94d1369ed0671b6b448d53588ef9d3a215800a.root': 44505L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_73_1938d3d72578d5e2c93327cbf7ff50c3bf6c200b749b830c8d69544b.root': 729620L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_32_07ddffc482c0f9eaec15cef6a7933dda558f38d1ce896b1eb623fe5c.root': 55360L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_20_180fd432e8071d251008db0f7b1fef2a9a95ae04dca81eb5041791ea.root': 369293L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_63_2b504940e5f76d968b42c3458293afc2c1d1018aac6a32353253fea5.root': 906056L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_42_3885977b0f482da364a29c4fca847d6f80049d36cc7a627bc7349db3.root': 636591L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_11_3c363499d27d7d3ea5bbf771fe4c6acf0556b9e8a2fd52acd9af6272.root': 233124L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_71_e63c31c887c49b1f4c1b6dfd72c9de9e0eecd62247b0cbbaa917a81e.root': 933562L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_26_87384794e0e93be0dfde851a6020d2f16101afd5a8b8564329099211.root': 194832L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_10_1c85e0dde31d091886c8765a5149255dba79501be3af8433616005bc.root': 159186L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_25_cbc95e69bb3912867b6953abd0de79799dca609c7d33f64c0a1deeec.root': 37828L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_40_5346209bb40c79fee31edbc2f487a7cf63830c5f3171f144a52e5dbb.root': 425452L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_22_6a5b2747f3a3e849e05b460665350899e5241e3da1918c17e3e652c7.root': 374301L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_25_7542c7e4683a21ba028c549fd1604a935fdd9c331988df3be73aaf70.root': 785463L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_34_6301b269f41f856b1bfed6a4bee7c5d86d2dd20ba878ee3510a54dd2.root': 287841L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_14_edf26572c388f511280cabf03fe8000f386ea79bd87d6e651e67807d.root': 350952L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_70_ddd1d766e53929b05fe186c9404d61a13a1775893425df26e3f11364.root': 146394L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_73_2ea2ee29f4cde1ab19cc5b50c2f8f06d4f25d8aab728b66448229745.root': 939110L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_62_ea9651845b7337f822d6467a0ae2e2ba83f9a4fa6e7f0c9e92e82ad3.root': 127565L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_79_b01d8bdfd43f320cad6c473d3996f1a2239330d56aa8824c0c56254b.root': 955924L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_37_a706ca1f9edd8df4966188fde173efc056c5a60c52f6972ec5accc88.root': 66650L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_25_5fae47a9a9a1549911610755b1a46032ebbce4d5d497ce919c413e37.root': 194444L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_48_8462e10a524f5084d09d891e5d5c9e58a093c7a97ca12589f00eb7b9.root': 322880L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_34_f2f7ffc24afe6d4341378daf1d99238c6d117a208fc32bd4cf35d764.root': 59621L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_18_400d3957e35f1d2d9b395f6365fc7dd5a97c24bb6a4b0560e8aa8dc7.root': 250079L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_22_3df6ee7df7a94121b4f54079b8a22b0618c35a81b3f0cbe2cf62d075.root': 777041L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_44_342463d53358774630b93ad0f4fd767cc9833b77388e12c7a8eabac6.root': 313749L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_35_31c9978a30e97e5d67f71aa4ade6e72a26a0cf2621da730f3a0bb223.root': 215504L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_8_27fbb986c9e5be2f32460d35b9150d06ee7f51b43d595955d662e396.root': 446372L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_64_256b3858a91ed8c6c9dcd776e44917571ec1e8238dd98130e18a423f.root': 909177L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_56_7034fe2ac9d7212c43d0c5749cf08d12abccaf4196541e9df4d69b2f.root': 881200L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_6_da05d153ab2cace2d82ef5d31637e4f0b27ba2266524d234e3718ef5.root': 894132L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_54_fdb504e0c20d059b03b58450b195e6f5d177dcc3348f3251a1a20880.root': 875421L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_11_f34859d7c625f086c734f30450bbba145851c9c06b9436b6b2893d3c.root': 456976L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_27_f28fbae7e436033dfd804617b8595cd3b162c070c180679885c1b94d.root': 503346L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_25_1854b9e6869f386ab19ccc54bc519ab6db88d7991b7d8d3bd6cb005b.root': 583057L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_26_ab1e8e14f1d6a5a0bf116da7c73e943e324b879b8a32e9faf1b83b3a.root': 788292L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_25_0dd03f334c07d9a03e3c44a957e25fc92625eee96764f88a27de1c5b.root': 498231L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_41_90afd3160db1d7ab52f4cd3e1079025d6ded20a60da3310ab8871219.root': 835852L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_24_6948af0eb45e6e569859d56ac31c1d9a97d95a7f244de37db6d412ff.root': 379128L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_2_ee08887b887c121016a1a2cc496a9c07494ef1d96ff04951432ddac5.root': 181043L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_5_341482f34ddcfd591cd36528a3050bc58a654fede3d124984a0f712f.root': 522126L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_12_818d68486a9d1993e0176d8a7a07d2288d971992c2b46177a9a9d04d.root': 460050L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_61_90913d58abb4245eb0156050b86116b53e876b0249cb74439a381f39.root': 125404L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_24_8d51e502e19cbc4345a494fcbb7f27c36d455843c79a098dc496b445.root': 580412L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_13_f374ba149cc199515c0db9de14578c97b8627c016c30bd13c2b3f19b.root': 748565L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_48_b176b01804f2ebfa888c710709e3196f85427304da6ed770d6eaddf6.root': 853853L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_82_12c335f1748680c52cfd46c4331c0e9ee988b85ab1efc9652a126bfa.root': 965873L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_29_05a5c8372337bbf0eeffe8aae1e3ca1bec3649db2083f8535c9c252b.root': 391792L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_7_cc23c50f6da0635965055a72bdfb17ae98ec09ff0c35021bd988c95a.root': 717749L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_10_9c86a2a1b1a1637ef1eb058a00f2c79564749f56d55203e1cf971fbf.root': 538130L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_40_2e82e2f2239ad8a4faad90ddc8fe27082201135c3dad7c136ed8a9f5.root': 630729L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_59_385e7131ecf781ca738dac6ce74999377e87fc3e0ab274565facbc7d.root': 688610L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_4_8cf6209239cf97954037e95b750eaf2cb73313090c4366f5de3dfc2a.root': 422735L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_56_4e06cfbe4cff2e0ce3287850a3ec80433c6df9c7ffacc9e795f35aed.root': 113005L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_15_e9873da9acaa1588ea060a7b915a812857c50b30cd5ff3c52ed42639.root': 242886L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_25_8de6f4398e563553e004d9003e2acc9246cb637e8363e2ae8401beae.root': 264711L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_37_fff07993fc180f17db659ff6452fe1659df44e2b40e27a12faa90e0c.root': 821950L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_12_cb92a0f5ab22b77cc859835518d84a9d4068a5fa938b38fd4690ced8.root': 745743L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_59_8eb29c82bba7eac181904146addd76344368df0eda36e62f9343867a.root': 890951L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_33_fbf06e16054610d995ca05bb241a5f98afaaf306d462be785ee33dee.root': 519579L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_7_c90d388e7a8e95ee5512524e46a2dbb23049d3f1c70d48e0ec991991.root': 223012L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_22_86d00ef26153a01c62ed8e9d098ecadbb7fdb3bfa58fec91eb080e85.root': 490066L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_16_cc5b628de02769cfa731908de2a958e48eec409e69cb9465a9c60c55.root': 757432L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_28_e0a01498414e3c6bd137428c9514eeb20743f90648304c3a3eff1ced.root': 389163L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_12_786a3ed985af1fb7f4188895acb0fcd14fabda8c28c9a602e657dc20.root': 163611L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_33_1767331543dcee05ac3be816c684525aadf3895e0c1e84b5e4bbda8b.root': 285555L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_50_1eaad8e3879f4531c2b80332202bc15a2b7b58040b9bc32bb691143b.root': 863705L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_18_d44b27ce79b3114ae6643a8c6d7706ab87b5f67a1335429388a6db1d.root': 361669L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_12_86b2d35aa1dad03894b26ba87971dba84b200153ec3f924adcdc8dec.root': 345612L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_36_c3f8ca3a6ab5b9b6c9d234bd83eecb2f3dd7874f7aea75a554955a22.root': 64291L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_46_6640da3ecdfda8fb195a86643f5763da720631e007148e3603407958.root': 88552L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_59_ca7290311c6163ea30575550a620a80154a3bf1edb3f31b13d40d38c.root': 118952L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_37_eca4aef611bf95c589ef81b95486fa4613fb53751f33de8e7b37f0e8.root': 295045L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_49_1793da6686bcf514e75e816b5308659eeb5c9bc8d074257ec04e2040.root': 95352L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_23_23766b798015fcbe84584cebaada9a75514d7079dcfd3bc09e732724.root': 259965L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_2_98376280d3ed54d8cda39f862ffc120cfe8ceda88d05c833bb02b885.root': 366815L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_53_6317c8b9354382c0353c116eb929b6bf3523b61488a9af34c53479cc.root': 670856L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_34_1a49cc6d5167bfa47cdf7af0cdbd8ace965aa9873581cde496aa0e89.root': 814563L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_28_01fed284b267af40a84ca247531acecfa3492a79e2fad065a5693e5b.root': 794169L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_37_53366d93f70e65034be23627a1f1b754460335ee29b6064d2c7b348e.root': 619963L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_17_639e3c5781fa1fec73b49b45131ae17c1e60d1fb62f114e7b9d5df18.root': 174345L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_6_2856b0bae84d7e334115bcb33ab77ae7f721c93a1a877350d229333e.root': 691389L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_44_680f36d500e203a9d4046b275be3ae1cb4e55665a2f686b645c7d4f2.root': 842007L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_14_4209683126563648fa04ead157b9051f83a5277866ed10669113b68c.root': 549964L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_68_7f37b81f0d496fe5773cd2c3f0a280edae3b2c27e033bf019cbfcbb3.root': 921646L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_73_57280d69cac4f8f8adfa882e2a4199dcf9ac0ce89e1235614f9ccd11.root': 152643L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_60_25399cf8e537005b9576f2a1fed3b1a4606d7b7e4943546f6f754878.root': 897301L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_35_0713f756109d6f32b36b7b2f346308962fa5e2cfda5f7db27207e6fe.root': 290368L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_17_d88c8f519a33f770957b7e8bdee39b947c441bfbd4a3feab8b0bbf84.root': 559463L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_24_fdaa038e6b1d6f319fddf8097a853ad2ffbe96e2e12a21191cc07442.root': 262350L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_77_e464d8d7a59b49aa28e0d5d0b1f3e4a11c374d33f8a211d685fa24f9.root': 950088L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_8_e491fc3f5eaee4df1948589027ba9aee8fa0e784ff3341f36dc50985.root': 958570L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_51_3b00c74cc750a776c1fb17426d2e1a4ee195e65a4d3e7ed77d00c1db.root': 866562L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_23_b2b914f4fb5546e3b6687bebac6ae16c065114c072c7a32d3918db24.root': 779688L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_18_44f39eccbb53365e6e97fe3d925096b12ef22c4ef3d2207391e488e8.root': 476872L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_31_8e0eb506dafc11940af0ae4bda462f00764fd021bfc5815223a30ba2.root': 603602L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_74_fb8ef96f45d1344cb262918c244c8705ce0b03b2e3bffcb2235c70bb.root': 154718L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_33_91c9a400e7edb837d5ab21951e5babf7ee7550e585af8fb4994477c0.root': 57545L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_45_42d1ed7d896d24501e378c2a3ac547429684d2b5498397e66a70508b.root': 316047L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_41_4f5061e24a3d73022b3bf8ec8d07b5074cb577bc0fea72a7204e39cd.root': 77857L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_16_be60bf8812bc47b981bdc1c3c5ed7c12555b4c0b16038fe8f9bfea35.root': 14841L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_31_904bb0d107c1a1d433ec2da660f836919f6d5d2d38496b69a2e29113.root': 207143L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_5_e95b764f48e3e935fa97a6905ad161df42a0f3ed0f3c0895f8a01c37.root': 327871L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_41_d340374808f9be54131f0cbdca9dfb461deb3fbf5e398d8ddf39240b.root': 633480L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_2_eb6859f3b49af7381a9eb82806a73eced4545878b58d637f2110a8e3.root': 482265L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_8_a7783406170d158943c901ad3ae556e1dc15870f7911cd96ac9d32f1.root': 337205L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_42_9732cad33b3908c6968cfc0a89048725e3939bb61b3fc754154944fe.root': 309263L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_6_f449c0a0e91aec135565f3cca6aecd1849065818aac6c61895925f96.root': 332538L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_14_bed3917d54beb1119acf1b605a142783105847da5b1e40fa1a87a7ab.root': 167877L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_10_9b7cf241ea5189a9dd8705674c14ef2a15c787c62b43577e6aff1625.root': 454326L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_10_0dece86cf7305f967420f737c2d1b21143308c0cb3061c805a452e4d.root': 344557L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_4_35db84ce651052452731e3febfcd2c937f0de15af1f5e2d3c3fc0f03.root': 216165L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_66_98e8c389fb919c2fc41b6819e1b97fd55b26f4e8d49f0953ef60eb64.root': 709948L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_24_4cee9d9c9974910f4448b119652fe0ca6ba823503abed1155b44b8f9.root': 782514L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_20_e318f9498a3857c79904765a5940b1b4f40199601a5492e4f46707f7.root': 771354L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_32_9a41063097b6181f8ac5a88c742a7b26ef78394eaf90b7639aa863c7.root': 606366L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_7_e3a0523ccbc204fcf679479fac44dcfbb274c7abb0e5020c2961a577.root': 443867L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_49_285eb2375db1810ca3270fe283b38f3376055bf58c19f5bf21482960.root': 656141L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_43_8f49398846728b7243276d7dab50d7b6c435a4e71f1660a4f9c48131.root': 81835L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_13_d6706f938939b80ba9f8e39188230085564143e68aba4b213035484b.root': 463128L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_5_0551a4f4d0e1bc91d8ee6371726cc1c03cc748bb8d9456728eedc8a6.root': 860581L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_11_7fa3dba12f729f09a45e6299a9a2eb267f5fb82b24ca44ddd1894dde.root': 161537L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_69_5c8d7ccb4c9764a318eba1974ac60f82759bf368bf040f6a6f354fcb.root': 141637L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_67_9130b8af5380f4e41dae837a0cae1e8a1c7eb71792208ff2e05a6541.root': 137577L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_5_56cc98ae7bcff9670afcb9d608b5e105bfc3b96528957bd23541b0be.root': 438495L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_43_b919dcb39af238c217259c2058c9239d4fa9aad3ce660079fcbc6d8b.root': 841358L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_69_64c35207ea4072e12a96ad5bdf7663b3c173deaeebe9b75ac84ea30a.root': 716667L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_11_c4efc83601b7310086bc5908438f4aabe9258d219300de4c5a4cf6ce.root': 541141L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_36_8fbc82cdf9cb23f9ca02ca90f3d089f438d1d6576642d5f2faf625e0.root': 820351L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_35_e7febbf6c65d8067a58b70b87f68b521d9daeaa57f97ce7b5220647f.root': 409924L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_52_4fdc59d97684b7fe2dceab0e174cbfb4eea18482895ae42a4f4da570.root': 667982L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_75_4b63f035fff495a6909d2823b56b804076f7b6dd07b3543c4ee88f6c.root': 944443L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_33_07811a5a2a1dca7eb9786afe33a20f749d7ebc8eb16309fdd5b224b5.root': 211466L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_23_e10818bd175beae01e0661f08b674ef0e1037a55525a373dd3c4c7b8.root': 376712L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_17_3a7135b6bc5d63fe8ca283601405bda1cb094b46c69c87fb18c06d0e.root': 247714L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_69_8487df0638a182a286691bb05d25fd0ff3c5b59a30bee4233758acdb.root': 924525L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_7_24c50940f7c7fa71024187bd45c02907fd301f366355bad61f672f9a.root': 143850L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_27_59a92cbeaf002132701e2d800b6a288707d56b681579bc1df013b43a.root': 42207L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_2_b0c12c2ea0d45cf0619f44686a42b15b0fc0403e7c8eac93fa60ccfa.root': 768528L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_65_d80de797c912fbc196721c4c83e4d394f1f3d58699eab714089646af.root': 707500L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_63_5cd6f747ca7f4d5f4b1542df10f9b7d8a2ae4ca8937f2f74b48428f9.root': 129432L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_29_fc2d4ae0eed7aba59551c6abae50ebb7a935003b069532d5bf880af7.root': 200210L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_4_843028e877487df3d3effd977c966176f32e96f1113634ccf713c86e.root': 73402L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_32_57bc67ff4d2ce35d501553a7a04469b0cbfe087d4f83e7f6598fcf9b.root': 283235L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_5_2cfc4c7f964083c727a5db7a5501c1dd76628acf6db5406d5ca981c7.root': 659617L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_51_80ccc0f2818fe6d11cdfa6d9eec861122ece59164636f8e2d5b04a26.root': 102140L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_21_e85f08269e812d869b532e595fa73c352a6fd52918609324a748352f.root': 371803L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_4_a9cbd6eddbe3afeccf2d1c01cc7a8d273c34a8175b5dddda4326178e.root': 302336L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_68_72107a61af2e4a64b648bfe08cbf0ed9dc2bad2947876e2bc8a0c7dd.root': 139785L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_16_8980b986f5a06763711718834f3c187a85bb689200ef93c45e60015a.root': 471437L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_53_5862c1c777a5b3c8bec4bba611524c2a483562cc1f0806ba69730be6.root': 106549L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_62_a13baf6715f5c010db5f02180fa6b35e543a2d40514e4936ccf8845f.root': 903238L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_8_c9bbc0bef2168a9e6bdc83f7ab1e7e24691ab4285203ab93bda289af.root': 225371L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_1_c59dd914420d82fbeb42832ea3e034ab727ff945be654f92cb9e6f73.root': 341656L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_55_6d03ac377e0ed877c18cdd8068a37eeac42b041065b4b76c9a98419e.root': 676814L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_51_509e2ca74acd67c236ee82f73ba3c318f248d8eec930c7c7a2f16783.root': 332536L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_20_330313ef8b9d99e8aae6b29f80f0659847dc034a92ca70a4a529cbc3.root': 183249L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_19_ee7cb1358b1416713ab8b84974d1bbf12c42f5bc31bc81fc3adde2e2.root': 252384L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_42_5e4deb6377df311728d12c4e809bdcbd6d30a1b93879fded99ee9be4.root': 79656L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_25_4dbbb245b189446d2af179abf4537e3b9cd56452bd5956ff18795934.root': 381683L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_20_1e4e6a290f0eec9f1f911b4855ec74a30827301f01c866979abc7034.root': 25658L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_15_8b98d632c6fcbb301c3292b51457f0a20394cc3f63036aacd4cfdbef.root': 754638L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_21_617914fdb461462217c5afe4167c642b1632bce49666990d84ef823d.root': 774201L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_65_3978a66388c830dcfddf36febcf59ea6ba6d36016b62fcdbff2d1766.root': 133537L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_57_9dc7f42651da6e0d8f30f629bd7ba1cb16105d6f30b0d94208183268.root': 884515L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_3_fc79e8b98d78d133035bbd1dab0fcd86a40f1941b08cc1d084153437.root': 276243L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_31_b647dceb38891497dd4a940aa936d82d067f2501c619badc2325998e.root': 53000L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_17_671c8e0b361daad2e2229b43d3a6a477f05ebbf89c257ffa2cf74d67.root': 760127L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_72_f98ce2a5975d609846fa27fc7a0011969b217b4742e021361d798e41.root': 726807L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_46_2978d466feb40b3db92d81cb41fe5e51561a9abff06473b852af782a.root': 848194L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_9_8464ca57ef6229d7557b0b5a78a710f2ff0e5c9766b72f214564a5f7.root': 449015L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_61_9caefd84295b73feff33a6621bd19b7e1db69260739bf7acbda71b14.root': 697033L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_17_f2cf4abc61e697c5c12247b14e399fe27f368b8caa9c482990aa2545.root': 359007L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_13_38461da61f5c7f1173d1ba13e80af0381c1af9e19bbfde6057640693.root': 8070L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_34_f9c3ae29ff640823fecfb785b21e59a88ec0d0c2c1a3a05f49f2a424.root': 213657L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_3_df02f7ea720abe2e3a1ce2633e579c6675166cf52e899edd32b00e51.root': 202684L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_24_b888288cae52cb8607ea7305fb2754cced154f042434994175ba6451.root': 191994L}, 'WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_36_4d6ab2b7c7dc5947c254e5af575270c8e9f84e9c366487c0524b0ec9.root': 24551L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_3_75416bb5bec7cdbbdbdf60a5861de29dcbc5b9bb129cad5561f75315.root': 5280L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_12_544eb11d16fd27e965ab3939f6ee560adc3ddf5a62de053b7e88984e.root': 1127L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_5_bc241948f3c7d707cfdd7003bda0e47757f7f3728c208cc3b9b1aa03.root': 6138L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_7_f983a20112ee48be0a5777e7030fb8166e56222ac8480a851c3b5c65.root': 26801L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_29_9f8a505a254731743e456b0936d2b0c43a0afbcd9316772500dd9481.root': 20941L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_16_e7802bc4be91ee1ad57df576df6645d72d2a301f6998a382d3dab8c9.root': 2907L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_22_92ba8a3c2855854a3cdca7e1552824be6540ac6b928193545fae9c41.root': 16102L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_19_4c65dbf8576d2096222ade9f52827fe313a4aaa163a4140b3e491191.root': 13233L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_25_9e07f1f10d77757ba7997eba8bcdbbe959472da8bbb752468e270535.root': 18204L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_10_ffc0d91b5463f90b5e8f42fbcf81322cabc69d4d12c7adcac9481774.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_23_82ba02dedf5585200105657feac023c64d8a029dff800f044f387687.root': 16873L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_17_da9d6160d93258a19d050d5162e6127df8aff60d3415950d0dbcea4a.root': 12469L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_11_c29f01aadff4aa84a610979f3425a5e6d9ba3a6e7eb78a4a9faab039.root': 10304L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_8_92db9fee0d1a4567128721684a163f43b5a5348dc5af529401fc1843.root': 26824L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_1_49c962be49442003f331830071ccf1cc76ed1985fabafec0bedf5757.root': 9242L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_2_981685b98435c553452526dd9cb8db50e4228dadc529b66f45cd2902.root': 4566L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_24_1860422e336cd345a8081a5bb3696cea983c6641dc23e0630dbc3f9e.root': 17531L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_14_dc45794608b0152a54d1eb52aa71c14f6f6598e7f42616a223bf500f.root': 2039L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_13_1a7aaf03ae64261e994cb65716aa99d5e268284745d448a613f1b38a.root': 11099L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_2_a59b2d6dbc0515c2511a384e2d4f974b27a7b96a794229265f57024a.root': 14012L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_1_1c08a244074dc05e8b233799ceca774a75b3d03b37481ff3997fcce3.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_5_674a97ac6c514e1a37c3a0dc4dd2e57e68e5c03741f3e65e05485ee6.root': 25508L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_4_4b264ed05077d83cfe104263b32cd7b84544541e6f0f79f23fac9d37.root': 5715L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_21_05ed3bdcea11f4f088c5a7f0790a6caa655c4f6f669f3453b64acc19.root': 15445L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_28_02052eaddc14f5aa3a9652a3179d03ac39d9742ba10220e207f70974.root': 20307L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_27_ec5990b45d45b40f696468028483e3407f44a962d0c265f7e25a99c5.root': 19771L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_3_53ac432d384ab206fdd726a4157d88bc0e0d8dbcc903d0f393b9484a.root': 20966L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_13_4f57b18dd363077be66f3a6cf9ea8ba0466b168748ce204bc5a483fe.root': 1616L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_15_9f9308074723013ab8481e74e4c729a42db94bdb7848c24398e72f83.root': 11340L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_20_3e3377cba271853f5837340c312dead9ada1c8ab912e5ab51084c8fa.root': 14736L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_18_c5c211f071ea6173c306031f9cd6be409ff7d8f7b0afc92626050e2b.root': 3397L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_12_30fc66238b9629db6e7af09ecf9144e12ac5948eeb50333cb1d01743.root': 10679L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_18_cd53622ad5883dcdd91af4b17841cdefc3cb51ec829b12577f88938e.root': 12807L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_14_33e242879e0c08eda9a794ee3b74799d5ede98e6502b7a1a60f4e442.root': 11157L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_20_5804b11c9cf9d9289b79465645a03551c153c92b05e5b8902ab50eb2.root': 5241L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_8_deb1484ba38b23f800ccb4d9376352229b87f0b08c67b909187cbeb5.root': 8053L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_26_09fe39fcc8166cecf063a746c790003c2f3b3c8b5515e8cf6c655460.root': 18982L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_31_3574dbedc0b64ecb6e8505eca3a6c4519ac263252d51955faac0de9d.root': 22184L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_9_d131cf56e21fd99ace1036eb86007d6981a27fb13a85e26131f76f46.root': 27303L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_11_aff05db59fbf2558baf882204a764d679dd9bb31c4c744e54050c869.root': 474L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_10_0af07cb55ae98bf60b95cdb22a964c5d535e5df58b0bd26cb6b5e0d2.root': 9877L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_35_164ccb5c17dbee7ed2126670a98ddbb692ca4d3d3b2f60adb8898b7f.root': 24134L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_9_db01e108ceca029cb4adfb2cb9ed11e62d6ea7592c5973fe1932bf49.root': 8592L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_15_cd904f4784a3b609752d64e889d569bf443f10ba093c6862b39bb4ac.root': 2522L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_30_a1a9b12c2f3463152a40d171f5c7f7f499f45bbfdf4cda26e274e66c.root': 21534L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_6_bc6796553d685d329f22d25ca399b476e38c8fe1ef7cdc56fe1de926.root': 26059L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_7_5414e5555e3c9bc6cc729379c8b01b4ed1a95895f08e2bd668c01758.root': 7530L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_16_348cc5fbae55bbab1e2dc56562837a3e3a68bd5f8c6b9e728d0a290b.root': 11892L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_34_59dd3b51da5915e3678dad406bcbea6561ab1464f843f68728b98176.root': 23658L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_19_30626b7699ba155b19965009f98eac47d827f834f530a466d2e47ddb.root': 3830L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_4_1ac02a011e997e50d33f39e05bc68fd6fdee7f2aee34f89eb5bcc883.root': 24976L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_33_ef24f522da7dd147f94c08f3db0a44695bf2434af80ffc3a4cc9d306.root': 23492L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_6_cf4e50a2c08496e1e814f3825d02851dceae8b359205ca83aef7e66f.root': 6754L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_17_e7d1ed63a6dd4ae57ef338fd3c7651aeca1faffe2c1be2ec9ee75390.root': 3027L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_32_c21d491eff13bed8139cad12af66e7dc46730cfc205c7a9d8afd142f.root': 22974L}, 'TT_TuneCUETP8M2T4_13TeV-powheg-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_32_c43de81029d05ee53a7ceabb8369279fed719b54b9d3621491c61d6e.root': 793918L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_51_32699267fd27ffdebe6c45c4037c5e1b8e026879f7309b895b5e511a.root': 1509516L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_36_84ece45ede9ee9b4b9ea646e33b5257514b4e1fe329dc4fc62495534.root': 926908L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_47_84c1c06ec52438152eea67a052bb34e499664fdb35c7656199f053db.root': 1341379L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_58_8950300f87600e87589346ee823efd3d4b6341d482d829a9f857f11a.root': 1770898L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_35_e51ffa0cbb281ba21de0cd92431ce388da131669f590737a682f3bf4.root': 882710L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_49_b0cd4cd1f7b17bf3fc2a0c0d73bc9ed31d48b524a5a882c1ed6bdf72.root': 1415206L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_17_f8ce8a19fcf704c564c3659569383646550cfae2457def11e6e19f63.root': 245835L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_5_eec429fab69a4d113398c5936f40c2b6ab145cc02f15a82cecc6e56e.root': 1459154L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_41_a65c8eb32fbad2f1851881ef51d6d139ef75a1c91cafa9f793224482.root': 1144391L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_37_700d9e0ff1e31135ce53891c69c357297726764ee0d4fe052fc18ee0.root': 955965L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_20_ea2d51720c74a3158cf1aad3a0cd95d0ddc716b21ab25bf98f347fd9.root': 361575L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_38_0b02f2b5dcbfc69e1f03b937bfd2b3ddfcebdd52452c9c9e64674d8c.root': 986293L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_23_4e631e13e8752a1c83f30475686e001643e5188b5a2f8e649cf536c3.root': 468659L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_44_87eef0d48259175e197c109adee55bd4e32d03ea6a25134a36288dd2.root': 1246907L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_50_19de1c9098dd1be250fd00718dee14abf7a0eadd1fa7256703f26148.root': 1486159L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_57_8afaae24eec2146efe16bd31b15e31968fed1184ad61dd6ea991603a.root': 1733438L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_10_f3c09cc7fe88e982a27bd62a4b7411b39aa4ad2d6e9cf8c8abbbe9fd.root': 22564L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_2_aa6ef90b56921919bea0de4084175e86a56984359eed3338383642d1.root': 334849L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_67_0152b48299b0a94eff4c61e375154dd17b8e52504ad8ed8740b9359b.root': 2028801L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_34_55230d70eb08849b020375695dba43c518f2c87e5e1cba01de65e6fc.root': 856449L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_68_3d6437836b0b93d4a7277f59a6d0f3687b78cfffa276c4b955028b6c.root': 2051245L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_60_acf81e7818087e8024737d1316191b7349e0e0656f649ef5017312e1.root': 1843922L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_69_71338c3fa7242f3aa9c97702aab2829551907cdfc964754c20638775.root': 2075866L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_54_e0cd7e9794f1d7d8b5bad20ffc11109de9fa02b1a45cb773c6386b65.root': 1635122L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_22_738b340ae878839d9c629cb6b77dd622c634845ef8bb946b8381141d.root': 429778L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_42_de9113f4b115c5c1372c0575ee2c75319c0b271ab8f057ad97e321d4.root': 1175770L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_29_33385a8bdb4e86cc4fd8382ded047dbe5e98c594dfcd3acfaf579078.root': 680980L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_45_aa109855a03ec045bc091c68b6880dad96bc9c1f520c1341883df424.root': 1283678L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_40_bf878d2eb4827042b2986046510e7be9ca0e5c01144db0e21d2ee003.root': 1099823L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_63_b99c58570a39da5dc244d9f7b45df9344fa87d65e170e082bad38945.root': 1918985L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_48_83ef2303a7d2ff930e6889f66ead137bb96d050367f7b1cfdf225f71.root': 1385561L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_21_972ea3e98c0ed7f7ecb3ba4c8e674dc0602b41ad8e9996a0f127c4a7.root': 405824L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_56_7c6601b57e845a6da57f0d81a3eddd329c8496aca2936b135c2e995b.root': 1704461L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_12_13a89d712f7fdb735117e326ec7985cd03cef9236470a08a03e532e6.root': 77320L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_30_becb479b3496e00b89b533ed3a02ffb2883652ee3f7989339363df52.root': 748719L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_13_664e9175dbab69233a2a3232d32d5da8633bafb69701c9c2d19c5c6f.root': 106498L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_52_ca71877d2ed468b4a82ca6913b1fc2f92c43dcb68465ca6864fbb992.root': 1546881L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_27_3d7a42604ea974e31d1e057cf026fd58320a7b21d31163f34b5c8e6a.root': 625844L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_61_bae562b53a32f60590d16b08cd7037ab1d29bb8ddf3326e307004b42.root': 1867251L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_64_0f0d72e24ce3fa71472ab04561d6c09be8bb6cdbe5379da14ec21e32.root': 1951066L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_16_1a299bc3926eb64acf508421b8c89c191892fd356b0a7ff6df941cc3.root': 205845L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_11_468f9a159e68745c6c241e974173285a961619deae4103ab37e02aee.root': 46348L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_71_d177ab687caba881dca8272da33d6818e1541584f312cc38051631a1.root': 2130370L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_6_f61e5f72269a7175d150289f3cf7272f77ffeaf72f76679eb3fdb270.root': 1818513L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_24_2396b1c08405f42d21659d738f877f8413b8cff506c95b6a29c2d696.root': 512615L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_46_7d2c3d11fec19ab69d26019aa0ae802ba3f938be28cbc64c9ce066cc.root': 1317052L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_72_aeb642c56142ea485b377c81c8a1c13fc6ec1a002b91a3f83484deda.root': 2132820L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_65_92a9f169a6578ebba6a63a2c8dcb847a53f3707b6b21adf0fcde84ad.root': 1978676L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_26_3e8f3f4632edf0bc27dd6c6a8c3ee64e211f3b82c03028bbeb380239.root': 582021L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_19_65665f57845a4a865fb05c3e49b429c827e5a75b5fd75b3e97271456.root': 308905L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_9_58188ea11e789401add01838f1c14146f478825c3767e6f51633bb77.root': 2157549L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_70_48007f0bcb9d63efa37de55321ec4fc1ca9b40b02882fc75cdcb3073.root': 2127925L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_25_365db20af6fbc4a90669e998ee8c252c8dee83045573d331acd6360c.root': 537939L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_4_3930e94928053736c31df87a454a2a82deaf13c3e75780fc1329f664.root': 1074687L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_18_5fd8b060a2ba9105ef722da599bd8cbe891ecf500b87311b31e2d0ed.root': 282275L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_3_73b257cd1dc1aec53b298f6342d719603d46c8547093bbce9e9ba3fd.root': 725430L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_33_070c02d8a3551e294c1f56fd6b1d8ed9da84638bea1cfa70643f5cf2.root': 823348L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_15_dac70b2378ffcc8c199c57019c1b55fec22f0c9d9585516af49fae68.root': 161542L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_43_0392e41cf55af638647fe83295dd4d3fcccb5147ff1f85b9f1de5b16.root': 1219939L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_53_6209ab23936ace39502a5989a7d4b94c9209bbe93c62a4df1cdaa668.root': 1591110L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_8_8c8426cace8756c9668456467f37bc89befbc21fb09483e52324dd60.root': 2133136L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_1_9745b9f4b9e007084017a5367ccd78d29493103d18e304762439e7a2.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_55_4e436a4b58d3ed3bcf0e1dd1b13c8d823b1555e8ae63f47b545a5230.root': 1679056L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_66_10a891caae7230cdfb83efb75bceb8dffbb5007440ed6d825458b5f2.root': 2002672L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_14_80747f6ca42a92a1da062225e75a9fa302cf4d564573b6071daf6296.root': 134039L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_39_0240482ed8df45bd22933f496a64b3afa2dab7c2948fbebc306660f5.root': 1030381L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_62_2f0e7015f0f8a0e67bbcc69ce6f8493a0e3c986e64674f11b0780b48.root': 1895663L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_31_08e2c969f34956f01710b5b0d665cd99aedef1ac91c7b38ad7cc3893.root': 775585L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_7_fc2f0a545a2db8d3bfe58edd2487ca5ed337e1a3413b8b4ec514533a.root': 2098236L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_59_84fb10521b3c08427f43c80cbf24bc4eeddf1ef4ec5b38feaf7a0ddd.root': 1795410L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_28_db8fc7fbd7acccd2538b2d1a3f6fd3c1d8ab7b863ec4aa39fec37a1b.root': 648131L}, 'ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB85_190607_054014_0000_1_f26ebf1b022816fb88d0b43617f563bbd8d45d9e823be8a72f74b5ff.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_1_6072d9b3310dd162d3bf2193102ac55e3fe26dcc5fddac6fae505b12.root': 38L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_10_14d62ceb70ac2e2f477d432bfc1427be7666957e3c8652a0d74b4c8b.root': 44L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_2_c7c038e6257b73dbf757562356e1285b581e95e2345a73c804ab4979.root': 55L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_7_402cfcb5a71af52447a01db08d51259eebf9acc047aa42a3aa7fa71c.root': 94L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB86_190607_054105_0000_2_5ce035eef8b26f0b04c2cd9f842bfe1b44b6cc57bd1b659283b75415.root': 16L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB86_190607_054105_0000_3_28108f6b0054346b60ac75a0bb858f27825e374fa137bc6370374681.root': 21L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB86_190607_054105_0000_4_bccf5ce0dea01557faef3b5d936adfb6d2ba35ae129752e97678ab5b.root': 30L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_4_b27146bd949193254e69623c86763ef3be1ee615c0456ba8ab571e1f.root': 71L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_5_822cfc677efa66bf4da276dfce50227a1db347a84b630d16d70da0ec.root': 79L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB85_190607_054014_0000_2_aa0d04e48bfecab14fcdf936f618d4156e9acdb74f5fcc2788fe3cef.root': 11L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB86_190607_054105_0000_1_4866f39f3db45fd02d376ceaca16511a3ea3130025b5956c668236cc.root': 11L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_9_ddf7e09957ebca1333043315a2bcbe3975f45d03e58f00fc8ef9d3cd.root': 105L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_6_98810079fa4184bd3705e9808665e067d67a751e2cc0a136657fe4cf.root': 86L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_8_dec67224732adfaef38677c1f706d83f671737998cdc6bc6ce2bfd3b.root': 99L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_3_617b0af74e607fe48f6e71d2728a3254c08097cfab47377eb0365f55.root': 62L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/Feb20/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_11_dbda9ce4d1748e47154aee8d1427e2a37367d887c483cf0b95f75495.root': 53L}} \ No newline at end of file +{'WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_2_4fed1ad070c8d6700782fdccaa88b260af5b979908a20b1b3872ad4e.root': 59858L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_5_69ed48716128bb69855a0df09a0c9fd7f62f8b034a941790b40e7628.root': 89664L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_1_2297a171dca388374479109f72227c75ea4504f7d03679df75e29ba0.root': 49851L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_2_81d86dff59c75bb2d615efc87ea961ff23cd1974cd585456c0d56ffe.root': 10014L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_4_b151668b210a36e10fcf95766aec18b672b1ca93718fd9650568c72c.root': 29880L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_3_f39b1a7e6b19108158a1dab16d6cc7ba6f6b11c7a43494f3ce455cdd.root': 19904L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_5_cce185cd536619fc069319b09fcc9ab5272a4f97d9f16d9975d81c3a.root': 37471L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_8_94ab1960aacfe6b658ba463d0aaed78413e5fc3a6214e4ca22057dfe.root': 117964L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_6_245eaf27d2db6caaf2d7183d03f683a905d4400407c2b4283544281a.root': 47398L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_4_ba8b00fc25e0199db465d8c1b1ec364c7ec3b305eb8165240c529aff.root': 79679L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_3_d09146b0688f6c5f45e4d47b61ada2396cc79ab0eab700d3ccb71b5a.root': 69758L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_6_39ed70afe620c623ab432a8ccdd7b8daeed6d8acd42b5574e821ef32.root': 99595L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_7_d384b65ee9bce463ab24eed9ea7252cb803814636f5839d5dc99b00d.root': 108187L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_1_5703ea0985fffe6031512fc73068adab2dc3e1cf90f37774266f6bd3.root': 0}, 'ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213326_0000_1_fd4c805670bae0e9c48f1a1372fd797efdc0a5f5b2245728bd87b842.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213326_0000_4_0b8d8d3f90a73743ecda13fc2e1f41c1cb5f094326c0ab5d7e35ad2a.root': 43L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213326_0000_2_7023135e9d95ea61207e1e762e7f8c276392a5fc3049cd9178f5a19a.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213326_0000_3_754e4352422617dd448bda021f6ced2fa9fbde2bf46fa7e7e0b92526.root': 40L}, 'ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_7_6bcf9287f8c3f5b6e5d0117035797c0b9f11ae813b6bba35dff7c6a7.root': 161833L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_1_7a23df555b6b9c2bb5122a03bbb9074d915ab13f38d03294ab93b3ee.root': 68431L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_17_2b399af008288719eb99bcc22b9596cd8ba663f49d6bbd8f6788f89b.root': 47076L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_25_afde4bedf79491c9b119642ddfba1470382bc14565c491893b2c2b8e.root': 105073L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_8_a25b65e5bc633bdea490cfc20d537d0ae62282bcc0675d49db56ba45.root': 168716L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_23_990db23757085eb1ed027894f8f5a8496c62c2dafaa462ad3c8c07ba.root': 91339L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_24_298070d06c5f2a42933222df0b9f850a51ee1e0998156d920c5c0a71.root': 96677L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_6_ff47515da767a7237fe5871c6915e4f055feff6c3c7e6a857fd5c298.root': 153264L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_4_4c79ecbd89ce843c7b123d9dd65de6cf2a3cb11acbecf6c7c4f71c7f.root': 140178L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_15_536ef1861670ecdbc094d8e13f545b11cb1e0ecda4e98282910e6357.root': 30773L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_10_84de7463877e81227fa2cc53556b85ba3ca301188e740724a025cc9a.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_13_7fefb1c9cf4cb8b4ac51bcc394ffd8f2e4ba0ed3ad1f00f82aacb2f3.root': 20084L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_19_2e926d5dfe9a9f65691e3b43a533d75f9be6ee5fbecb3469acfb4b83.root': 59979L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_18_e87784187e4bc9f6e88f8b46d7850985e94ac9af7f9358723acc7f54.root': 55443L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_11_369b9dd4a437c449a2c14f2e244ee1ca2133f34af2892a821c6b605c.root': 4090L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_2_7e63633bd4f37a3b46ea9662ab164745d725b5f3c97d1bb29e4e6309.root': 126341L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_16_1334d7799c7e9a3fac4307851a622e720a1f8ff0caff42322703eb72.root': 39214L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_22_0bc75b37b0f149c6bafd3c13595efd484043857a33969260e76976d3.root': 83158L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_5_012a89bf4807ff81aba3a68725608d8f45e9f620533e50b93e394530.root': 145152L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_12_94bf14ca0fec2b78d49da1053287b43104394927730452fd3ddaf0b8.root': 12450L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_3_7a2bdf3b7de543f63d40b52eebe357840986015c418671e8f6261d31.root': 132963L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_27_591f4a98c1ae36fe4cd86e301ca183c24d8a81d90cf555fb406f2283.root': 117951L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_9_52ff02a99df9011b089bf9cadb3478ffaa3edcb1a08ff994a9393fa4.root': 177019L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_26_bc29161c0491a4b503ab35b6758b683e512593825c0fc77c3bfe1556.root': 109503L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_14_672f8086dc50fb0029dc4f02df56aca1adb50c00034b56118ec64d14.root': 22373L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_20_887baa35015d03ef587660a31350515ad92dbb75b009afe92dd284a3.root': 68557L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_21_97bd350cb9805a47aab8f76e9f4dae4eb8b847aba7fe698c46fec162.root': 77039L}, 'WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211751_0000_2_237fc0b7f3aaa552963180ee57ac03ccd1f8ad883272696f4f8ae3d0.root': 6367L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211751_0000_4_3a1b5c4916031871cdb7be909d66aab361ce0218d5a1e6988d784b22.root': 253758L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211751_0000_6_6737001beecabbae39e1da3adb82e4a47cf76efeb4552966e7b55220.root': 543796L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211751_0000_5_8eccd76e2d5b31bafae6dffc820baa8b27a7030440ebce951dfe3c97.root': 350527L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211751_0000_1_7affea7e73147774ba9bdf6b3c1d67f9f7a4c8d68c06bc2beeda92e3.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211751_0000_7_51ff908419b6693fbae29781da34817ae04f6659ba85e35548d39c35.root': 601852L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211751_0000_8_3cd007bfc1d304b809c2cc37d5b409379312ad5addc2fb37b012e087.root': 808137L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211751_0000_3_97a4b6beba0ef901cee14b2efd513df923aafcc734e02b909b8586c0.root': 95983L}, 'DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210344_0000_6_50b723c3d902b438d948b131144418ba6e2b58f14bebf8fa1682fe49.root': 125025L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210344_0000_2_b5bf65130886e798f4420c596f0672a3be1d4312bdf9d3bf7eca5847.root': 87018L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_7_5d7aacfbfdedac486d4c55aeb7717fd961f201d763c22ffce55bc9f0.root': 79977L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210344_0000_4_ec3fc34495e3ec3280c7828e2b83677a1c2449ec690ac1ad0b99f880.root': 103838L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_6_ffd6252191f23d603a3a28301690f2046188e981aa3e221baac33fe0.root': 56187L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210344_0000_1_02264589f0a5d3d0a92745868847023a90a4c165f95d7ad88b495d2f.root': 86997L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_1_995e2e9a6e1bc1b68075980eb8e895f52cf8f73f2506849e3ed90962.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_5_c715c6e822f84fd191d510c7e2c995d3796d085202c3d73d5f0018b7.root': 27620L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_2_8802ac19928cd2d5794b527d7b2899779122fdcc7a2c1c6698b0912c.root': 72L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_4_c999f19905aa2d7e9c6cffc6e6bac01ace1a6cef80b000d2721c216d.root': 5821L}, 'WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_13_45cdc6c5c9e17fae76e93c0b7b11492cca1403b1639b0b4abcb9e527.root': 97754L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_9_fc037da09fb16828e56d76e429cc48ece6745793c98e07a736988793.root': 79575L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_5_642ceed03b6f61173fd5848f2e89d64dfaa446331a212348e74e4905.root': 205555L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_3_f411a10929ac9ed284af9a97e251244e86d267c2ebc0ac2f48e58950.root': 199142L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_27_19da015892e2e4d8924b817305ffa3cbfdd9d7cc2f5b03ce0b8a4c54.root': 158234L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_5_1e0a009f95712c711787974319722e0cb44b8a73d0aa5b9cd18601ea.root': 61103L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_21_162c18755901325e173ec94f9687854d952793eba2565d1998206388.root': 134965L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_23_e5a9f51b6d8df005edfedfa0c06b967c4f5c033b878b1dc9f15ea8ce.root': 143843L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_12_363fcc6ff2b7aca3a1cf23c74e37942bbeeba35f890e28285c0e8d91.root': 93657L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_13_f066e111a8ddea976865e7a4de33c221941021cfd3af8630a4586c1e.root': 16507L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_8_80c6e3375039f15c64281277ecb16f747afda3dcb94253685d25d913.root': 214371L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_2_dd9d773bf8307e2385f503d27094df42008b42d1e78b5b7df85a9da8.root': 48593L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_19_c0e7263d7b100af324938bce8ae659c3f93d34f2222d8a016ef1e7c3.root': 124791L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_2_86c9888d8907c1022086c7dc75a75fdbe425258ec995a65187aaae31.root': 198074L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_17_09549b25b1774b5ee5a08fc75a5426df6bb10d237dda845357f5e191.root': 35437L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_18_77c33d117108643be369cff59815229ac6c884e053db2f0f42a5d617.root': 39227L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_4_4b36f4184ddb8ee3ae488e5555a6771643df4addf07fa709d941b1ac.root': 202683L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_14_0cbce65fbaea2fadfa6374f04f9f7b934f6ae522dfbbcf89a1930505.root': 19515L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_7_dfbd27fb75e9e7f70817643cc01b7a7e17107826afd19e613f3c1104.root': 211539L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_20_7742a1200de409bc4976c653e006dabb2bc4aa108e8cf72dad6a46b2.root': 130095L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_6_8331abbf7be15ec62365921ca1b6ea4e0b88830b92a1302537c2658c.root': 181606L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_16_a97f5d4e9366c5b616183f7d2eb8d0ecb9f7935d8dc33aea3d93229c.root': 29886L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_4_dfa005f30f8f7ca334fbb115563183c4f4a3fd29880a4b380a5caa30.root': 59773L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_8_02cf444dbdd80dfe482f862f05efd4e7a2a2354a828664eb64b16395.root': 76666L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_1_cf6f6b1a4a7a3be80c42f1c9975642d1ccd8dff74429a09605b3fb67.root': 129859L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_22_104ab16b8d8e9afc9631304b2914842968066be032f48b33a92752f8.root': 140441L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_10_913ee14aaebceae4768395a94fdfc1bb2b0532fb664e9357716e13dd.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_17_87a2a8b081bf9d31015d2b464e05a28de66e9e4496a8c9f8a9309ae0.root': 115870L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_11_56e1e4b8a410f0cddf03f34a4257adc11e098ffc06f5140a805b7bfd.root': 90125L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_29_78c6114a2f1e5b08532633742f3a5d336955a61b08cd3b688747b5bb.root': 160497L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_11_a24241db62f4e4026c9c1df8f6d703cafb3df631ff548bbbb96f5d7b.root': 5599L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_4_4d7ecc169b13e56f24894406d9c793edcd5fd650355fe4ed5ce808bd.root': 171383L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_25_e83e58baecfb8b733567592207a083b8763b4453373808da8b328001.root': 150360L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_31_ccae5be5dfd9b9a45fe23bf411a8d47d1e0d1579951558aac41206f3.root': 166773L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_5_fc38df7ef22610b5dc171a68b55d8212f1252f139eea6fc9d8a2369c.root': 176826L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_9_74d53e9272a5905eb55d6e1e52c097e41b08b1870e54d4496ed03f4e.root': 191848L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_26_e86fdb8ece0f41b67fec416e7d8324cf02892a6b0fd9353cf0c6a1d2.root': 154629L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_2_7fe63e57be4268786b1fa2f3ace82cabfd16ef26e66ca70752899df1.root': 163448L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_19_32e3a90d88aa085f2d645d39d0a173533631eda3fea7a384043fa15b.root': 39900L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_16_906e0dc5e9eaf82077afd083dce861732db5e770ce92aa524e0b7192.root': 111752L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_10_312a5500ddb1e2c03a94a9d35a311f1be68e0fc127b59a18cf716a9f.root': 84683L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_30_e0731860c3ff7c6b350a0c409e743f7e99fa59cc0a93a7ade63b6772.root': 163946L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_6_622a8b7cecf2dcf9ddde31cb43cc48c800e6b8c32ec81bbafb341f67.root': 208621L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_24_3fb43d2af42dbe31be7eec0f1775921237891f2376740a6ff4086b15.root': 147452L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_12_30fdc8911cc56f8bf1efab527a64a8352f6d2f3061230de2412ecdd5.root': 10926L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_15_f1023e3b080bd190b05d48b48ddc7cbed8a9a3e8dc44cbc2f5106b58.root': 108854L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_7_a10d068b82e31813ca68a19ac185b21a5d74be8949529356c2bddf28.root': 71504L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_6_d4fa32172fa13429748a6b15e6ff2d5ff165d3158a33bac8e6034dfb.root': 66002L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_15_ecec0c9b31234e6225ee05876d2a83e8415e578fb5a264a6225bc6d7.root': 24636L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_7_d6fa153422bec782a92e00cfb82391e9d4770f3a5992be29d266ce1e.root': 185378L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_3_70274aab22c341157555628e22b2981ec7c01c7243680767edb65b2a.root': 169612L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_1_dc7e7925433735645d4a9eb90fe508e5537310ba87021cb86edf158e.root': 43018L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_3_83da6a1659f06129bd2544d7f536ef73f4aff30c03ff2597c05d2922.root': 54149L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_8_447ae9ca3b1822ac4fc6b62955d7949717014c4c8856b1dac87ef6c5.root': 188464L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_28_96067d128d1a56094601d2658ae2f86a0d4ef09982b1c76863478651.root': 158312L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_1_8f93135d825c756445812d2b176dc43359291cb08c4f42543af638cb.root': 194945L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_18_756f8493d7ddcfd7d93a029e59c92d7717e86e1f2bc9d6a951a1043d.root': 120849L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_14_62ac9ed8d0feaa35ec75a190fe7b1c3e1356b49ec4bfc3d8c037f883.root': 103389L}, 'DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_13_aec24fb38933adccb0a649f2869175b0ccf5d6cf740f9cc1e751461b.root': 89900L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_5_e2af21450fb53020b89213759a6bdb37c369f0e3b90f5f1f7a6c50b8.root': 257466L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_17_960358506f03365c4043c205010a81d438e3d5cce5ea5e75c25d7df7.root': 150124L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_7_73112b203e92a396a34c424c3481759ce097dd3445bb3113748c9be0.root': 317524L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_4_88ef68e50fd39fb5e1876d8541f491531a28f74c12b1f4fed28dc6d5.root': 227551L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_9_f79f198b20686715b74e4c82007da1f5305df58708e637a19274e840.root': 377148L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_6_4e532100bb824535c0d5ae2b6f04344ca9f6cf99e1dd8a9dc3faad5e.root': 287344L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_15_1d0c87bcf52b01eb36158ccf46401f59038ae2c54352af58369a400e.root': 119942L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_2_51b15fe8bf15176c3ce428ae6da8e95ad14982a8efaae38fa5e453b3.root': 167552L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_11_79162c3489f984195ebb89883e37c5e2eb54ece3161a8bf3df7d53d4.root': 29886L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_12_3b8150589bc5eff128088b8262e53c4faf2cdcac3d73e0cf74c1107f.root': 60096L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_8_07b84620036e3ecd38f2b201fecbe807599fb69fac4da431204362ee.root': 347253L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_3_21cdf90d67d82fda90845aad48a0aedb8e4d19f8f72b0edfa55daacf.root': 197824L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_10_76a244bb84365429d5df77e2f3943cdec9bb2bf19dfc04b8d4a4b04b.root': 0}, 'DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_201019_084707_0000_2_3fc17baf737ac35064dd253682c637aec31a759c5d8283437f18af28.root': 36011L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_201019_084707_0000_5_bcbde726a19a940e4e19edc6d8ce9c6316cfc1384062688355137d36.root': 143125L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_201019_084707_0000_6_223814a9b3c1f61984cf5063daac7420e6796fce2bdc71bfed20e341.root': 178966L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_201019_084707_0000_4_1b3db71b3e0746a9d1f41a10e24fe037f67cf764e72ab5a8c2159d9a.root': 107564L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_201019_084707_0000_1_53168a86f285b6eaaafa5952fa207258c8094e4e292ec533265df8a1.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_201019_084707_0000_3_f0cc259beaffcdcfcdd1be90b0b277335afb53125ed98d711615e164.root': 71673L}, 'WWTo2L2Nu_13TeV-powheg': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WWTo2L2Nu_13TeV-powheg/tree_RunIISummer16NanoAODv4-PUMorio5_200928_100952_0000_3_bc6060ace76e2057dd693cdf9c77ff2c6d2a46d9db88f309d2aa54eb.root': 4954L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WWTo2L2Nu_13TeV-powheg/tree_RunIISummer16NanoAODv4-PUMorio5_200928_100952_0000_1_344393547adb850fb6f222093541a47f198fe351d34934d8a6b785da.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WWTo2L2Nu_13TeV-powheg/tree_RunIISummer16NanoAODv4-PUMorio5_200928_100952_0000_2_836815f1c670bb4a3da600ae2a41dd881610b393b2f6613fbbac20bd.root': 1727L}, 'DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_200928_125139_0000_3_9370acfd5ac1850be2741333016e9d20cec58a014f800d00bbcec9d7.root': 22754L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_200928_125139_0000_2_5bcfcca6e13fa33ce966bed71f252828dc86bfcc33032516a1a67d5c.root': 13255L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio10_200928_125214_0000_2_57a1d3cab7adc4ce700e9013d90e0868cc5194624efb04edf13fd523.root': 2432L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_200928_125139_0000_1_9fe7f821448e6dcc42001151b03748b094f08546b1e2d5497e2fbe3e.root': 7818L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio10_200928_125214_0000_1_8190ca2fdcc9a6c5f68352ddff5c33bc68ff3d49d990735e832ef31e.root': 0}, 'WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_38_8b3301d659684fc834c81d336cb84dd4095599e88e5ee2f09d8bd291.root': 120682L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_35_25c1383059ca18791cf880c1f2abad9d5454a231d2f9bcb9a64f7e3c.root': 108740L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_9_45c249225587658c5e9996180af5efad20e3791996f89784fa09c553.root': 173152L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_29_cc99947fbfa32f406946cd8b0c174e336d839d4ac17cdb4821285110.root': 80393L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_8_ec74fe20d0f57ccdc4a435e59f2d38413a99c2d2960f3a52073c7d65.root': 169037L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_31_d058e651c28e0f100e11ca11789366dde92511a90b6239413e2be52d.root': 92515L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_24_1399fed281da4d8e3c5c4fa0cbaf5f6144ca2fedd5c5fce1af20e2af.root': 60417L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_41_34534ad6ec1fb1b08f6e5a085fa148e20acf243221b05bfea3df78e4.root': 132537L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_7_aa638651f95d98155d3a7296cd10e494e068dc1abf48ce95dc83af10.root': 165212L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_37_67a7534988fde28d1d4e97fb826eb62dd17f6a040ab5a211a964f860.root': 116566L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_14_dd3402a32d4143c8edc7c4e39bb672a136d5297feb5d6f3db54fe90b.root': 20295L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_3_9a316a9477af5c6fb90e197e20f5c5bb4dd48207e3df9cedb1d61597.root': 84405L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_28_e16a86ac6b1a23d373d9144b49697bbfa4e7d9249494e6a56cacc9a1.root': 76327L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_19_9fce741a2de89aaf4c26e7ab2d76e747c5e8f5f1b68a5741f04166f7.root': 40478L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_54_e1b802abb6ed4faf027a1870017af8ccad052e8332348a6721dceb1a.root': 160706L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_45_8d27735b7ac76b655b269f191c64803c1dc4196d6356679268d4a9e1.root': 148611L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_43_48123aedc489492d6922ecc94bc13a2eb81861540c89e2342eee0efc.root': 140589L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_22_f858c88813fbcc491c804c8a3576ce80e6d6df4e22961983684c3cb0.root': 52408L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_17_03ed51c7f2183dbdae8cf725a6c845237de6e67a3b10538e48137c87.root': 32456L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_10_cfa2f3ee554b09ad7f48c0a56faf29cc30b734efc7734ea48b64961d.root': 4035L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_46_1b20e4a1c823b980b17a9ca3c6e9e6c055b10d4367e2220b85f56d44.root': 152672L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_36_16fa6292226dcfec02fe7a5aec45186accea8aff0baa8a415b2f6f74.root': 112674L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_18_34d82a2b1f4176da05f0c3bee78122790306fa56380861ac2e6f5e09.root': 36520L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_44_5553c87a2ece5c7ba0e0f9fc649c7cdd49510081f90baec6876387af.root': 144457L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_23_c24e26dfd6833643133fd7aaff821e976c2602c64c37a11ff0381972.root': 56464L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_6_0d84ab25c0bc74594d94503320205620d6d2af19f36c86d2f839b1bd.root': 161092L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_33_de86f4b33069e6ccb84609fd1c32ef3d2e4929accaec37d168591fc7.root': 100762L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_20_ce3d0374abb969deb89f239c3a428f1bb0239ea988d25ea9be987a3f.root': 48416L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_34_b3f650df2d7eec5b75613cce66b41ab32491d1ee8b2e90c078e0a757.root': 104831L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_48_1a19bf19ff3c0ba050a2f4a98ff137e0b6898028e35a39052ba08244.root': 156646L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_39_76b4ae5eff4151b69f439e9a2c7e4a02f213cfeb4d4a22798f24b15b.root': 124677L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_12_235a3a4ad074c34e28d7148e924e15df43df714a5848eb53e424e716.root': 12172L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_42_1ffcb8b8dca968605f1b631620dcfea5da9a9cf5e3f184dcc63bcff2.root': 136552L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_11_6741ea2ec54882268b12b6249d839a7a51fd0083c239242e61bbbc44.root': 8002L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_1_d123a025b37be62f5971c0a572cec4da5e4be4af936c92662b55342b.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_13_cfed6c478028e0e6ec948455d259871cc1c45f8a49d2a5af02d8c7c2.root': 16244L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_16_52ea3b5a5cc43aca80cedb540c5c97c9e7017871b4f7866b9f529881.root': 28395L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_15_05b92b451e5443c87d9b812a0570c4b5ef914821cccb9a518bb802df.root': 24350L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_30_6117f93568c89192c4bd0ec619e102794613df704b2c2db9af7d5f26.root': 88376L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_25_49addb5faf5a341c1e1c0d7a5b08256e2e36799b0ebc0423069628ac.root': 64399L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_27_b17a2ececbb6e5ee9b7d539d5db838daad10d9f125708335c78ab0b6.root': 72378L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_26_3d970ec4ce6067d51d5c3a6b20dd21c04e83072d20160dc66751b8ef.root': 68392L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_40_5509eada530c705de0cfc874fdf7ec1ab09af47bc345e1201caf45d7.root': 128558L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_32_96a48ad5166080b250a054f64129595bb10bca5ace8efd4243178c97.root': 96615L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_2_0a37f1dad53ba38b00dffd44896c6f38120cd45d4bfd83d921af2e5c.root': 44442L}, 'WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_12_d65360165deaaf3cd634610e3a6d81aa6f3629b16fa9af0eba3b5cdd.root': 85458L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_6_7c318d301739a10129eca4bbf67b317a9113db70ad083e30e441f161.root': 452611L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_13_f3a8c29dc4f74dcf8b64461a76afdb3ecc113882790270cb749697cb.root': 115455L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_5_dedfaa6b5be6b3d0239506d37badef4506d3c551cc44367c71dbcea0.root': 427489L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_17_d5c8adc8ef01186c4d74d7d14b7fab9e039748427ffe70c698b2dd84.root': 258304L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_7_f5a6c5d7c63b23b769236494de3509c71527db20d5cc766364b6345e.root': 492379L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_2_1e8dc5ac73d430ce7fb2b1960b8ed1e746fb57afba5fe7f2f53188a9.root': 323235L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_16_a2beaa5a4d37028fa7ee6760c27021ed27c5ff9b84eee06550899b2a.root': 215747L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_3_29ed3d3d80a3f1b10e89d782ba4f7a443873901d1001a29ce38e31bd.root': 362939L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_10_eb07493e825c01e66c9c8592ce330eb21ba9f00f422f4500e37c20ea.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_4_035e8c0eb934d25383a8da98fc85ebea548f5354dd01fa0c6fd8b780.root': 400691L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_1_50871ddcfa285dd48fb0350a6ae37dcfa4dc6bfb68e5cac7d2c4dc4b.root': 301225L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_14_c197454559d43fe1ffecd80543d5cd332ba9ac3702a8ad17c906ea38.root': 149528L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_8_880b7d81c67b42b195dd81527b10dcec33f35ac0f4f30b74af5aadea.root': 535072L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_9_9268e809a234e778d82d1a9b2e4d64f9bd730037a2b94fc81f44f8c5.root': 553365L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_11_05b8cffd88b3aa6576a7fb085da88aea8ce68a5a0b598ccb0155d29b.root': 42613L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_15_7b593288a0d347502c5eab0589a3b27a22c60d096b8b5ca58031f989.root': 192577L}, 'DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_3_c4d4e48d2291c1e601b0301e3fce82cb44ff8510619f2cc15ee33abc.root': 169713L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_6_d8bba51f07000ab26eaabb8540c8e4495b3846b5032c19f979f0a02a.root': 238814L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_12_e062599708d47667acbb658165fe46eedcc9a1c79fa5e5f219ce90a9.root': 46129L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_9_dd16d691361d8a32467acdba3deb24a2024d6721253ef6790d97f856.root': 307497L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_1_b1fbea5f068882cd2a920600c9ccb9d920b979d334298b8f66120c7f.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_16_47a7ae4f03d6afc534b9fab2bbf8f806a21a41cc266576102e1d5f27.root': 92471L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_17_679059d22195049ae2bcdb48c2893abe5e1d20b51949c975afe06dbf.root': 115439L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_8_973a7c3caa9f770f2783c49ceabd9f32765c642f2b27bbb78c8398f5.root': 284540L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_13_78536756105657f448b349fab6831cf31f76f26c64b56cf06ab592d0.root': 69281L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_18_583abff3153a8f3c573e48e6cb2cf9557822a13f593a7dff08f1aa2c.root': 138347L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_7_53b0fa871fa449d389b5bf4b49f87262f62bbd4d11bf2230012e3281.root': 261627L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_11_38f0c71d9cc4ef5525f80a50c2ed90ceb33b7b9a820f423f9819fa55.root': 23126L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_4_243ca4d85126909c4eae300ac22122b8d2d2ee3f105013ea1d0c4b65.root': 192811L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_5_c9637400119334a978e02eb5037081d8aeabff0f265d24fbb548cf47.root': 215731L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_2_2156c06949eb67a4ee4bf7572845d28a96fa05af3feb1d3136b77fea.root': 146463L}, 'DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_28_4094824f99c2a18a11a8f535f9500ef8190c34dadbe1bd806f0fa55f.root': 26892L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_48_cab8ca704554ff58a742844ff7ef93e5894d15732bce9b177533d638.root': 38649L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_53_22d311721ab1937e2ec12511f33cd39f9e9dcd90c75ff2bddad1ce75.root': 42103L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_21_1e6dd6abc9dd63028ed19be76dee0284e191559bea4b89cc1a56df6b.root': 5778L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_14_d35f25027517379e1395dfef798b74d01eef420f55a2b0dd3bd85948.root': 19234L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_13_70087c6d17bba152e4f1f565bbdd4962920626ecb04fb3c4993f097c.root': 1995L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_41_455b0d2afcc68d6b572b8b6b3a753b81abe1befa6c19aba12f2de81e.root': 34288L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_30_8bf216e032868800544a4e63972cd3f1fc97eb1c602eaf66d99eada4.root': 10609L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_1_4ab817926851993d24f8a7705de18bafcaf37d51463d3f39312fc17d.root': 22812L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_15_e64422c2f72fa19c87de5e689ecf6db7adb0d98ce795dcaedeaa06a9.root': 19623L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_33_e35ed21567f3f6bd17dc0957d56219e1a57c32f8c92e090279f60789.root': 30159L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_38_684a6bdf5f4bba1470f0e5b534c4d635429887d83de5bb396d387039.root': 32741L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_60_d3aa9e1afda9897b33ae29e6954c9976ee8bf555b833d84e9dfe0c5d.root': 45840L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_58_3fe3fa606aaf326532f8324a0d115249c7ee834c612be126098a049b.root': 45064L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_36_6b911aeb8fad80df4270b9707b2fbf6311cae5a7f033a4d11f37b82f.root': 31727L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_10_42a93afaa37eb8bde4f76378748e2cab39c478a642bcf895592d85f1.root': 17386L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_6_d9688e0f8377e37d7fd31b96471a9f096644b0a64a7d72bf21331a50.root': 49225L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_19_1260e1af10745e4b887a5584c063ae969debe151a41be23334a48b80.root': 22061L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_27_614cf652499f5535b5da944fee7335236c8e2a33eee2df1ccdd077d4.root': 8613L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_4_c63ac7cf84b200a24e81d3c142dada589de8774c55843522122c542c.root': 39598L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_16_936fdc2fb12f5c86ec600a4676385309b48aea9d697fbe62da59c27d.root': 20342L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_7_945591357e8be529b4bad1b2d46850c7c89a1659b6865bf666621df3.root': 15716L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_10_2b811c6b10cc9d20060967548e7cff06c8dbcdd4eddcaaabb51f95e8.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_5_7f86d3cbaba332414c8cd481c8e88442ead90cc5086944cba88dadc8.root': 14451L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_39_979bbcbefdce41765169e5f1f44eb573dc826aa0eab1dc0c8a557cf5.root': 33416L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_27_d89d721aab0fd087dd64739d5b7881f763510187a0bf5fba53ac362c.root': 26155L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_22_d6cab1f853cfb70cef11cb58c4ad9cc76e9932c2dca5da0fb36dbf9e.root': 23993L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_62_5076561ca65a5357f91a8ff037137ab889e65039b2ceb876516361fa.root': 46705L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_56_a4661fb91d6df0ee09494b8951bf290f10a449d50ae2ac3170d6886b.root': 44023L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_32_71cf3a41caf263c96b56efa726f54549d76f48360599d382b5681fa5.root': 29539L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_67_c708d2aedc17a754a27474cfcef979ef259c453b03593eb00c754be1.root': 48778L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_52_136086862d8ea7e644a6dbdc8101b1c2cbaa6aca65b888940cb6009b.root': 41383L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_21_5922b472ab5f723c09b9f232ef79d9fdc271b7c460e5a05362a64bc8.root': 23560L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_54_a6f44b48bb56f16d0197b97be48b8b5ecae63e35f2b887671e6de780.root': 42882L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_63_2c6f50346511c59bb42d5b9d8bb66031fa1c867ff4f7caa8b35add54.root': 46872L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_51_c66e57f50122116c955ed5df929db28e2b1321fe099e2d9455ede95f.root': 41045L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_29_f56db0d673728b4c57655397001296df7fe98b3a3e0a77acdeeb93e8.root': 9639L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_20_01104fda5fcc90e2ae065234e590ffa4947e5d2c7ba30597762261b6.root': 5309L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_12_7e4ce2c49dc19a7e2e09c7ffca21d69b479963a738e812b1480b3dec.root': 1196L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_26_246c06463cb9bdedd25ce8c3deb075ec4d9fdace4c2e3899d8cd2017.root': 8226L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_11_e16621dd11825c1f553fd506e5ed8ffe0b72b0314fc19d269291a9c8.root': 17435L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_1_3df224fd7c891a27acc8605edb01fb1cfda756267a76b996d11aef0d.root': 4933L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_30_c0f620da9a106e70e4540643b455bb08af74ecfec722e0babfdc84a1.root': 28082L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_55_7af19982a846a0a9700d9904524ffe22387a35695e749c2443c0542f.root': 43577L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_31_49526fc5afcc40a71a9ba78b0d81f5b3626ecd7f008e67f7b4969235.root': 28877L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_3_4d66b871a3fc8cecbdd8b1e06c825c5eda2fcdbcd1b347e5604e2bb8.root': 33838L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_32_8d70aa391d5125e37eb5a4e4ca49e359a98a4aecced9734e11a88413.root': 11486L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_16_549433e3373271efbfe2bbdfe0f872e3dc4b7c9f52891ac391e7a83a.root': 3292L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_45_1918420756fba9ae2116df46f82aa428d852f1ac5dcc0a455073fb01.root': 36719L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_24_e7f3f4f1af3c517c003ce1643f6f82e9100b5f713732ba1a333466cc.root': 24853L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_42_c4fca61a5ebb886f27d1fc198f0698c0050454f47cb897b6e6698f87.root': 34750L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_8_981a1f48456e20c19a4d9b93960377a12614b91e634b61584953fb9b.root': 16379L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_6_036f22e2163c33373fa1cd9e65f45f10a6842822ec4ea05bd6ca9248.root': 15243L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_59_ebc74305a873b1ec5954b3fdce085276620d8020bcafb3696164d0b5.root': 45097L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_25_c70ed3f5898cb3da5da445bfd24a83e932ae00cc797184a8e5b803f8.root': 7811L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_18_381efa4f9fd2b47a217166d37cc4095c11c9175320141029bb550167.root': 4169L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_57_ca5501bb21cae5aef9860e16692819cca11c5b8bc289429d070b0854.root': 44539L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_44_cb72bdd9040cc44219bedc7af7057e1d6046ed251a252347d75ca7e3.root': 35944L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_7_194a2755a20f05a30c983b46e3e552f5711be0b5f823625a7c677bf6.root': 49612L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_40_4278e76ae88cddb57c8e35e6cc89aab8e4c513a61bcf46af0897bc9b.root': 33857L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_29_738694c569dd3aeea39d73a719b4f79189d6f6b39e00932599959feb.root': 26940L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_61_b4255a356ab41bae1dcbda6801bec8733fef2e43b5c3c1f1df086726.root': 46230L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_24_a14cdab27960d900997faf51d47f4c8b40904fb2e40ca763d9ed95e3.root': 7366L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_33_b21c0ac9f3d8dcdd0584502f547c660f697b85132cd03da07c25d9ab.root': 11928L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_31_b4f7f247fb78dcee6e63583632823cf1012529fb207f5cafe42acee3.root': 11073L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_4_bcf5e81af0b72c7700673b14fb9846c139dff5291e2df2cd45b60403.root': 13967L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_47_483fb4457bfc4f977050fa29189b25057b207a781fa84afd917f151a.root': 37988L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_13_03d69c8176d38257e5191951b1248e8b427ec571aab8f3e7164c8ac0.root': 18585L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_17_dbf0f323bdb7e5cd8097d3f2becf2daa06dc4a203948c62aafa5f6a4.root': 3763L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_8_7ba9b7dc0db2eaac4ea50399c7a83c6abd23228cf0ef2fd5f04b1e6a.root': 50331L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_64_128aa618a3241f2a5f3219dd16b65e9a24570e7d26c0654dd84a8c03.root': 47480L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_11_5e49fe4057af8cc9d66422bc14d212aecdc2d78c23c69574152eafd3.root': 775L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_35_ef289447ab4499b0bdabb18a747143d661a9993c27f310c5d69350a2.root': 31302L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_19_41337a331e1785bd78dae350286b9f7eb1758b78163eaad51e0b15d3.root': 4433L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_15_647387b73452c3c6da3856e96ae77025140f715709bb85b8fa2c7c36.root': 2856L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_28_40e2ab01188d8fdb2875b0a6876d00ad97636cd5e89809350b00c880.root': 9190L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_9_44ab91268449df9c25abe5ecfb5380fde9e0a85aa17ae13936c4124f.root': 50806L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_20_2d902ff20485a7e3ed80b95b1919cbc952520ba8927857ee839f888a.root': 23162L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_35_7c3e5cdc7a4ec270249ac0b90a3c3715a8568b903181b71e5e81d6a3.root': 13066L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_17_7f079e829cca4fc28367312b6c327f4341bcf0a95fb5b68c2dc80938.root': 21105L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_50_e571f13def547fb138dba89f83aaa7799b7c8943cb75594562665465.root': 40364L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_46_679b24244479d39135fb5294d36756c2db2f4159aa1a500861d0ec8e.root': 37232L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_23_16510534ccd366018c68357ea6b1db9437d8451743cfa8bf9adf1e84.root': 6927L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_12_57c27fdbba20be53099cbc6b50b28d001a17d4e93752d7585f6a5db8.root': 18179L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_2_5b93b6639e5d01082f3b213f6484abad4bf92bc81e07dbdf2ae7a1af.root': 27683L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_2_d5ebf9eee8bd0e5000981f911150bd601e54032ec0bb4dad5c7f5f73.root': 9831L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_14_4b50efd8edb47621d19de3c5cd4548fb4ed169fd7953bbaa562b209c.root': 2447L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_26_35fbca5e3dbc5eb3e661b626d77a5a55d2fe59e5a19904c42c734334.root': 25648L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_25_8bb3eab71f8b6c7d8293e42d0e7d8b7a2f7fe44716f9f46c52f30b87.root': 25223L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_37_212d984e1284d0bc154b36c3fb622b384cb980424a74f9514a466d81.root': 32246L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_9_1d299474d185674d89beaeae1067b7e67de6c4e3feda4754e88b59aa.root': 16896L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_49_8496a3b8216898d3265ad847e5e9e66dcb2efc38ebc4482db14d56e4.root': 39146L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_65_4bc5c01b57e6c56b63a183b31edae3ef993711ec4c6f5e968d093993.root': 47882L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_66_d59803fb855b899f78bdbe3a5edfdea8a13774b8effc82205435f76a.root': 48307L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_18_53812e3a819afef3527f25734493471bf8685ab370352098d27467c4.root': 21580L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_3_0e427aa5afe590b241e155cc539e280c312e7559bc2aefa9eee0d143.root': 13510L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_23_38bcec6d8f6c5cdc7b60cfe1bb0a57838e3980dac5e26a7f05491d25.root': 24441L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_22_ef50ae4fd8b4c90578a050fd06b45b89d3c2962ee84921a4f325d5f5.root': 6477L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_34_0921b077d00c0cae0d73d7a220631ff72f01b174ec5c8b455505badc.root': 30651L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_34_cf3e86f46559f15a25da2aa7bd57dbe4aa9cc927dfe65ac991a2c93b.root': 12579L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_5_84a5b90c92cd59276acb3582b8072ac2b66f33281e83abdc7ffed98b.root': 45220L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_43_a17f8bdecf3402d3aac144095d3629d1b2d1ac8f22b13bc23609fca0.root': 35174L}, 'ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_5_758ae4a0eaa5f141bb52ac6ae5fc3e35b1b8b60cf900c0b81da3d215.root': 167891L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_6_e95cdf3b5dd45f77b6c8378e7911104cb1fb5c2b76bf62537a32f65f.root': 187407L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_4_be8aecc3cb062ffb93229b555253a0200332be3ef8a0e628a50a75ad.root': 125056L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_2_a5f0e1dfc7c89c583d851a2fbb9199e81126db321eb4a920ca8e3072.root': 51093L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_1_55f2fa102e7811e0003a6dc040eecff53f36fa4cf1985dd9fae1907a.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_3_1514ae0e729223ca0d5abb08c78c2f3c6ab1c2de81035227600855e5.root': 79519L}, 'ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio11_200928_125250_0000_6_2edb230049c5b4fe6d8134dcf39142ce4ea54efa88bbc4fd054de887.root': 61L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio11_200928_125250_0000_1_36352a57b0d1ea29867ebc12404170dc0211592dccea740436e2af1e.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio11_200928_125250_0000_5_26ac9f7ef922941ffc65459f16b605abc1f31eb0eb53d55aa472e105.root': 44L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio11_200928_125250_0000_4_a48d53bff95ce2e4c7f6ec7fc546f9cf539e8083c510a8d0dc0f331a.root': 22L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio11_200928_125250_0000_3_e4e23c42838adae6a5db89e81b416a3df7d8bf00ee14a5659f78f5a8.root': 12L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio11_200928_125250_0000_2_111464fec6368a4f9d8f9159b63e54bd385c4b88bb1d6866faa850e3.root': 11L}, 'DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio7_200928_125029_0000_1_61e7dcb0353ebc88195c38e26e334ebf8cbee5ec914a6f6a1309472c.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio8_200928_125105_0000_2_23c3f7bab5946c8153c748656eab7a8248c99e2422932d9d2dd7ce06.root': 11885L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio8_200928_125105_0000_1_4229231a6e589c92c0ae7e4945e5c0f2a793256e4a050a4e670e1e79.root': 8610L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio7_200928_125029_0000_2_19f6a8b6e79e4fb3b62c7599bec967c543a0e3cad4430e94f6ba0e39.root': 3310L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio7_200928_125029_0000_3_20b577f5dc33ef1070c245e4b0d2f9eeaf7944db175a750e6bee9682.root': 6675L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio7_200928_125029_0000_4_63b4616673cd6233478911cddf88add3e29ae9fb77e108d4ad1ae19b.root': 7759L}, 'WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_8_ad4a84ce27667457adc6bc5f15b4e0329ee2ce5e9ca88dd616a09240.root': 963L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_1_9525766353011ef228638ce34f281121fb03a07e2a5e32fd4e2b8a1c.root': 536L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_16_7315506f6717971bc46403c4e74b0996095a28d4d1ea2858b1639a1c.root': 323L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_12_28f4ed9364765360c71eb8a539c7fa48245bd2f00fcadb388fad4938.root': 119L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_21_0659349c3f60450330fd2e2398727a44be39d76407a4cdc8876d92e7.root': 645L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_17_bf8dabef38356282785991d2a9147fdcc53cad363f50dd9dbb57c649.root': 383L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_5_90f9d6bcf9a8a4a6313c9f850447ed0849f71a9b403025c53370fbbb.root': 812L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_4_f11538230f55aa74f9aa5e8883eba7da02c882a9e06f0ac47c309a86.root': 763L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_18_8df103163cc9d6153a50854361488c1e7b141b3292c52a48ff8668a3.root': 431L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_15_2f495f87f1deed80ab6fd9de30be6d700df206eba0932da3d93969bd.root': 280L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_11_bb629d4f647dc4a309270fc316c37aef1229dc096ddbdeb0d04fe8db.root': 54L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_20_17ccef3740056227402f098e6379324ec7e9b0b5f9dae5462ea1abd1.root': 596L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_14_8425e8b8385e1a6d8f0f05f22792f78f3818d38bda6bc1e4194508e8.root': 230L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_13_3148b0cb60e30159885b78f6b3c299b2db3a6058487bf8e0b0158e41.root': 171L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_7_1260b6ca00796d9ef10bbb14b728310fa14e49befe28efec3fc84ae5.root': 911L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_19_dae532f4102ebe05bd410aedefba0cd3cd0ab0b48aedd6ef08953793.root': 482L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_3_234e82ffad6bec211418cad6b52c32a96cfb8dce43a6c6afa3800f82.root': 701L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_9_aaf92995e3cdc8bf2c000fd794c36954825ef474e81ce923ba1bc1c5.root': 1011L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_6_77bb71c4cae66be34b8fcdd2647dfbaf6ea18b1db739661b930845d5.root': 865L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_10_e4e30674dc15b6a1d3004d9a5022f3c6ef1366f0dafcaea656796251.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_2_a9ca5e9e40fdd99af5a7710457ec790b1c2a4d33f6035cbf66bef17d.root': 650L}, 'WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio13_200928_125359_0000_1_371bc5fa7e3a179bcbf2721f71ce7f9683634e349675deb8e10a6b91.root': 140370L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio13_200928_125359_0000_5_9877aff82610a73a4b8e8d18f81844049aefed1cda67a64952158186.root': 255152L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio13_200928_125359_0000_4_350d48fb365d993f0d2be3714a8754a5804fd1df5896f77d1fb80c8e.root': 220025L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio13_200928_125359_0000_2_d804c2a1d4ce2e811c2be7f0ec7e139df9905a83784d6a2177e3311a.root': 147852L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio13_200928_125359_0000_3_b1c0a0c9126ec3af7e328c939cb7db133e9187e4408cca674912a6a0.root': 150099L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio12_200928_125326_0000_1_df7e90e0ba7ee9ca3f265824c4860bcd220a9304360cc067b92d00f7.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio12_200928_125326_0000_2_fc62826e8a0caa609383d6e37f3ab873ab93aee8b1844c0f9f20847b.root': 31580L}, 'DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_202422_0000_5_be2fac3c0822de7b9bd7ef5a87540ce6ae04c074ad3e646b952b8aca.root': 181639L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210023_0000_1_6c0b0f2045e1714485ed104d81b64a5fd8e80559e2b55a191f3fd10f.root': 206454L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210023_0000_3_5e2b04820593450679ada0c26435c0971c445ff92bcc5391b0861a05.root': 213065L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210103_0000_5_9e2598d90f84e1025c5cf800dfd9502a423e926450c75ca1b07a4c64.root': 69194L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210103_0000_4_0514eb5d6f9f5f90517d2412181503404e619930694dc0e37462bb83.root': 35795L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_202422_0000_4_336e259b79437ccc48e060532bbddc108b8c66895576481e5cc65311.root': 148509L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_202422_0000_1_99b1c841a4aafd62779a593beb3ef83802eba96c509ad9d3d1e2ecdc.root': 105604L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210023_0000_5_78fa5a91f3bee8812ceae0f6df01b866b778a0434824a18137745ff8.root': 282489L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210103_0000_1_dc1b6c24d69dcd59eca271c3de974dd8a2ebcbc9186d2763a0500488.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210023_0000_4_8dd796558b0760ec56ad4198381e6a851a183527592c385d9b7a7cd3.root': 249359L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_202422_0000_3_4d8585376a1d2ca1f537f9ceae091e6290792a8007b930b9ed4daf08.root': 112215L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210103_0000_3_6165606c66b1615401794d4414d197a77c5b4066880a28f0b310f5cd.root': 4062L}, 'WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_2_0cdc3dc6e381f0c5bbc06e0fd55a11dabb9b6de53f88ea01764028d1.root': 87715L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_5_e5b15f06e878cf8ea151b1adf3673f6ef0510d1fcb6aa0da490c64d1.root': 319386L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_6_b583a5fd4bc275f462480887ce6e802e3a5acc5d93e30fd11e272886.root': 469800L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_1_9b76c123c9efde240814b14faaefa9767f199d3e665a22129e40239d.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212835_0000_1_cecb7e3b3e0e37e71e48012341a03d7cb1f07a48df064a6b22156a0c.root': 754387L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_8_4dad18d6d6dd6baa245e6b6c831c3e9ae42b2ddf34f9d33a0d43d0bd.root': 667559L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_4_6c277a5d177187f7789c0ee3ec6cbb15c479854153e471438ed1c758.root': 228907L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_3_b5f271c9c6e3440ad5569c2b86692a97016c731ac93bab91325a8d9c.root': 134535L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_7_e9e89cc28c78bfeb8285760f2d0fec8b54ee1e44c42fda4b1fddd139.root': 563876L}, 'DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_6_e3d360a656e6beba39e614f41e14c0874367a3467613607d23998f13.root': 11954L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_10_d5431c95b3e88eedb6dfe28ad8fb3df4386a30636be14f8804849387.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_5_20f66b29d027751709d04c6a55cc67f7f1525795c804ef098231199d.root': 9275L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_3_b2f1f5537629eb715b18d56686e28081c76239050f1892f8b1370f4c.root': 3518L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_8_5a60d024219d2e29f4146d456b2a39dd571378cea195f2123812c4a8.root': 16331L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_7_7947f167d9a40b9c3185625e07ce1984c1ad43316c9500c125d3a4c7.root': 13339L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_1_a15e0541aa7e7e610eba81f75cc847306859eaf2b3ce5350739aaf91.root': 2904L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210624_0000_4_4f08cbd178bcd78a391bd29be81f393b82f1277e2e7f9c19af2b20da.root': 25917L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210624_0000_3_1ae9fc1ee481cb6a08383da4c5a84497ef3dd3bad573b72d1a0cdd50.root': 22580L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_2_e4c27a13c3432f6be934a02ed4a2da92823ef85d379c5f266102045c.root': 3071L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_4_e55490dc565ca486a46ede6df9147a9b7f3ac62f44b8d3a4dfe33350.root': 6370L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210624_0000_2_ca94b6b0cd1a2ea2833aaeedee2e8a5002c00f5db8fa89c55ab62118.root': 22438L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210624_0000_1_c10a9a95110507af23b76fe1715dc3b5a3fb60ba9df65265fe36abb4.root': 19276L}, 'WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_3_ccef1906a85fb19604226a247129518892b119b1a66bd4f795f1bfe8.root': 73713L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212516_0000_1_062e22ea9a53a29d86a6d1941b8a7a342d3129690d98ea6b839a658f.root': 440054L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_4_49eb569d21499bf06da73877fe05f8b7c5502acff9db7c82fe98b9f1.root': 145142L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_5_91aa8cdb431325e1640b54d68eb30dd5f8af1f54f1447a0da9fc6ade.root': 235370L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_1_2c55dc415af61d018f1ab1908b15eecf3fd05ad11f819a33fd76f27d.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_2_a612b25c795803879d758954e6b53759a4992016c4fb5e869744f074.root': 10042L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_6_40817ae7447da5473b1c2baa03bc055020c5d640ea46f2fb24d15fa3.root': 344589L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_7_025c415cdbd53a12f738c464e9babc1407cd7f07905ed0ea936b1b59.root': 425714L}, 'TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_34_d5b266993214414eed90c8a32d05265719a521fc8b557a5fc313a59a.root': 757661L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_44_28f046a48def5d82720d5876b5d1a3816db01700c003f8b7d1e41b9f.root': 957749L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_1_358f725bc3994c4f05c7f081cd47600c8a73974029d646cbfe4230f0.root': 494227L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_121_7bcb9c99fe5c232d3bea23c1afd37c966c6704e62c12dd1e4f0025a3.root': 331449L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_53_14d26f4bbfe57d1de83d2e0fafc288c32c72aee642934f8298bf6921.root': 1133293L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_75_ffcc9a7546f9a3bdcc1352b632ec19545aec6aab4a7239bf3c3cc3fe.root': 1680174L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_122_5fb471b9e99e250ee3506e199fe8311386f9440faf6851f01b113790.root': 335400L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_25_88f48374ca3ae0588a7eb341ce8335975d1354b94990a65bd2d0a0ea.root': 586561L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_94_91700604786c7ebe324e62b24bbdad5000927d8334b26eb23fd2e523.root': 2255684L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_60_fa8deac7a9f0e7692661caa6e7b2613f2c33765e45e3817d8817e988.root': 1272635L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_108_c4ff11aced9bb0d0d0c7b23a9761d162fb497c51c190a41f8615a6d7.root': 152854L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_120_171bda7d9ca7494c45b19fc99650ab0a936f0a02e7155c33092ec85c.root': 305517L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_36_88d422cca3fb9788ca7ad4b1ab205c2fe9d634602622c9d8e82645b9.root': 780687L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_113_c61635d01d8340a2dc41328311434c83d61d27c98ed371bd60da3761.root': 229914L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_78_bb361df163a24b55c25e2956c4d2d2a2ad19a2edd06f44b5bdfc44f2.root': 1738121L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_118_de00498bb9564d83226252e4e44f7bbe69931012eb0fedc2cf37b0d1.root': 271537L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_23_c0bb56dc0b2a36da4610776faba16cf7996fc99fb3b34e20b19c49e4.root': 557966L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_49_65c83941d453d57bb15016f5c7e57c17de79b6f6b65f5f2795179c3e.root': 1049391L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_19_edb9055de115146587149edc5ddcac94f669ce7b8568bbaa5643a4f9.root': 474969L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_112_ba3e7efe8173f1851dcc0cefd15364a212cefd0368b2ead15c472ed0.root': 226746L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_65_ef7652aa3b153caa71aa0755b8ba8bf37a078f656dadab4b195e8358.root': 1404321L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_111_cd561fab6c86f7c36a69b0ff1b33fbdd6b956fa74b6d86079176a6ad.root': 197792L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_8_c8fd424accb4e1c48f607cfc878a39e225b9f913963a23bcbc69951d.root': 2136297L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_51_eafa722742f9495252a58360ac66d3e431d09bedd8c14e0b48ed2705.root': 1084010L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_63_a402a68e5e719f839ee109653f67d2596da95deda53e72c1704886df.root': 1324099L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_95_893daf4876e919a72d99ccfef4b4963d864b22cb58e255bdbec0dbaf.root': 2283848L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_24_d5f5775fb4103332ef52538dd85fb09d4b81c73487ab0434c438b9b2.root': 560826L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_68_a1a13d01e28c2ac6436b1977d153ba4c6eeb40b82e27ceaf54de33de.root': 1493518L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_76_ebdbf24be9ec1fba4d4d22cc79a91bed625ed602324407b1d5373137.root': 1680969L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_109_9ff3684151a334a9648a5c3f6ae7daf01a3c83206e7cc9210302bc90.root': 177167L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_32_727c46cfd86cace46da2df337523043dce11421c1ced08b65137d447.root': 726760L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_10_895ad00ad5f75ab10b43cde1d8dcdde5e22ea8cf14a2eb365cd23222.root': 196275L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_101_432b95a35b6d54ded6f7cdcba9fca0ff3b7718081c0e2a6806f27d37.root': 4539L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_22_16743397089d20051385745ff0786b1e4c300d0e5256f738cb380e79.root': 553280L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_71_b5ff7cd7ccc9bfcb909ca5ab6fe601869de902a0ff8dc1a30b0c5663.root': 1596285L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_20_69f0f8f179530082be962f770728cea89deb2f918e6dbd52812f32a7.root': 518835L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_61_67a60b411d5739ac433d20f01b97deabcd583aeae74643512beb572a.root': 1297900L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_30_51b6160bba5fe01645c5ad961fbc95444d249eb29c972b858428e39b.root': 708592L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_72_2016f24ef82c4291766837961d4785204dd30cd00e53137b70ac2225.root': 1626551L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_17_b7e1e3abac66e339c5e793d9934d115170f676721d7afc9d5e5cb48a.root': 431364L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_70_415a58597d48136482fcf6422a08098cd32ebbd7d7a3ff1ead04aefb.root': 1571596L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_102_35ac2e85f9e1488d2ce7c267ae4f52215710187005f7ab85d6715973.root': 36688L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_99_8348ab92bf8ed62d9cdcf684f4eb9a4cb6ec5c85758ae9a9ca4e1616.root': 2379973L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_80_d941abb78ea80fe8c55c9498b1fae4ae6c62fc3b2db0f436800e1566.root': 1823541L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_103_17bdd20e0333d62a99865551798b3c110b322fe1c589f720c8adf66d.root': 85061L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_74_1bad36ed1c0164fc3775f98ba4f78d3272e62c26f13285646b297e79.root': 1672709L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_100_ea6895c92cacc1e6aae3d184e0a9ebcfe31fa2eaffcb5912474debe3.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_9_fbbbb95fa33945ee251c4c243538d51cacd756e16d9b1c4166fcbe71.root': 2404155L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_11_c13727bdd62ad913eecb6789da8b2cb80708a49be5a9627cffb2177d.root': 283309L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_15_e7d56a7bb749c668096901ca2856eef5a15b5c766de398c9fb57877e.root': 403735L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_45_370210409c08b9fe243e1dbb39e3bebdf0b7fc41a339c61e52ce52b7.root': 981800L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_58_ba0a34f9687a83d7b2c9a9c482675f00ccfe66228ee9f870e5f29f24.root': 1240102L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_104_b44fb59ef5f9b18420d661f77cd39209b8b5787401096f8c60586779.root': 114863L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_66_778d363f6d62d14b1427c795e4b9046ae8345a85754f034303ec34e9.root': 1433509L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_116_2616ecb0f0e23448cb1acaf674bd93258964223cc6fa34aee62394e4.root': 265386L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_114_b03ec66d9e0af8540e3bda0241074ce5cb6d8f63f4a5d1ec721a44ca.root': 234455L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_98_b456eead186117819a5e9e3a227150e51a863bba98f8f5585e8fe6cf.root': 2347701L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_77_1ab1dfa6e8a79ce41ce45a9cbdba40b6ce5e44ead75db6ac6d4eac7f.root': 1690337L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_48_3832f11f6f5631e76335290d4d5fce35a771ff016fa467ee3fe159a7.root': 1044907L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_6_455e5e32371ca796c875a1576fdd84533c2bea0055dbd3a728ff1e19.root': 1547152L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_67_e749497f9e09137b78380a107029a8ffd15f49141899d210c8e4170f.root': 1458334L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_123_831655420b8f8b9098aa2426106c8065a83fced263990eb2f0b646d6.root': 336294L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_105_7e9f2801f2b4d14eb38cba0867535494c426ad46f81c2b06f4f01ff2.root': 139527L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_110_efa0305d99e87885a4b2efd330df62414bfd15786704e31b40bfdd7e.root': 197460L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_43_da5e7cb1b99a16780a29da4905ea02c7299002abf494a8b64d5697d7.root': 948638L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_27_a02ccf181f610100a703f273508e19640a4ee83516e44efef082d04d.root': 638790L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_91_aee3672c118a3520a7d0e7180422c862f5d11b984065be12701d3dcc.root': 2185295L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_21_2410386628bddabd64838a6b6668d88a66881ed24eddb64518227a43.root': 520959L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_88_fb92aa5ab9fa7ecc02b3284745211f94e106df956c77212e776ce7b4.root': 2076665L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_117_3fc2f89cf24965953a461d0ed8039b76366e52cc6dee49d97f32b72a.root': 266980L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_31_3d65b4c6d34bca00fb8e989b3766bb441859019a7a4549a9d3dd01b8.root': 722556L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_54_9b3468496b99738ea7c37c75b954adf464f97537346d0a06b3aa68ce.root': 1160185L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_56_c3d1e78836c20144bbf22111d3340f6bb4c04e57bc7d1b263a287a46.root': 1169117L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_47_3ebc263ceeeb7ad023162f707f3f67789776151bac4bd404fa3341f5.root': 1019066L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_29_8a97971fbe44c0a64d6d46e2852bfba771b4af86a2bafd31416f73b6.root': 669714L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_40_bb912500a22249d4286b1bee27ed687eeb06084a042f422de2c8ebac.root': 888293L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_73_352bfab43b7fbeabf69878ab93d8480e6e659885b7433dc6d8b470ae.root': 1641722L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_115_135f58902d96487ba3e62830ed622a0c5cbb40efcc246b854ad7892b.root': 260844L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_107_e3253ec0d93fcfcfcf3182a003ca6edf26ee6cb23b8a4a891bbb7fc7.root': 150112L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_82_441fc10c4e84210d93b3d02a33c6b81cf4444c620b6f1c2d6596a174.root': 1887395L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_35_b27a889cd8336e0d7d6b8fbb294f8e4449e7bc85f7fe63c12f0fb703.root': 777982L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_69_580e1e55b4b8eb4f1d0f254e16f75e5ee4ee8f1b1e7a2c3a93dfd601.root': 1519768L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_2_0985ab73e798403e5a67c1d1cbadda09a7fc35525ccc8465e3c2d453.root': 693764L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_93_19d49e91406344a0f9ba59146fa7fa880b3bacdf3aa0984e48a3ce53.root': 2244286L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_50_f5a0d1c495400792b32d725de07dc5cfc9a16c0b20fb4da50a9f19d7.root': 1080339L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_39_0504c6010dd1accb38fe31896890de4d3a518744e15af533cbe02171.root': 827718L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_89_b693de4a99eec78921e9d21b1c62b8c039878d082c6cf634c36783e8.root': 2104800L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_83_954dfeb75c785d6d9d6c7a49fbb85216edab9bf7ec2aad5a4fe172f5.root': 1919100L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_14_41b05cbbe3d8a58308d8c44975b80dc189a80c724f29914878acdb5c.root': 379297L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_52_880f53729bb39795a4b59bb38ee3a66569705ad3980b1a472784e6a6.root': 1109871L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_90_735fed2b87326b9d84eae30dd70df0487e970ac15e326062fb296e6a.root': 2160834L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_57_319dc9ec0ba9cd7a204689d2b00fed80ca21d87e393f46e6b2a85739.root': 1194135L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_5_c6189a6cf78a782469ea52f8cc64a5cbd008a84779de9bc8b79316f2.root': 1268754L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_87_e8c2c15e293945cd36aa0dbd7c3b08b27ff2dae054290a8c437f5884.root': 2048571L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_84_b90d881b2726a034aa189ba92eb76c56b4b67fb5de2d5fd4218cb265.root': 1945647L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_81_b706952e9a7e4a47876dde06653bd2adcfeee267656378d40e7e7e93.root': 1854300L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_46_764077a8ee6839f31c2303680143a5ec22452c4b896daea57949a544.root': 986249L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_7_8587e70c090f4abfb817cd5b4a5c33410d8fcea6fef446406253040f.root': 1799216L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_55_a463ad22f7109cc008c3575a1d819c51dd4ca02fffd734974fbcd932.root': 1164253L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_92_07eaa8e408d28706e06bfbeae662dbcf7a55f9757b32af363ef24082.root': 2218541L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_85_2551088113550f350ad5bc6f2a0eb0e2f2e12bba9aaf9f99f33984e5.root': 1976387L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_86_114ec15ba37e2f8285ecd3eb83b90184b825d730bcb791b56d0760a8.root': 2000696L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_33_f63c2736f1b8244c9302eced373db56fbec22b61f42153429e95d532.root': 728291L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_18_da2ce84567fd59a551c4d870823e3b0c534b958f33de456fdb74290c.root': 459249L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_41_93c95ababa567338527b4bed8a95e326c0f888d18afde8ffa2ee77bb.root': 916692L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_119_3f1e04d9fc2e3141ced372425fd05d1d1967717ede23678dc3ec9066.root': 281158L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_64_44e71147ecc6f708ba70623f256104c0b3e0f1e093384376d243b584.root': 1371731L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_96_fa3c93b05bf1b1148e3834a26f03b9c8e2ad29661b1aebadfa60ea28.root': 2296545L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_62_abbb337147c77d13aa583b6422a4fcde1ed55508870c4324a1c954bb.root': 1321010L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_38_8e7e83876337b2203576596bdfa1d45e1ee8642ef701dc1e2b9fe6d7.root': 812714L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_59_3910e34a94b2a85a7ee34f4d967e586c4e2c0eeb5f90920f0727d0ff.root': 1264241L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_37_eaa209a584f68106c9b191d069268f130cde6e16236719464b1ec7a3.root': 805036L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_12_c4832c9af566db3a1092032011e035e5443dae0c936a4664285ba984.root': 349998L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_4_f9a5baea419ed7838bf0aa7bd62cc7bedaabf01066fb5f89df8ad82b.root': 1054309L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_26_2a4a3cbac66095a1daae219d62526c4f4deb194f85fc3e1fa6af3d82.root': 612171L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_28_fd344697f6c87bbbd38b7cea67cca8b8acd7be3d782f07761018ec6b.root': 644147L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_97_847368e1175e063d55fd0c3323ba0ee173114fdc585c3d26ac25cddf.root': 2299770L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_13_f1282ba866833d54fae07476adb687eef486f4edfbdd929f6f70db41.root': 355186L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_106_61892e1c8bc766c9905d5d22563048fc70b9fcb7f25d1415e2fd6c59.root': 140807L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_42_0a4e7246ae00710e751ff804fd8f26b6dedc64c3ed53a78a9f6e8ef2.root': 923756L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_3_4580c86244584cfbc1af6bcf94d8cbd8f46cec4830d86c034fad9dab.root': 863716L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_79_8a8ca399246ed65ca36f772b4f9b0f8902566430a058f66ecb6d1031.root': 1772872L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_16_7b92fb90522b0465b52dac05dc4572dc9428902c8f1b472c2229ec62.root': 406738L}, 'ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8/tree_-v1_190523_195606_0000_3_f7e4b65e48dd7b487b0303f9c46d31cee8938c666547b5b5b520c1cf.root': 5594L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8/tree_-v1_190523_195606_0000_4_1accb772e8a95cf219c2bda139b57610ce3d54748989769160d2dcd5.root': 10554L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8/tree_-v1_190523_195606_0000_2_c7e8149cda04204e04da5ef82492b7e33932dcea3f32c856cff8962d.root': 930L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8/tree_-v1_190523_195606_0000_1_f51220c89576b2e9d9110b48cc9632bdb568eb1d52922730022f5a88.root': 0}, 'QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_16_5b4af9c4c68056a2c370151180af36188f354d293dd67360a3f6d698.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_32_5041771f8d1b8c5094efc2a2807b5fa83c014104df08e7dfbc074ec0.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_4_858c42ed246119dd7d3676625d9b372c15d13db6b67df53ce7a5805a.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_3_537b68051997da16e0eae28b21a7d43022092400a0ef0dd2b05e483a.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_26_f59c83872fea4f1f0b4a2dcade5ee7deface7eec0560f7c93568d4d4.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_42_97b10e7582df207d68ae93a00929215c01bfda5b281c1b737fdceb54.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_20_95cfcfe3018024d1922cc341fb069e04470e432d21a8ef3f1604b8a9.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_35_2a8a47a9bc93e8e86c0535d8e284d0dc25e631464a2db064eda0d755.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_45_dbc3bf153ad8565e4dc9229a9a79df7c3c45bf560b4b906e8b4475a6.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_27_d2ab40604fce9a7aea3e6181c2be8090188d279289dcab7553802dfd.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_6_3fd3a6d559b7a7c02dde501637f31e6703c192f937a4383c1001ae68.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_54_10aaff71f798b59c379420e588958314a970988390529ff02fc41cda.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_48_9a9d4d0ac0be1a8e51ff6a74cd4ffae4eff2c900e2dc2a028715d398.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_34_e25d9fc074090a6b6e58dbc1d1bdf752b0baefb01d18d480fc91f861.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_14_2d9b212a8fd8d766319830bd248d8a8446528f33be13c226bc3d6078.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_21_3626909b3da9e0728f2746ad9c0e7ff7e1e7607b32f52c6918bf4197.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_51_d18692fec4039e41dafe17ff983c31161deea17668629dcae0c57996.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_44_da4c537ebf82715070a0a701b517391dee17d64e1cc0da01d1f5240e.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_22_866e4f3475793d6614765f76ebbdc2420c8dd680a3dead10c9523a6b.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_57_7b5d38bd2bbac48cf25717cd416f3dbab782b93156cf1fffad06190b.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_12_98c885a96d45fce1a36b0107e80216e6c6f4e3b63c49acf89a1fb9de.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_40_c0d4f2c6accddbcbb3dd8a162b02175e9f7efd1fc8d41dc08f6ffee1.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_29_124a5f8c0953b7ca3fc67a0d96283af32faed0e64580868a45c3b366.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_19_6c9a1dfe7de633cacd67cb680f8f8f3533a8a8c3ddfd821f72f6bd2a.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_30_88cf4128a3bbd262543d95b3be2d1b7da43860425569599a50283f3d.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_24_14ed0c9749242262e1b7ac0365333d7867c64447f2d8b28a4e1b496b.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_9_9a54e29ec6115f4a8e948ec6a319c5888a33d91250051e315ce5ab78.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_7_c964a989205268a18bbcff46a1dc3ca0b5383f32d3c3dd3a47434d3e.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_31_6221f763ff3d726b1f6c14da0a83442dacc15f8071186da49b252de4.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_53_98222173431b8da3bebb92365640ff8b79cd42a20fd4490036d0c22a.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_18_978d1cd881116b04faed9e40cac9bac7eba5d3cec39f93291452f916.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_41_d64aaa6a2e16578a9f0e5731a6ae017917a66d05fbfd4c8aac47b3ba.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_8_04794e26c37d27e6886db54f87c9c4899f5367221e65d038fad43376.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_56_17f6da5cee0b12e6da6e5054acf8e193ed388046759612b9b456f264.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_46_74ca8aab9a274d495b31d1aaddde646865ab16bcbcc064044d6555e3.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_5_29cc00a99fd99091332003358a8e12276ed184fc1775ff3dcbc53680.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_17_5be07b7e057c472a57817c203c20d21ef670ca0b13a4ef4720489cc0.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_59_754541388aca98d7115014994e8bd1fcd08ab0978edd733399932d79.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_36_697bcee493d7d7384ac3678b105737acfef0d97254a14d5d19a98ea2.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_2_40e3e6644932bd7350fe472e6d464189d34b2b117a9630f486eb9a9c.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_50_76f5b7f40eec30d347747a8d002a7783f3e3240196d273079d355189.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_49_8fe1f30771587a79ae1095a5d38851d3a24222d239a6028b16d2729a.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_33_70822c9c796db889c6eb9881a57a23e55d47630a0c1ffff5fc2b884d.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_10_c65a5c8247462db8076a5973fc120c7d93833031539d51b78de9c3fc.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_13_b4bf028b2c6d2da24ad6cc6fbcc121c3525b5ae07009196af8b30ac7.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_23_651b92618f932cedde3fa5e267b0e565e778c3a62fa3d840ba7e927d.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_25_cfcfb28f2130dec6402293a8ea61157b39498be80e22c5237cfc6d59.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_55_5ecf3abca8333038e911f43f527132ee685a214cab789d283fa0632a.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_1_2a770a9b36c3ac5113f8fa2f16dbafba5d23f642ebc19df783a3ab6a.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_43_ca08fcd9f0f562119134604c2a4a47115b360c80c4ef00147baa0c74.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_52_9c5752d4de3b1bdb073847cbd9c712ad93d94affc6740a9b178072f0.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_58_64351be9de667e1027abdd3948f8c784d93ff23019dec771db7117c2.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_37_fcdd951c73e44c0cebd08e52cd5a4481603e2e9292bcad74a9da5320.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_11_48deb95e6a76919ac6f5205d8e7dd1285b79eec6572f6f03df4d9e75.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_15_e8cd0cd2a11c29a091e787bcd5030ecad0f5cfbdd2ddd84c02b3e84c.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_39_8142dffd92e170e30ee28d4b4d6ca1363b8794f3734cf5fa835e41e8.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_38_f3d688e92ad8c07010734a99e243c403ffc1fed8c6113439ed0e4cf1.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_28_f33b94b24fa8801a84ebbb5236163ad1624c6102f4c095d7bb4823d9.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_47_9654a4a8b5c87df84e1cd1e5d68cdaca3ccefa7eb754f7bcef74b82b.root': 0L}, 'DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_3_3a80acb1982cade1b5120682dc1496edbc21d07dac24065eb9dda705.root': 103997L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_8_c4a4c7aeecffb0c816b9207440f8a5eca35d5a63cf5850425e9907c5.root': 154669L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_6_e73ac19fa14d98a87c3d2a009b7e4abcd498cf6bb7386e1c659438f5.root': 134353L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_15_85fa1c4e892f6a18ba5ce00bc7fc9ba7ae578de2ac93276b8df25359.root': 60557L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_12_c33003da160968adbe89832c0a6880ee69cf5c5053feff4325d1adb8.root': 30375L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_17_87209b1f219472e518203370eba51cffec427262c5df9e7bdd93089a.root': 80702L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_11_3374755e92c46033ad094cb0053a2fe42bb7a2bfb6a1aebc30fe748d.root': 20410L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_18_c5ea1c1c579c510475ec774cd28845af46bca5c57f02ceeb394dee2e.root': 90895L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_7_266d29bfb8943c1eb852bccf4dad90a8266d67490c8123885604ce8a.root': 144619L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_9_eafb34dbb2bcd4feeb9cf8999df094b6423807afb7e82481c6ed6145.root': 164909L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_2_51ba3ff8a59858923783cabf393243d19c0ce5cbde447f8e98c637fb.root': 93977L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_16_b46553ccd70427cc7d3c687526563105d0844044050eb6195e32635f.root': 70633L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_5_700ea58010687feecc7b8535e23ed79e7469be5dae661f878331dd31.root': 124263L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_10_79998f19432c670426df5096727b37eff6ce59e9684cfb59ab2fd2a5.root': 10266L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_4_ab1a636f64bd0f298d92edcce39a24f057950c5fe96984f4deb47fe7.root': 114129L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_14_dd11df44cf90084b6697ccd68d71ca21de3960d8abdf77ac7d2ed33e.root': 50494L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_1_92ddb9ce587e67e07f89bb049077c831d0b58fc27b82471156367fec.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_13_454e579f9aed065a42f3edd0dfb6045d5baffe877bd91d164c2a3cdb.root': 40490L}, 'DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_200928_124849_0000_3_27e7dd56d82b4c7873f503c4b19aece7acd02b14e7d9ac3fb453c5d6.root': 245L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_200928_124849_0000_1_85b31579027488497f18897709f94916cbe325be8a6a70791e22fb42.root': 122L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_200928_124849_0000_8_1f15d610d21b9974c2afb8c0052aeaf9cb0b23dc33c6581714f71c59.root': 797L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_200928_124849_0000_4_3f1aac2601de08710c7d876243f018ef9cb3c377e1c5eb7bb0ae54f4.root': 355L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_200928_124814_0000_1_0b727f93f1d17e9f56156e3246076fee97c212b8f7d4dcc637600083.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_200928_124849_0000_2_c312ab13faa8cc7a4bf809e8b0e87244b09a63380270a518e3a5f9ba.root': 136L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_200928_124849_0000_7_5d10158e4e31519bb2740a824d30be91ad168fad5d0220972eb67fa7.root': 677L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_200928_124849_0000_5_f45c5fb31aedcbb619c7e696fd0f1380a5535d61d5008a5b4d26be23.root': 481L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_200928_124849_0000_6_943de09321b87b4828e40057b96fcbfabb38a73da27876f53e22c845.root': 564L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_200928_124814_0000_2_c79b6c282d3a44674b5bee48d7ff55196ea4f3ee271798561af76c08.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_200928_124849_0000_9_82253ce67eec6e327844c19fa52f46f46a5647c5b77707a54ed330f3.root': 919L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_200928_124814_0000_3_d873fa4938feba464ab5114137119fdc8ab9e831dbafb4bae7e56bfa.root': 12L}, 'ZJetsToNuNu_HT-600To800_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_5_76ed071403ecc7f84fe352ad31cbe0574c452ec897e88ad5fcd0e095.root': 96L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_6_2e35356f1f6a49b3f56d3c6354c645e307ca4c3ac5dc05c8d622dcb1.root': 143L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_4_ebb39da605f0ff5c46e7b8816187efa350e4ea1786cadad748d190d5.root': 91L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_1_e47616a62e80bd19ef87089bd4fdbe0d3da40fe08c83386a09fb9cea.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_2_c3310da000eca94cf6cdd8b23b6d0c54b7ca1323cf74d682c14cc40c.root': 35L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_3_859df791734b881b5224f40d7e17c3db8c84b4e4a93e378fc3e3e2e2.root': 59L}, 'QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_4_f20644e4fd0a1b17380920c66a7b5bf362a68c062786a3320aaa5b8e.root': 139L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_2_83708d1d697f2044d5d4f36cf9cb880f17b70ea1441fcaf93009b3d4.root': 21L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194813_0000_3_f36b3fb1209248069e4cc4da1c6141ab4d38198507d88c0dd8a04def.root': 381L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_5_c06ebe40669724a467c69efc64e3c7653f9085636050a9ac581fcb3c.root': 171L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194813_0000_2_098872408bd4e8566ff267a2d1be761b2821784429a879a1a26d5b62.root': 336L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194813_0000_4_5797e8d4f60fbda2ed39c80d9424005f06bc87d844de807dbb195fd8.root': 416L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_8_f1640796668213e6f817af3c7c0f9fb745db3850ba80f4615fc51892.root': 268L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_6_9cbe97669edf95a85e504c6c4c199cfd56fe434d1dd92699fef46a08.root': 183L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_7_43ff34f506eef707e76356f2aa2e45c2a4618f0a5dab24aa58b53b2a.root': 230L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_3_a96240be0e219c54fdd220bdd07d943cc2783e7c6e3e92b157f77fd9.root': 93L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_1_a9c3ad048f6d50c95755f34626da57274080d02fdab2d7a3b408c37a.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194813_0000_1_85586474339eb89a78654d14ff8ba72a7b1a89f3999550a26ecfe992.root': 291L}, 'ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph/tree_-v1_190523_213825_0000_2_75981b5915b13a9aac69e3bb3509fd21366b3ded7b1aa61aa7c617a9.root': 47L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph/tree_-v1_190523_213825_0000_1_7ffd8ce623a12a400294d64ed4ee938bd776f2d94a65462d086e18fb.root': 0}, 'ZJetsToNuNu_HT-400To600_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_2_b3aebe6503ab575975a3b4f91342dba5e15232c6094bebaa926a2fa0.root': 37L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_5_8b2870f6e7dc2cddc73996a71365d2042ad30b44591dcd7ef509bf14.root': 84L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_7_737832fe4c9bd4ea87501137cc41b237dc7f7f45ac5718c9ac677cc0.root': 118L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_4_7d06d0f72497457d312cf842eec26fdebbae7c68f1a3698cda01ea30.root': 70L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_10_4445a70a90a28c467e28e81829a1e655016f5473ceabcd6a5e7f3374.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_6_43bf66462bde076a9aa905b92d752ea94b5401d5409d4ae656a75037.root': 99L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_3_517b5c3261e54b0fd11c819ddac32baae6876c98aa30ca09f9c7e95f.root': 55L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree_-v1_190523_213905_0000_1_a5434bac81a9b053443411496bc8066165d1a93a36d770f45fdd04b4.root': 163L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_11_e644e71255f2cd08f254e6160d4f8729bd6149edcba9939c450fa704.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_8_b600e0537a6de7a76e8388fbe63ba6f4383bc9f3b928bd5c67b948f3.root': 121L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_9_b85cfa283586a53f82563cde26354cd3d06160fb78b027d63e0f3605.root': 143L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_1_0f900dea914859f6467aede26df22b7187887ecd81730fa666c8932b.root': 35L}, 'ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_16_2221b4794dea0ee1a14cfa4b6e771e7b1982a56a755515abb9e8f856.root': 23L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_6_4c7b6ef2a7a9eba64c39148ee7e97ccd3e1dd0bf88c1194ccf14ead3.root': 78L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_8_84b7d1f3b7e8c1a10fe4a910f319bd582e012cc0ad159d10e166f320.root': 82L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_2_a44c65a096c6da7d11944206b347b2de8a2bf808c4a723b980e01570.root': 62L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_12_93e662414c82e81894945b3247637ec9fec60f9bc7e74a7f54adf699.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_3_1cefe548ef6766bfdc043627cd992a02d810877ba90c39d20e2aa205.root': 65L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_1_6608c88f155dd081d7b6cfd46bc0ea1df950d90e253a7c7984328e53.root': 36L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_22_3d7441df50a6bb479288861076c2f2252336263e95b1e1e60d0fec02.root': 49L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_18_7ff84f69707a22088a878539698354a4481722713eb03fd2581f7540.root': 29L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_9_0629cc676fc2f87bb383c4512e71027c0b3897f9bf1a31143a16f944.root': 89L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_17_31be3d99ddd22bf6416c910c28bbe6bc39f5f4a2b18e8b89eeaaa853.root': 24L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_25_99593cb5defb425f704bcc649b98cc2cef3542d11b19fbc8a5f6efb8.root': 59L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_11_f7b78848d1d02675581fe0db7de72ba60a7299550907da62dc105232.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_27_c14849ebd1172d93be1bdcfa5db7780ff653a721e07fa0656536c227.root': 62L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_5_49c2f6036a11b2e7b78578c165d3ecc350cbb87166a412c857808f19.root': 73L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_4_2eaf41d444be7fa09343ca60f83b70b7691d1ad5184bea653ca7811d.root': 69L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_15_3ca107aa0936242afe96688cdf7c78d34e27c53eea12754ad19f43cb.root': 20L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_10_2437ed328a2392f2562ae087638d18457670ccb65da3103febca13e2.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_23_6b5f0ddef3ae4726ad0e226967622ab6c10657ae71910682230cacec.root': 54L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_14_6dd879ff493544412adc5bec0881a248ba4effaff4194fe894b250e0.root': 16L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_24_a80fad475cc70d30578a95037238f5242967d2c7f0a6688aaff1dd1d.root': 55L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_21_bb728eeff3aa41cab3c6f3cc1e70a0f2ac3f027d8aa3e18c4b67f0d2.root': 41L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_20_5edabf46beb8e6c5563911369b534f9d26cfd1a496c3a7a93648c613.root': 39L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_7_1bc53ee5c7b06df5e9c01719c07b8e46c56f22556ed29830f6cab899.root': 81L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_13_b5f16243126793e5321a41f41decb64dd22eb20400a0a820905d77b7.root': 12L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_19_9a34fe21960b76f62ddfea4b28259db4e6c3255a5d2012714fa729ac.root': 33L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_26_ee11756ecdfc1220c9aec003494c43f4bdfb762847ff9960fdc59c6b.root': 60L}, 'WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H80_190606_071404_0000_2_148bbbf3af94636f33fcbf1451afd3739679a876ed933683b377a302.root': 9343L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_6_514b7d7676de5af8c32c662c39c525cbd88e5a43be19c352f58822ad.root': 92328L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_1_48c6848bdbe43fb32c1f2015233b95813ea60beb688d03d71236720b.root': 46002L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_2_522e806587d3f1cb9ef0124b19f231ef08c748d5270844ca4fd15580.root': 55307L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_4_036f2dd5382e999385c5944dac3614cf1245ffc1f8c4cc17e57b2aac.root': 73871L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H80_190606_071404_0000_4_922ce1c72f25497e01c86f10b785c1d03d31f4e929d41cbde9a6d089.root': 27963L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H80_190606_071404_0000_5_5a9787b6603fdb776589d0a78e84f664c717baa76e70ac99fead5f75.root': 36897L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_5_be532c1c555ad615933fcd749096a6eae823649237ed1f9153434dc9.root': 83129L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_8_92d2b2a1e75aa3347bfc4edd1bae3808b3742d960126a4b633f6b521.root': 109744L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H80_190606_071404_0000_3_f6366fd1b9a371fd2b49401825aa9ef7e6ab469a16a2b0c21a43e494.root': 18764L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_3_d0e393afbd7f72931b20a9ad8c21e23c168b2acfcaaa1fd21d96927b.root': 64474L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_7_2be8163c188bcfd00af6064a347cc55f323f90dc50d907b555aa1f70.root': 100559L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H80_190606_071404_0000_1_54c6e3b93fcf17d3b75d8241f75abb295199c6dc6932c860e0c21636.root': 0}, 'WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_10_1eaef293964e12f978204d8a7a7ed03f2be7bb0becacdd30b298da2c.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_4_91f5a58b84be708a53818289b9bdeca27f1bac9b484c45dc2654e426.root': 957901L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_2_27804605938813f93aa16e903dc494e5cc2d31214cb78660f6239ea8.root': 1525601L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_11_d048e7d0e779b4f9bad0f75315288ac5995d57bf0b1bc9436c38f621.root': 94511L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_14_95a58a93ba2462cf966d8db5ae679c610ab6e8b71a9b1aae9405d5ad.root': 344970L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_16_20d9fc7ba412d53f5af2b28bec0ef17e3ae4d795a21c9e9066a299c9.root': 540016L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_9_8fbebf48c3c9c06507e6e57a1d45f6d60c60e627acf3c6f57ec53e39.root': 1476001L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_3_06f748a420834f05e3deba19caa1d91508e640e77fa56a1b883d1396.root': 850799L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_17_ebb258887dbc90990e10e8738b44d68c6f8158c15c91e32fa93cc1a5.root': 621772L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_2_f4543ceea4826470bd7c5ab254b65dc6fb6cca8d2a5a6619f677a201.root': 706421L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_3_9d6ca49b6974d7030080c6732ef9553ad0d606ffb8218f04d4e8fae0.root': 1538944L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_7_74a09cdab1f1b8ad0d18127b04499ccd11b842df3b02592102d72e85.root': 1297855L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_6_18d3d08776bb23ae32ec34cf3c12c96e677c113c9a5e3965d82763c3.root': 1179902L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_1_24e03ef54bc3ee626073b5172d33d9c0192114711f4d79c549b1069c.root': 1504632L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_12_0432d73c8960d1eb142aaf970bd6a4173ea27b72fc800ba0f208c1e0.root': 170524L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_1_0661433d63311d67fa93ef58cbdb32d917e8b34ef6d37af7825c44cc.root': 621845L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_5_2ffb4a6156e76808ca671591ad5a8776ca70de276dced0c2fd9f5ac0.root': 1808572L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_5_d216814a1080981644e1d1c393c81fc5bac8af337b83890403c875cc.root': 1092178L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_13_35aaf1f88ed83a0799fb08e0d4e42c16eafdf84808146a8e6b6e16c0.root': 247026L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_4_729c617a1ae56fe6e8f3e4ff2e2c5c58a977bdd147eddf671dd1c4b1.root': 1663297L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_8_e3b9f1d607aadbdd6655211897ea9606eb40a531d70e557aa413d425.root': 1402181L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_6_40583eb75d74c43707dfa860ad2d012abfb0a43dd9c8703b37c6470c.root': 1884927L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_15_3f4fd668df0c46cf8366c13929b1ec05a6413df8c2d5a6fabba101ab.root': 450611L}, 'ZJetsToNuNu_HT-800To1200_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-800To1200_13TeV-madgraph/tree_-v1_190523_214109_0000_1_4fb88ccc6b5edbfe8a6dd2326f159b45601c52e16f196d2bbdb10841.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-800To1200_13TeV-madgraph/tree_-v1_190523_214109_0000_3_0c16a462d14ff76281a76b6b265b9a7ebfa45bb9a6995e923706d592.root': 74L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-800To1200_13TeV-madgraph/tree_-v1_190523_214109_0000_4_a82f827947187dc26dffbc5043ea11eea67ea50c2ee34b03852bb9d8.root': 95L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-800To1200_13TeV-madgraph/tree_-v1_190523_214109_0000_2_bfc00671d3008fa55d6c581eaf6d70cd6f974565b69c067f9826de75.root': 36L}, 'DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210225_0000_2_c0196d16f5d22cbdc43e85c27e5e3be89f7aa8ac320b79dda6ca82fa.root': 108883L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210225_0000_1_b54bb92c17e058aefc2878957ab947dd0c32ddf0d8929ff5e4884fe0.root': 0}, 'ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_214150_0000_4_e91f513377fb7abf9cf84eb0339ed468c8a5a89b75d54efab4b75647.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_214150_0000_1_f3b7ace6f6ab80552c75a5722141f61abbc33e3fb9a7c9829029b3b5.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_214150_0000_5_2655e47e7b031064111944ddef9806b37080df49bdd60f561950c6c7.root': 15L}, 'QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_7_49eda309a8a3b3d4d0d7b5adaca262dc3427a5ce31ade42179c6b1e6.root': 334L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_2_a3dd8c98ebf9c998f6b62f093ddcb9ec0a03eb4ec8d2d87bf656d424.root': 257L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_1_2888a55492b095cc2fe1005a3c3de4d055b208e390b4dea860028536.root': 51L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_4_fa96cc70de4793dde3fe4600fa9c05d4d02bebbc6d8ea62fce9a2c81.root': 106L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_4_3f959fc47d79897a6fac0d72e1a7fbd9fc744c1d0bd21e05170a3c1b.root': 296L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_1_f930d83c0e65c6c4b8f76c2b1f0c8da9123e8f1910c93e4d72caf772.root': 242L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_8_5f9c12e80f2e4a8a334f8d5f3b5ce03b9b8b8af9059d8c14f2e0b472.root': 202L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_3_7e44207c763263ee65d342bea8cbb9c5e43dba495794d783daece5a5.root': 267L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_6_3c545dba73a359bd3733cd01de01641e6e501a3bc1490d8e53af8c97.root': 325L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_2_2ca4e1ad91d003cf68655ba3277b63c6cfacda81b9370e4185d40153.root': 57L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_5_871428d5e716296c6c3f2e587758698bdb2add3a215b288d1a5405e9.root': 305L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_9_ac89e2ad505192153e035b269c93b4cdf6f2d1cc02ca20f5919eaeec.root': 223L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_3_425eb6e21735bd76a7a6d4753953043210416cf30d2bb8add77a0239.root': 82L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_7_be748ce6611c00efb080c806d6fefe682f507c85f13f5a2233568937.root': 167L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_5_b8b019ddea47e3ba90faa885ab0dd9cc32e909abdd1e971497bcf02e.root': 138L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_11_021f24fa5983a26fc97a59483dd09cdc411ef5bdb6567cf9aaae0e64.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_6_b5207de1a09b20e7fbdda068b580d0a3e3bde3c1ae441a62e908128c.root': 154L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_10_3e319cb9bf4441de6f94504a28cf8244bc22f3e16250e68b5b50307f.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_12_3c3648c619a65b6cd4a80b5bda7e01ac9880160c698e5fab09b9266f.root': 19L}, 'QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_7_ab7ea7a8520aff6470f8ca25411988a61568231ee91a9b9e966d756d.root': 177L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_1_9c70af842a14291b1a340f8e4cb9bed9628b9d8b3ed3ec5590bed198.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194924_0000_2_021d46e5341b643a462a88d292598530b56805cd90fc9bcf012900e3.root': 247L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_8_d368cf36d997ac9470acb29d0732863dd6c294d5ac03bbeecaae0cc6.root': 178L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194924_0000_1_7d5263175cd3a9edb96d9ac41993aa051d54aa02f034285065db2aa5.root': 228L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_4_740766ec7030b9582fb3eff673cdf2df26236e5823df7cbb6b05afa7.root': 56L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_6_144faa829ebd2220d0d017776939683be1b7fd1fc42bf24e23f505de.root': 144L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_3_f22465168e6d104a516281bd0833e7f05484cc8431a06091a99547e0.root': 56L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_5_f7ad6e98373c778e602e543601a4a61d640a50493df0d6b1e777a831.root': 100L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194924_0000_3_9a88ef677c1dad8cbf12debbf46dae0fa6e896b43a2f10144e356105.root': 290L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_2_c64e7d98d971369f9bfcaaa7f06212a425eb175ae25edb295dbfd809.root': 48L}, 'ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_21_253bc2afa4786b14f2dc6a37fec89187e03d12bb1340035f385d4632.root': 84244L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_35_f0daa86c29e61548f7c4a889827a7618da312917f1ef3d949a3ef358.root': 210619L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_7_08bbb82e6d806a198beeca875c521e5809738f2fc5a18efb962d129d.root': 310383L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_36_a83895999634a148cd70707c38c2fb7c3661e251ce8559d1518924f5.root': 219601L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_1_1b4afbc353e2645158d61cc56020b30bb151e6c9fac46897164d6272.root': 70976L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_19_8781df695f4be4953d418798b7b51a0acd0c7c2e62bc28a8dd9ae467.root': 62210L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_18_df691b59cca7b2bb9e7f7052377ef07f934b20198e1f81d10a032f7a.root': 53471L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_5_98dda8a1c0e503929bc95ca0c8b2a2e8451669d633d5ec638c3858bb.root': 292778L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_33_b0083338db1595347f0ce3d4d3de874d6737a93a19d02e5082342bfd.root': 192825L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_9_eb1a789e0a8513ffa35e57e8688ee1b0e7797588f01ec7924f077071.root': 324336L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_24_afe097fbdb930b73a05a90fada1733cef8d42fca61e5fa346d357c7a.root': 108482L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_44_0028d3d1a1f59c6c9b1b48f5c1b8d3bbcc42fe7574e5452d9754b278.root': 279865L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_12_8ee2286404a0edfbb1c2efd6eae6a469f7bc618d28ecf996d74f40c4.root': 16625L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_30_0db26f4f138938d4889477e09d8cf112551078ea7147db2b08cf0f39.root': 166252L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_37_24aa9e6962eb461c3925b749b2e3ef087e73529bef5a18a7022ac5e3.root': 225106L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_6_12bddc00e2fa293fb5637ca2155a78d0b9cdd13a8e35ca0782d6116a.root': 301713L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_34_9a90993d35a48326e445b4ae1c4b1ea5520b9128bf0d1f9dcfe725fd.root': 201548L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_39_d9a691f303fe56fe9955c2ea76a685333eb383e4baab1992e7b961fb.root': 239337L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_38_464e12f3453f0961115633538e373cd97e1748b60efe828b1b8a0e64.root': 233861L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_16_bd0821bca3e2d8e7ed0ba7b80e1126d4bc626aba13dc814772772c4a.root': 35523L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_29_281334fe76ce6746113b93e7d4133ec11d3da9fc948620c59e9362cd.root': 152970L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_15_c26273252a4ab9ecf25b59b8a573d22b1983f657d5256dc6628763d6.root': 30397L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_8_f2dcc70b8507f165d4361d9b045a377e8ea188639b343514b2b8ba52.root': 319208L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_11_e0a30c2ad0bda8aabc2a18f50434ce513047745f345bc273a6c50bf7.root': 7714L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_4_8b429679dc0fbdf7705ffe047d9bfac200b306358e4bec31dc8637f7.root': 286442L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_32_d654a26e5e94744f9be18aa986b96e93fe2ee9e8dadcfd51d7b360b7.root': 184123L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_13_0884c6766ea671ecb95ea75565fcfbffdd4b3125c47a4830c4e0c6ef.root': 17398L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_22_c6c2d20afccebc5856a6db8132518e58abcb480a2d7165f20f78f9ab.root': 93280L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_20_abebb60b2141c6a8eac7d5958c1008772e61f6fd098a4c9f704e8528.root': 75394L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_14_80ffa96e4b6e6630f964348748fc94961b5283a8df420948546b3b06.root': 21579L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_23_8a84e27ea335c543063e9be88dfe68495831e230019ec62791368d3c.root': 100129L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_42_e11e4ac95dd75175dc2a626f32950dd0a6f67197e7597ccde21af37c.root': 262677L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_2_010aec19d36bd1072e2e32f4332fb9ece0cb91cd4aa43187e6c46685.root': 161724L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_26_33d8eb4da86da2662649d24e6546b56f7e61ed308d65a1f94ef4ccd0.root': 126284L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_41_5408ed70d6bc73fedfe5edd6a679f078f4385fd44d7788f08a072dc3.root': 253941L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_40_80ab45a38169ba78911b54dfb3e2dbe5e7584a20756bcca11f26267c.root': 249411L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_27_66cddaf270b017026744cb967f74fc6a7df85596fe589c12c6373444.root': 134998L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_43_4f36190bd44955ea8df29eec0f5fe6230094b31f99aea887fb4be358.root': 271606L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_31_81baeb037151c7aad75a2fdcebfa0423da8182b3a02626d44db9583c.root': 175294L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_10_382bba6fe507ddb7dbcb46769802058fc3c32c25991ef39a05ee1b26.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_3_d5c3c4a6e12fb3cd1862807c40351bd6f6affcac03419f12623c65f4.root': 248159L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_17_c5d8dca961c5a5d6774b94c33187a810d44384b7e15489ec95f20bac.root': 44447L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_25_f23dc736084f1ec20dde022ef92666ec5c07d74ccf1ab0ddfb44ca4b.root': 117491L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_28_466465dca502ce10f260b8e9e00834a244fe361b464eb7063892567b.root': 144003L}, 'DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210505_0000_5_f5b191dfeccd98b09f48b4de02d557ac1a804c62f06a87b6364e0e15.root': 305112L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210545_0000_3_b253e9339b57e45de862bd4a2dcc2c335a244df6d9c1f3ac3cd68686.root': 88568L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210505_0000_2_e67ef328daf49dbeec8a464ed5aed3bd0b978b8646469ff1171199fd.root': 210015L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210505_0000_1_f3c749cbd9d90fa5e684891cb0fb82128ecb316b9027ce1f3f3ab9c5.root': 160612L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210545_0000_1_0beca7cc27b53669db27986b08ed2fb0970456ebcce0d369c329f469.root': 0}, 'QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_38_c8a4c19313334881dff4b603be9372701b818b56f944bbbde6507263.root': 37L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_14_6524c76f9140205cd23d92134e72c874451b82666b67b47072e333ea.root': 46L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_16_25a2da486a793173fa5ec334f73fd3b52a21f7da519d7b5ce56fb683.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_10_3d8bee55eb6219d9b5cb4a62e0eee0776316abd5fc83bf794f27e5e8.root': 43L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_13_1016fd887929a505f6be2e703f545c2ebf63893bc62c7b86afcca897.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_20_40b673cde63aa599398b06135ed99bf0ed5deb2fade2c10b4faa5674.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_31_f79a5e0309b984df6dbafe19a59e1f44bba508d96571d7fcb8942902.root': 30L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_1_7341fd77d20e3003580d0268682ff0689fb3cdcf6d8aa948f601861b.root': 9L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_25_a613d0488e00bbe2a04d84e0249a41a0e39ab778ca9f8482a955c3bd.root': 20L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_19_6dc9d58f008b1972c07b7b7ca896d48c2e55bb8a45cdc49e341cf042.root': 9L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_2_5c106ac8811c74dd4917db348adb4d092d15770c40122c78c82bb198.root': 53L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_15_20423f83dfe6f46bbe07dea71cc15d31e105c79e8f9d331da816a090.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_18_f9eaa81ad7e3900fc76bdd14db0ea392fea033e5fe2a5e0aa0cb869d.root': 50L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_2_cb481e4a57e01dc3ee6405563ad7251e32a71f2723005b48f88f93b0.root': 28L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_30_033a5c48613c940e91087cf17f74c4eb38937db0ef8232fd539a1605.root': 29L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_13_f887dbc840a042998d4421d15581b19921d6c88661087e3a918a67fa.root': 45L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_26_fbc28e167618b290cb05413234352c90806bc2f6846a4ba523c73e64.root': 21L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_11_1e0fd6a9e6087d0e273592b7d0299a37e986196e0db4288b506424f2.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_11_e63803d5ac01b626b94cc4f6c5cef4a48f51eb198b26886c798dd3a2.root': 43L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_12_b7131072747208e39eefb09a41575158ffb3f2bdb8a3a6c122a1a2ab.root': 44L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_12_b7bea85fe3deec3c1534aeda148b009104a71e3b27b51fbb8cbc57a2.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_36_e39d3c842d16fa01773402d478c51798ce357a4e45641a56379cfe82.root': 35L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_27_c30e40b7ced7df6dc650656a25b5b4284a0b92b3d43254241230e697.root': 21L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_3_02d1378614741099a12f03bb5fc8d695ff631b04726e16c7144fd10e.root': 55L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_5_ad3847b1d54be3a88632fc71ab08da17949a4f5c85e091c16014fb93.root': 55L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_9_c4aaa240e4bf07ec1e76cef9434087491153a25431d2509cede69876.root': 64L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_21_ce691c7a62533f34ea18a02a131c41a9b6f2feb23a4ddb24401d1adb.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_17_3069ef8152e3c4cf048821bce7aa2a73a8a220915df74ce734e468b9.root': 49L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_24_f7afa4f7a824ec7e44c99acb9c00dbca027ec72ccab321519415b70c.root': 15L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_7_b58793dd5f6f79eb2876a79edb883a6152d334a455c3023a2240ac46.root': 58L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_37_fb1caa3b003e5bd16e03b43603f5809d1ed1f68e9d863dfb4fb887f1.root': 35L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_10_9fe6c025a4da51c4b7d435e6c47276eff67855f7204fc274ffcfc83d.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_18_285e4e573017e9af3490bf6332df9329b2f110d299de799c3d1cd9bc.root': 9L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_7_2940ce54852b26e0c1b4697a8178187814439d2b5e45316e2e034840.root': 39L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_4_abf17321a1add79b866514320cedc3ebf47f8d7c21f65c6a8c6569e6.root': 37L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_14_57b6c923b646a233943d35bd818a9eafd0aaa8c49a78c651cfc74a63.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_33_1f11dedb840f8a82a8b0ad58efdc1752ccec8657aa640152330f4df9.root': 32L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_9_ee3bdc02ea5e3e05834fcea3091b256ad16471494a6dee1790e5ed63.root': 42L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_16_7f32bf1dc12a21ae70c715c052f4f72ce5b1af8a3ac0a412abc1447a.root': 48L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_22_2130315709e215295a7c52048086bafab590abd28ba42aeb4908725a.root': 15L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_35_501a1b113c801ce826dcbfb4c291cb47074199e7e147b890baab860a.root': 34L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_32_7b5c075225d29468e47fb83f43d4143d96eb18642b0ae20177fb2865.root': 31L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_4_eecf06d7e104a7480eb23185bfa7643dbe70c149e5a2d6c8eec8475d.root': 55L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_5_cfe3064251f071e3149ae8736998a398079272213efb52f4d63124ea.root': 38L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_3_0a4fd3a42d48f6e95afa7c0818cf69aa907f475d959bea04705bc28c.root': 37L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_15_9e2d6fc76fbc8e4c9d65c52d76128bd00b4887c70a42f609a53efde1.root': 48L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_8_bc3701a89bf6a0e9abb1adb191fb5d56f9caabe7d6834fc7004b4714.root': 39L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_34_f6f6213475706c67d1a4ab973589822b4af95900ab1edae8ce72cafa.root': 34L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_28_a0a5677232ea96aabe77233eca243a7adc7fc0797d0a88f9f07f2cd6.root': 23L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_6_1b4b91016bf77ba4f73a4e07098cbbf55cb4b01cd38fa2c0f7640daa.root': 58L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_17_d113a167a1f7f526d75efa2a756463fcc1833cac7b8a02157da761ac.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_23_cef3118c1d0489064d2ce3efb0d8b8ec8e0d6a8b1971e3f14708987c.root': 15L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_6_c0a9f23fdcb577f587831a0d7ea9faf2d19156a95b77837feee32963.root': 39L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_29_ac4afd73845660e2eda498a0b68855abaceaf1bbe5a535965b656046.root': 25L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_8_6c5352e94564f312ffdb9dee05490c6c2427fd6d91ce701cf38439de.root': 63L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_1_005aa1ab4aa37b8d627a4b3c6784d442c2e51ca6a50f339414f91816.root': 52L}, 'ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_7_75dbc85c0a7f7067326ee44618276d0b4ff0936e18694c13f416c489.root': 100597L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_14_bf19fa4272e2f0fbf65542e2b727431c85316e0ac50a1650591be9ed.root': 15354L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_18_5ab0960d6eb3388d5219c4efafc7f103403850e30051814a519ca601.root': 26906L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_23_39588e11c80be24097250c5c27b121af5c3c796b144157d4399a49ec.root': 46302L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_12_72742f3b7fd9219a9ff682461144e6deb920e10f243cc329fde5d9b9.root': 7651L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_2_5184354cb6108ee07955aa26d97c0b98a43fa57255c1b6d8d5e7dd06.root': 73590L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_29_2806e61b6cf7a9ee5c5827069965bbebfd40da7b7e7038824cbf4882.root': 69648L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_20_78dac79a963950442c9bf8b5830d36c63b81bbb7b97620c0eee881bc.root': 38540L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_24_baf6199884ec407d4289aa7ad037b15edff628284bee3f3663839658.root': 50277L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_1_4a8f15a5d0b22963463a6607414d414c154289c1b33182c39b62ff8f.root': 34644L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_9_4756c34a8ae048783dbec1e96e2f6569f24a1f19030a0dde80bc4ca9.root': 108348L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_13_586194fc9c835f55a8b57815f949fcecbbf9f9763ac48d2ecbcd497f.root': 11480L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_16_e7bd18fd7344160ee92394a39306eb466dbe5072a8268bc59f1ed7b8.root': 19224L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_4_ce4178f5fc301c0d54b3abe6105467905ab912fa88e3344c500996b4.root': 88892L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_19_fe1750d2d1a11eca83e252dcbd5f0e9462fda307b16a6e7802b5598c.root': 30735L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_25_097e79885fb433e14127a0d3bc1f102ccde0ffd3dd65c8e9c30fef3e.root': 54152L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_28_ec0256c3b3c0a11bf527147bd23b12b5d4f9ff7b2e5e4d012c641446.root': 65795L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_11_38a53511302f3364d3085d6ec6c4fc75d61eb2ad162d0dc67bdfa9ed.root': 3804L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_10_7be62dbd6286aeddfb81828bb50c3ab544d47276face2d272d0fd4fd.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_30_6dfdcf44a2fff415f2e32926d7b8dd7be7b1e3d75b95ef2a08dc7bc6.root': 77451L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_17_6db5c9d6f8351545a9851543c1146b73b61f28ee4630db9b4d533764.root': 22995L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_5_66d6c91eec4b1700d509914c48055ca9e5190f0c34047cb3b8ee8fdf.root': 92843L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_3_68f1008a0ef6fdd1705d1fd2db192509fad4fd4330face2c229d009f.root': 85039L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_6_35948ce4ee37223f6c254c194636026da4dd3979013d4e0972021d4e.root': 96765L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_31_e7a107d638fe6e58354084526da40a24ebe52ca1a5e8ec525474f365.root': 81338L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_8_b2c59cf4c347d93c15c48a0749fc6087721eb754af159b0244810f50.root': 104477L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_26_01e512e66ffc95dfd12f3fc1dcf717883aeee21528d0833e91c421a5.root': 58036L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_21_154e1efdb1f68a7f1d77bf093be4f690c61df6279ecad0aa5a5b4a99.root': 42459L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_27_01589c2fb37a1299ec1168aa6f11c6fbda69185a20edbabc79566f6c.root': 61934L}, 'QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_2_34a664691eb4665376a74258a0bb2a46c6572970c7c5aa54d3dc0abc.root': 199L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_24_43504b72b7fa87683a733a1d98a3a4a50c951866e00af009e6113fd4.root': 194L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_1_ccf0b7cc494793cdb030f399670de5819891d62b53e2128fc7c11026.root': 325L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_4_737472e64d7734f886878cbb548bc46f168477eb10116ecfd87b9435.root': 203L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_23_8387dba763d06593e0440ec7596077b67d58c83f64c53681c8150e1a.root': 172L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_6_1a912b49a527d02c6c849a52e536176e38a626b412ea82ac661e1241.root': 402L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_8_6d522c20be2845799c751bb83e275328423f9bfd42cbc9188a76d9ab.root': 234L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_5_a0d4a628544c3013fb3ac6696ef6da01cce689d85acacce16f087761.root': 211L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_10_413c3bbe11a26dfa11cbb1c69bdd0eac475cf52eb0444dbf323ed80e.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_14_32ce22eb3c7e9a6c3309bfcaa764b1fba08d587fca8f2cb6c9e44ed1.root': 53L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_14_8bf45bbad7e6ea6d223af0a934d134ce02be270cd0368bdbea5cf80a.root': 317L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_3_ab918d33558c4517cb192f94044ad56ec3f84ad3148d2d57917775a9.root': 200L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_15_88e6c3c98c3f5a8847e830a803169e54c08c4904dc39a3458ad03ed8.root': 64L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_11_860e75e4251ecf0dacddc419f4ab7e6703679f9519d1b1e8d1a06617.root': 17L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_20_25b805a75ebb47812f608b196ce0d5f669c9feb6165db5b64044885e.root': 130L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_6_8f37b9ee98509b29590e767448342828a0b11d2e0b96ee05d54531e1.root': 213L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_11_788a00101ead1e2b6eac13b2ae59cfa639c991ef8ccea5c9a54a4a66.root': 275L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_5_63600ca1210f5e668efddfec111b422a43db2a2cc895aa35cafda9c8.root': 384L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_13_42d064e600a11663836a314ad7d39258b3b0c381f26ef068d556ab8f.root': 44L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_3_bf89fe89d1ea21a18bf067da61a310558a076f43bad3ee568f7fd2fd.root': 339L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_13_a8fe6e53ccebde99f43115ae3d150837cb030096874fadded1e786a9.root': 310L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_19_e05eb46a6b04472f8acadb7242da1c9832cc5f5d46f21b79ca8f0a37.root': 114L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_9_724a64470569f242267a848db3ce450fbae6e4592994ac91bcc0bf47.root': 447L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_1_327a0f32a598d38b2100d210b79ec391026368f183ae19dad4eede3b.root': 128L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_21_122508a6c4ecaf2ec559beeb1df94b0b39404bba868cc18e671e3188.root': 147L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_8_b77d6035ce5739ff8f505918c0bd50d93a4f32ed7fda2259ee6f348d.root': 428L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_7_8153865d0412e7e6f0867ed0524137690864b3be693b327e9dc3e89f.root': 409L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_17_a1a0d237c41cfc369cc944c584b34a43459d52746896bffa950de887.root': 90L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_16_853d9132146eade84956ff941eba0c51b1ab6ac6d71d20e83c0e6e8a.root': 80L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_4_bd4e2de673047ac058504ae5cfa8a59701eb05d2353ea4cb1b441cfc.root': 363L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_9_f23f8dc4a350d427368bd3d715e1b2206de005c8dc8bab2cac1ebfcb.root': 252L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_12_1002487dfec2b57232ab8da70473c14998770106df927ab66715f978.root': 36L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_22_619e374419cc22ccb63e97d09e4a545a612d78c12a2b7a41d5b4d1db.root': 156L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_12_ebbd8b9e206755b3ddc3afe28bd00288df1c9c1b5a4f0bcf3147f9b5.root': 301L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_2_809a05de77b68ada965ca86967595e167a4b511d222c438ac508f725.root': 329L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_7_fb7bd803ccabb62a97aace0066bfda8e0b2aa1dd908bbfb6e35acfdc.root': 221L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_10_78ba4c3b9ab3c0ac403d7d1badc51819af449ce0ddf65c624c13d808.root': 268L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_25_c4368badc4daf5713b40c2433ded24fa0c34714e7d0c4bf1baa52991.root': 194L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_18_054343c09315130bc55f009b461c8193dea0cbf1cfa42121bd9b1e0c.root': 91L}, 'ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_2_8e605f2d7931c86c29aa00e6ef7c3a1ab22ee25ccaabeea633350183.root': 33826L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_7_8a82f15c79fc40d4434f001b278c52a3f61e26af753010aea05bec85.root': 170362L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_1_014220020e362bd0ff4187731b1e98affdba25824ac4b0aa4b781b4c.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_4_e5f2437c5fca3cc793943491d294628e757d191b97a50f2ef1a4d90d.root': 79889L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_3_6d7756240da785cd73162ef8d44fa4d4732d631d58b903f6a7bb56ea.root': 72319L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_5_da32d1cddf3c421ad9b288181c8ef1280b638d61086a5ebc5869b87b.root': 111441L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_8_312f90fed942188af163aad143709da50e6299b471b2976bf7cb190c.root': 184819L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_6_56f7cd1ca949aeaa3f6b78a2065c5c7275779ce681121fb5af9bfb6d.root': 141710L}, 'WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212032_0000_1_65b849db80ee209901b9c9cf01d21216cb61e448154e4913260d7ad3.root': 419860L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212113_0000_6_3e8ed993d75402295b73130d213fd49e9fd8d1a4d0c367223cc25b67.root': 153063L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212113_0000_5_9cb10619c0a963534709d75f0c28557b7d6d528557b526d8b05a76de.root': 40948L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212113_0000_7_edc72d7728a38cc9de938cef84f8aa1b787823072673a62baf23ef5a.root': 313914L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212113_0000_1_9a4de8edd97ebfad89b62b6deeb9243788e664a3fa8176ff8a93eff5.root': 0}, 'WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212356_0000_1_90ffb0f57386e4b096febf370f8cc916a94182817d2c7c816bd4bf2e.root': 423792L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212436_0000_1_0e9e5da246edeaea8761e0a15c86c9d1c682e1a4bc958ccddb940506.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212436_0000_2_e01d71ff60c8fcec959997d7230aa9894aea7bbf45e548612e0296ce.root': 139048L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212436_0000_3_cd1a96d67cbe5ad6704c4fa869162dfe0a96312fc56a9c7cd94f55a5.root': 255381L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212436_0000_4_84ce3a5d63cc8ed1ee5c9f790c86ab0d36f4f39343869a19d0419805.root': 306641L}, 'ZJetsToNuNu_HT-1200To2500_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-1200To2500_13TeV-madgraph/tree_-v1_190523_213536_0000_1_63f63ad0bb269bd628c24ae47f5242d131c40d47e323bfe1190ec4b3.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-1200To2500_13TeV-madgraph/tree_-v1_190523_213536_0000_2_779962a3fb891837d8969fea9baa9c1051c7c8ec0b0df1fa16e166fd.root': 38L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-1200To2500_13TeV-madgraph/tree__ext1-v1_190523_213617_0000_1_0b38f6dae265d36ab081e46754c61808b373e2f0a03d16f0455c28a3.root': 0}, 'ZJetsToNuNu_HT-100To200_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree_-v1_190523_213408_0000_2_44b186babdb12597211c507469b8d8ebca55ce1560084fa89a17c0d2.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree_-v1_190523_213408_0000_1_804b8a8689af098c1d2210c54c6c047a3679f5a6f4f4295fb5261b7c.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree_-v1_190523_213408_0000_5_0d7c6abe3754b71b073a4b72bd180ec22095e5b225347878b080f99e.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_3_99726b62febf45c53ef007f44c2c761841bbd935e482019aabaed45f.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_6_f95bd5cd9abcb884356c32ea54cc926cc92c1b828956cf917981c4c2.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree_-v1_190523_213408_0000_3_7d5cd1c42c822fa2c11fe4251d6e286ba5f52ae886640a0a32d74e85.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_4_f2f4b8f217a34df394f6b6dde9227db16bc6076f811028bdd2f9573e.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_11_3c054fb443778508a03be877b95d3fe6adf5ac68422fdaa2c3ad4983.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_5_2c8cc4c5243102e6ca7acbe27e433f4acdb0876b9924de7bba13e91a.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_1_5987421b9c3faa548d00e069200bd8023fa5f09ddc0cdb41cbc60182.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_10_73f09f51eb6bca90c6a87c17c4c88181d301f4a8400f41dad7434bfe.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree_-v1_190523_213408_0000_4_cab4c0b3a6abe2cde677044cbcce5d566845bcf82226e7bb685b445c.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_9_8c143baf32d16ef41da309a644228c24fb8a862c07d1e8fa384230d9.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_7_6d3e8bad8bc294a7ccb31afe8d0fe4ef64ea05ce7f6790eb054e4021.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_8_3d19006ad3ee1247965a790beab12a41cc41a3f03feb7921cfb9d8a8.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_2_0bf68f3cbd730c14167a3346759382cd1106f8d1f4da01d2f1167b2c.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_12_26015ef8aff0c32d6e2caea0d5df6fc7443b4956faa6847695ebdb7b.root': 0L}, 'ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_6_86b42d9613f70d73a9c15e4d182fd7cab49210f2e14e9b98bbe50b61.root': 35448L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_5_90c2c4d2f5a4a6bb400b55bfbb6f2959c3a5db935b0a5eef47737937.root': 32241L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_13_1dadcac7c0d7a47d39f8885b83d504b1d4da69af8bceca765f8fe8f1.root': 9796L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_12_3fbf475d83db08f836f405b52f319ecb81b4b2169a418a21d9dcecee.root': 6525L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_15_09a6f825f8202d27f78692080dfd017f16f767e2aebaddd53f0ceba6.root': 16323L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_9_2945929d81b1cf11ff4175882415e850e98137e8855807c67aebec48.root': 45184L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_7_b8ab7e9997962301f9151250c2e2d9f17724ae50f10b02c00ce02eb0.root': 38741L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_14_44087b48de6928ce66610b1b22ee65351fa2e092595c6ac8af34a495.root': 13043L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_10_31b0442013d874ef417066d82f0cce82bcde99bdde15a9a1ad4cc4c2.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_4_a537ab7193d122c20ea938e2b8bcfdeb13de0edf8414c1c772bdbec7.root': 29003L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_11_5adec9bbd4785442dcf8950e27658e218e40e0a5852e62296b2ead0e.root': 3285L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_1_e4cc7a03f799620872ab87b0608a4606c740f777c4ef8ce2fd367699.root': 19255L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_8_bd5a4e5b1e9307116a4e8e80c6ddff7c6182340ccdb4b7946a9c32ad.root': 41875L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_3_b253a0a8f4700151a3493333e789fea381eba1b4b337724465a59649.root': 25780L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_2_edfedbf2edee77531fbb74eee8117660ffd9bbf1b362005cd1cea2ff.root': 22526L}, 'SingleElectron': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_48_b7909f50b3039cdeefb8b2eb4e0533f9a75ce26032664e4d17f09840.root': 334376L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_2_61109abb410ced3baf66ae42ee00aad05ecbec48e5ae9877b363c942.root': 156274L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_18_ed48244fa03cb39b93ae48786b624bfe4b5df5eb9b65821985b2c2c3.root': 195670L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_8_4327f6b66fa27672c23f4e7d5d540000ff1fdfdc4bef7ca91939a8ca.root': 574382L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_64_2dcca8df31a86f5c8195eead4f31abeb8961b9305bda7964a6747e70.root': 546233L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_11_2a4408c96f2e9708ab5575183a5b7795f48e784296368975814144be.root': 357518L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_1_26262de71af26b980b45c9fd34e2a3f12c02f5ec114a2eb43191fd00.root': 27500L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_92_d3f49195b3f0f53e690b72f68621e9f82b0d9683aa20dbb5c7eeb866.root': 120103L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_6_5ef56eed58988ad963493ca951cb1b56760eeb2f2134158ce40bb100.root': 349752L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_103_e66784e8fd2f602c5c00cdf990171c1d3aaefd4f7186398d1c6180b5.root': 3261L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_60_4e10232176514e8b47a38bca780b6b9dae867235020d8e13f0263931.root': 742012L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_57_133edec5de413a2c4defdcd106779ba0d13ae5bc04c61c141ae4331f.root': 73920L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_58_1d5c9148cb72a763e043e754a6c5b9a529982decfeaef1a59a86293b.root': 75132L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_44_722042fc51f7cfd8ccd72e675e56eafbf498749b8a472c94c7b76664.root': 230238L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_13_2181ac9253e71c3945b04b210434d48f51e6f81ed70f9b1a412bb3f4.root': 19054L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_36_5a5924bc52735847ca07071bd0d450ead69db9d7c51ee4d771672894.root': 164414L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_95_e416c94c17c738c514d62a4916caa0c9b6798cf144b5a124e4973c9f.root': 123465L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_23_025e7d09704203dbc8c522cc351bfd3e2ae3c22f6329e379f4bed418.root': 147451L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_100_ab0bbad3c15f7e79172558d86110d6ab563985aedd2cedc31959fcf6.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_29_9ce9cfd56c498d62ffc556fd8869cd3ce78d7347d4f4d0d9ab8547e9.root': 303004L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_59_fecb475a20900f032903e45d82dd1c444a49e29194306cb78dac0c71.root': 249291L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_41_02ec1936188d8f51e469cea2a382fc49923e6202bd749194c80218c5.root': 493894L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_54_2fd2c627400f932a3c2e95f72c873947dfe87037de912d30a4b762cb.root': 725617L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_14_2c077bd96f6b0614a103bcc0903dbf91fb12911c738297f7a846fae0.root': 590734L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_34_e15b1db32066ed560a33f658c93a51bf6baa44de0456e6b362697eaf.root': 404683L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_14_c35a1ac9ef35346644b2ab593bb9c0884cd6ce1d540933ad4c41b169.root': 20112L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_47_c4ac5f0d151e5ca971641d8ed86a25f8be23013dca508e2d2e17e9cf.root': 233790L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_76_86f40e3fbb0bef82aa09125392a1ff25419b4c964c1d70421a091b7d.root': 98705L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_43_d28a965e1b455285cd707ce0320cfb35f928f188dc1e9f8205705387.root': 497814L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_34_396201b7a5dc6bc9f00375d5604b6d29a0976b37de59f7c1dbe18b12.root': 216613L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_57_8d83c8f44359b7a7cd8e49fed06b8dcc05534bc98e5b6492bb55bb6c.root': 246876L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_8_d5ee2fe1740cbb5d976cd1edb7be4360d21a80476eb4178a40a2f5e0.root': 270975L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_21_c4df5a48b62644886a7c7d5e024ab179eb4c84ed99fd5e7419a7a22d.root': 291069L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_12_f748223ce9423d0a7c4ba08d0896797aa4d2307fb920d1d3db33fc46.root': 424362L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_110_e2c6caa09c1e819d233fbffc3a43efc937a324a4693f690c2772aa8c.root': 11886L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_28_9aa839d800768ea73ce3cbf6e397b747365cb09d28273197c06d00f5.root': 391911L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_5_3aee10df3116f7165827fc92daf4db777980f0ee99893c0b3f01f2f7.root': 738707L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_66_67439803a0938c5b6196bcb7957c8fed4609be01cb9249f57750e88e.root': 550991L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_33_a849676d403046fde583c9c93ee0f00d96f78c0753b38eaddb4a9fb1.root': 402848L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_39_9216a43b8ec83ae6416098ca44250e0257aac328d7fb8b7891e84d8e.root': 222896L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_19_c92592e957576346166f9a3d5e29a1749d88453ac3e5c9605e2790b7.root': 372408L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_65_9c5d31b62da1216518edf76fe226cb070103fd6e4fd6270d4170e1ba.root': 548752L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_46_6601450ea4f2b2aaeb686a443b08d6da511b7d9f68f04550fd76011d.root': 59874L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_13_5f556bd0cdcded5910854bba3f4e15dbbaac496dbb703d7494054669.root': 133767L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_26_164f16b6dde4976353e12c1a9343e72355bb68b720bad87b86575b60.root': 631378L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_20_07eb12ab28f4b948dc6c9a35af16829bfaa7d48533a38bb291f3dc34.root': 198382L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_51_298d0e1830f9a675a590a1a6e5ea4e361275eb9fe01cbee4855f9168.root': 340662L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_21_f090d18315fb06b4d3844759efc2bf971fe1d2547bf022abed015669.root': 615759L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_74_c8287c7f8e5ff8d56da7dc609ab6fdbf7a6c6b2e7319d4cf31711795.root': 269221L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_17_32586c56f707e4b030caf3c857851fd785b17546d1b42bbeab4546cd.root': 283814L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_15_1ac5dd192c811d89e6023d0479abc4d1c641b0114ea7c639030b6965.root': 593869L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_37_e29dc249c5a6bdfc44338a2c157ba60f401d9b40f8dd1d156efbe6ca.root': 165557L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_16_2f5458dfebe8de71657b12f46df562b5129a1544552fe698038a7e5c.root': 366807L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_105_4673bd7eb9ca80404051453777822ba18c12b4471a504d34dad0ecc7.root': 5436L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_25_2de83dfef4115a0448825db1fabbd8fc502e2b88e9640df75b3ee1e8.root': 149918L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_2_78e5b1ab2b6e655afb17088fdf76dbb87a88275ad349ad3e60b48e0b.root': 642977L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_72_a637c16115df94f7707e1c56f0243d5bf25aa8df574028466671871c.root': 566770L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_12_c02e55a66ff1cea249569a06464b21e8f55cefba5a671133755572f4.root': 17902L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_54_57669ff0351366c82ebaa2bc27a43fcfac7c826c7a89de3dc3568183.root': 524840L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_7_456784d4d531aa9ce0a7ed1b042739c00b1ba0892748f063306e5363.root': 571768L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_29_5a2934825a9075366a73bb477d9db9ad5f06693840ef2e8236561b51.root': 209286L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_53_a2b92a59ccced57f84f29d451a30df03572e5802f7867faab628814a.root': 69112L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_10_a1a71c4ccd5533cd19ca5abf1463796e90510aed331dd67a021d2350.root': 130109L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_46_7386305e0ad2f2353966eaeb53fdd5df401ae7464b3b91e7cb1b9d04.root': 331215L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_35_3d0ff34f38a0daef5b0703b06491abd8dc0246ca0d3ac092a7fb9117.root': 217810L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_29_0fe95969471011cc7c749c7fa01ecd26df73203709d1ff7f4b8cca0b.root': 155013L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_39_1d5dc7faabb4c5baa10c7fa88dc0a38887648b42b8acbfc2ac93509d.root': 319315L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_40_7cc533f45abf6457162d0f8ba82674843d8fe211cbb4f92d398ea322.root': 322379L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_54_39418ff1747cf1c2d7075c6a1de984c17f51666a35767af82b3b2847.root': 345324L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_6_019c06947a1fb0ef4c4196d4301eff87b60c4948f431b84824987a87.root': 559796L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_17_d7db2b0073167e5924b6dce18bd24156c0a0224876082b91aaa3b6e6.root': 194447L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_72_43b9856b89ee66b9f250f84f8a41cdf978ef831d3ca57cdea3975e9e.root': 266892L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_50_676cdbaf8de8cba9305189ec86682450dea707ccf36990af8f2d7705.root': 65239L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_63_9dcbf7bb97a8bbc4ba7337d130b693eb5e819a455289fef388694c8b.root': 543882L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_49_18885e05199f4f944a04857f00f6cd9ab67c633c488b77e1583a805f.root': 63187L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_29_52bafead89c60646d274157ea15411830df48736f9aab9044f24e20e.root': 639955L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_107_a51e3ef6e1977c7d3ff9985ab7a6e14fbdada571e9e5a2611eefe401.root': 7852L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_7_41f8a71011961834c88799b363e8bb5977203cfe232a7145d047803e.root': 269771L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_3_8449bfd37836e1c971f809148daf8898412f9257df681f67f19224e9.root': 405009L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_14_0aa423469f78bcb3004f35222fe58689b9ed0aebfaea347108f9a4b6.root': 279628L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_7_18e7c7072d81c2640723e95eb0bdd189d3ea5cc34f4c08c1b63643aa.root': 412995L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_91_58001ad89c55889daf1e7b29c7f2428802691d215e4fab885aaf865a.root': 118951L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_8_98c19a941aa8b9831f1e2e70b9a0540cc1f3e1c300629da2c23e06de.root': 755269L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_108_63adb972d1fa4905788e3152fd9f75e03a019ccd1f8805a3bc76175d.root': 8943L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_46_cdae0cc48c991ab6fef14404a67bcf087ba9fe90fb0ea1d58269851c.root': 177279L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_7_aa900469b2b4b58f78659ad6a9937658d9f71e159243a1da984f42d0.root': 182064L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_42_97eca8399e0c87da7d6a6ff1979332774c418cb0fc4449787a907b98.root': 325283L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_67_4d158fa28b60410143e741a8ae14c5cbeb5b445ed713569c5fc8732c.root': 259441L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_47_ce60b3e572bd0e7a4473c370ff30093583e0d38b1c2b4a0a5f6a484b.root': 332800L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_14_cad69396cbfa160b4283f1078e0459ac13c02a858030de0fa22a2f03.root': 135104L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_24_f34388d3e3606901881ecd961f681d403c8a9ca0449fd70b7b9a387c.root': 624849L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_21_ec03b2397ed4ed55880bf278dabf42bf9015437a607e0f8690b78486.root': 29792L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_22_6321cc754eae20a7ad5e5ca4908a1adf7729e425538e7ad5bf751376.root': 380011L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_2_b5fe2672cbbf36a4ba2329973220081eea6c7ac82009420590975c6f.root': 40389L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_39_2d77104a4e29c4814eb6636a441c9f680fcc660b98e93dfbc3b0c99a.root': 51162L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_90_6932fb6588382717f528b8a01c2e07d49a1ca8571d15ae65216075e6.root': 117595L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_34_49f4bc5479c1334a989569cee8018c4452e96bab5006ea9333064636.root': 657959L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_4_4f96561772fbf49c84272a6d998e9bf51b6fe4d27381a80088fb0b9b.root': 64107L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_38_0e9843ccce500a99c86df60954c2c12e8c54773030d9962eebf04eff.root': 49835L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_44_92b1c3342408ffc3264da462b3d49dfdf304b5a617be5a190dbf4169.root': 690990L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_27_163b65eb6121b48b24fa1a89506e31a1129e5330d73f7f8864714675.root': 36683L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_29_0f9cfe8bd7a4a6bc394fb288e406124180e42dee43959d61efe04177.root': 38995L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_34_52e1a2f96f5a2a5d14c42f1dba2ebe57d9cd79e5e151ebe4fe97b79f.root': 311630L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_62_9fbe8b3cd38a52409067d84bba4ed68af8332fb1f64dbd655d2aaf27.root': 747933L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_33_0d230fe477a51697e336a65bbaa161512dbba0a8a478f79ddcd6c33f.root': 310245L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_25_0c37f1506876843e589e595fd48a7e15ec813f919ec06f6b503ca9a4.root': 455673L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_7_f874909579b54d1ae510c26112b1e6cc5fe812830f22fdaac89d6d2e.root': 103451L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_30_6f5e3ce234f5fb1597095c3c697628a8d5ae0409389c373987070118.root': 41017L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_17_bc2280c3f570c3bd543598103d89ab2afc2ec778f310914f302bb936.root': 368738L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_53_38a4d116efd96f454e78082a228fd267017bfc7f2d2cd2ab4b5dfae6.root': 722676L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_36_39381b1559d173069b8c58e438cba512f9d2eca00faa8bf84c9c8d14.root': 47483L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_52_943c9f963ccef6bf44d13979a5c23240abf75b0ac762b8cdcdd27643.root': 68053L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_1_db89fb5f3589b7f90544fda41bb9b7900c48ffb1df08c54e0d6b558b.root': 608832L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_49_c1cdb0b2a827490a9c665b93b230169f48064fd4109b2974b6a92bba.root': 511168L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_19_f16b5bb0115841bfaf70dbb6c8e11500ad12a5345bb0f235299bd617.root': 196881L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_22_9244140682bd26388cebe741002d409253594f5c4d7ab974cd171646.root': 292612L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_12_f148d750e3ddc4288e250dbe6ce258691a9d6c9ec4bba855af6be50e.root': 132501L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_30_7764a9e7368f4bde4d5f7343d5a488069e152bfdfdd6698e48ab75e8.root': 211844L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_17_a04b055b79074534ef5ef5b3604c959f144e983af306668b03c9428d.root': 138769L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_14_00c5b9fc3a6219d6389134b81eac4d37f0d9f1da67aae5fe059e1e75.root': 190900L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_6_52436dda0264d3c141e6d5e61734e3b64aae8e37eee6a8e4a6a64179.root': 411185L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_9_537403f1f2877edfd5ce7c08d9573809e8a5254bb164446a154939b2.root': 129182L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_11_30e82befaa9b187ff898c940ee863dac417869e0ac24a4219dc05d4c.root': 274860L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_62_0baa23aba71553e49d116d2c23030ea1fa06a8e3dc4360a2b2bde84c.root': 82237L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_3_fa2c73ba4f2f86b8a376f0867f485c8d1230e67b6bddc8b3d55348a6.root': 224139L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_67_edd948fd5880537490932e530be9305d1c7a2f70c78edadf28b83b7d.root': 87608L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_27_b9b5de864aebd008a96c3d965dc7c830ad988a3db5f874d2509ed990.root': 460239L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_42_a1182805773bcca8f74c6c41aeca71f5a659b8bba311188756e7785b.root': 495694L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_66_b53bebc0e3311f019b60fd7240621e21636c2130212c34f8c2b5db97.root': 86592L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_6_c55b12e8f67c96ff40b81a681d0d133aee4a683908e552ef161ad4ec.root': 91118L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_60_1f2bb2705ef857767d821653cf4be4ebfc7f82c15b302f68efb97693.root': 251674L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_52_ef5279bebe08f5de80922d067d4daa0da429564dbeef73a70a224fd6.root': 342185L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_114_53b121eaf5f18c7cb82d30cab53239f2a223319a67250affff42134b.root': 16459L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_24_1de260818e1455e37bb5670324ad404dd2ea4a7b4139b43063b78655.root': 33039L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_19_5531ee3c04353c3d24ecc5b8fe28770cdaadd372892095f8004e84bb.root': 605755L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_4_339367274927c4a037d1293405bc2b7bf8c910818549e20fad56e3ec.root': 178996L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_36_90a0e39201f4917b9a17d6330c411c17ddba963f7e98589be20ec02e.root': 314702L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_6_3a4b55b48b2b29ee71e0a20c3d50a76952af4ed820aeb28431a0d213.root': 748810L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_16_52dd009e85927dd6d77f9e08ffbcaa3f46792c256e8c26ce883b3afd.root': 433718L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_75_7047b799134df6f480b5e037b44ed9cc53a72cb59798fefd3a99786f.root': 571534L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_49_7ab07b318da454373739ebf88da87f60d8f917d0e45f3dfa32445356.root': 336116L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_50_1b521087ff1b235187e99742a87e95622cb4ee2d28f7459dab92fd61.root': 712619L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_21_abd80a18944692adbb06ce94c3e2a6dee60e52f10d61b81777df74bd.root': 378146L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_58_09f12b08875753e61ec35dbf4a6962c6a97164ed74b9a53d6ef7517e.root': 533397L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_18_4fc167ea9fc0c1a41e55f46d2550086b18d457ac169016cd4c81d982.root': 370497L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_101_c8e954c6ce6b07ad31292912474c89478d9ae6464545d7fc29c31aa8.root': 1095L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_52_efc3b073101f4d3be2fc895abd650a8aeab41c7fd57ad583a192e900.root': 241174L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_75_1b5b0a6d6fe1a2e10a6692d56452bc2df59e04f5f5a72c17a0a47ff4.root': 97646L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_5_ddaf55afec28641857966aa058cd09dc3c7d58798c21a992b13616a8.root': 180123L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_42_6495ccc582232b9f5659ba21b1acbf1b97f1a97731225da08ce1d097.root': 684372L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_9_f8c6ceec826584535337e1bd72c087c6c1e92b7d318591a73016d33f.root': 416566L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_59_8cf8c2c15d57a53f25717da650286c685c4770e3f620f8d66d0b6d33.root': 737257L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_42_428b8e7c3051cac64fafd9717131d301a41d2ca1b31645cda034ae2d.root': 55514L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_47_def8c5a458ddd2f5ac9b8335049e23d142af86a86c2e681a9baa128d.root': 61016L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_33_5e3dda8f6b57f4854a0e72581632d2abd45ed3681d89e1880f8c8d60.root': 43933L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_22_2a25cf55a810ba61f54d3dc9ad0c48e1fd87e6f6b6ca5728801777a0.root': 448518L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_27_fd4b436564a082665001f1ca64d082065b1f24eb50bd07b729e55e89.root': 152484L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_37_6135a15a9ecb66f41d1db6146c46ef811a9b5f7d750e3875c669e766.root': 48689L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_35_99919530ae301539aa70258b6d347893a66331169b91bbf2dae8941e.root': 313187L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_32_78d94592949bcc84bf96afbda3015a72ad9135ae86bb5b87a098df83.root': 652098L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_19_654bafe3d2ce78569a2ec598b34cc4c8ae5af3fc78b2371b448d7145.root': 440179L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_38_d46ebc81a21cad2093738df32de16bdc0d57baafa3f2ccd6d5bc3f6b.root': 166778L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_36_8dcce8e2bb8e5b31896d9c33166b7a94674349928f4d48593db07a99.root': 663777L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_55_d39a61bea743728cef00326d87e3769bc567e65afe3696f104d0414a.root': 526954L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_47_7ff2e3d178bab24377770b722ecf72a9af22460b5b0286a040c4ee15.root': 178485L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_58_2f5beeab82bb540a16506825958b200d41637e992f84baf19a12d3e8.root': 248056L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_32_04aac5e49dc2931147397b9994ebfc3a60225661171cd69635d6d098.root': 214137L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_46_1b2b0f4adfbb16aca63a27d6246f3fda64a79d82ab0652b002486395.root': 697531L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_74_bfb637d49333021ab8ee8b56d54c9c53ee6475984e6bb75ec2e3e012.root': 569443L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_45_d50eca64dca9b01095ca8b766d96e74fba8f32a758f6d0394f1497da.root': 231474L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_45_07714e0025dced20575bb510f7e6111fe78341f58f761f7dff25b66b.root': 329594L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_20_e32ba0b1db4e201827b7c1899fd1857bb95b5261bdd0e23a8d75d7bd.root': 376320L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_27_87e53028727718aa7724f8ab74f1100c164e6f584529c49b98ccb753.root': 206903L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_58_c70517edf8c08224ad7f6d11b96b2d09a88ea3faa90fae8feb13389b.root': 734294L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_1_8fca5cd9f8b3025f14358ecf808e20c640d09dd30e341aba6ed8db02.root': 288234L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_23_d11f113a8e562a5a1e551b2dfb1d99b26b61893da6ce2eac94513388.root': 381927L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_14_3fbe74d5b5728d0da9cddecb1b0a9a18f47409db2d987d7efcccfa23.root': 429360L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_33_07715bf9881c7aa613911ab0edc13f86bf04ca334c9744cbff1d366f.root': 476332L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_18_01029eceba2969dc9ea99a9d73f601db56f4ff9a6eec0faa8ca62d7a.root': 285276L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_20_2d357daed30266385188d078b9e6ab9df85ca3255dce8fac3cf6b56a.root': 28567L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_39_6d6dbbfae361403f5ef42dc0a4be7735ea987f15ee039786006bc214.root': 167911L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_52_94beea66d113d3eb1cbbdccfbb164404eb0a85e3bad0f7f52ee01a7c.root': 718800L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_45_e19206feb82a1280ce5247920e868e0c079f041d71e6e164ce731c73.root': 176113L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_57_15d209438211163bda9d5cfe205da138e73871083b0986a0d99ea563.root': 731395L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_69_8e74facf78ad1f84c73c2d30ceefbece451c1723abd3b0d4e4273b79.root': 89970L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_18_cd4ca54a49fc77438fd9e58cc87416e89b932a28bb04675bd8af5ab3.root': 25061L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_65_878b2b7fb5b2e24b3cb3fafe86a5c12d5fd5858ebe480064a5ffab56.root': 85454L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_19_54304f2436043da3bfce690cb98ddadcedecfb9766c5a2fa621df994.root': 141177L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_4_b0a3f79ff1feaff5b546a4b3a6bb789a09a8081412cf2dc72782e85f.root': 337680L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_11_d38b192a003af78c5be87015b0a27b8bab10137bfb02364cf55f7dc1.root': 16675L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_8_2c517c773401d4e688da31fff817e2475097455a509baaa52e274360.root': 116536L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_40_024db0919ecc71073d77b70a3003c05ee4c96f29e09a5de4b135e81a.root': 170368L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_29_26f022e3c57635bb687d38678a047edb69cee357b6ac3901f981dbc5.root': 465081L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_43_887cb5a5f386144cafff5b5f8146f4a0e162df12b4df3cbf6a3a055c.root': 56610L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_71_bc82e6ff219b6f6b155b80f4c9331268bc7461b3fc2fd939b3a59db6.root': 564361L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_13_c872995332b57a342818a3cd7d2cd8c28635ad770517bd3351824d17.root': 360979L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_26_97710f2116df7bc05f904be8b4429b8b931f31cb14ce151244541d91.root': 151177L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_84_2f74fa2c33fd5eb2c1f9e91fc913a8ee63830c55ff62fd40c4040757.root': 109164L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_41_c0667b8c17aad3e4eb3615754ac539c567d4ae7874b02425ce4a1ab5.root': 226577L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_25_d574decfc730a38d629d67d24c34bc4489cedec29c16a2a94f658feb.root': 297497L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_37_4d63a51c413a2a3f6206907da7daa37a1501014b6a578d955ec17b87.root': 220145L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_37_fbad24504b3bcf6ace3ae17cb4c1b4b77cd18adb8480f28e684671f1.root': 666888L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_31_c3f766ea40f452305b609e610ecf265530a7a3c386f4f65a1ef4494d.root': 649039L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_48_23fb096d5a8b2e86afead3868b5c6ae0d57abe9fa84b3324237cfdba.root': 703961L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_97_2acc3af7fb8cc9186f76680b3f8ba16455bec7ebea45b84abd86d624.root': 125770L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_38_7b895c8a12ad4cf6465aae6e530982da1639f669e5682a734782dd02.root': 221444L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_8_11cd27074f82efe9b48a53cea3525b07144d35e5a47ccc2691690f96.root': 183648L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_3_b8ea45f679e76ce0dfa2ec40e539332f50d23bab8c50411bf3657cda.root': 674815L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_41_ca7a960ecff087d256546f6b1b9a2969bc4d2e28d669276dad9109c3.root': 171588L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_27_42b458b5793bed1ced043fb783b4e8018d86213d8e146edb3b49b60d.root': 389751L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_26_78c76a39deb8227359adf705cb639b10ec6c6554e9439416eb693f6b.root': 299029L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_68_a9e964b3e92343ba65241eaf61b0a7ed0f3bb33c826f95c55573d93c.root': 89007L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_45_71041784596748d37c665029a375b902c4e1b9ddcfe6f7f3d3e79731.root': 58831L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_83_8aa7cc2a7941bb82cb1835ad035c44c64821416d59584dbc73c2ad48.root': 107988L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_11_7d519a336d2e36a793a73f0e8f31e1ba3597ea9f9a8d831a784b5b9e.root': 581906L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_17_b15b739b40779b9f18f1d6f4ebf65f84f6ea3eb50fcc8e56380a429c.root': 435891L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_24_ed91ec9d404ccee86735b7fcf892b846ee52d504506e2fc0c4b1098d.root': 148647L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_23_fd801c23c8fe6276cd0706791ff7a525f939ac002cd7a656b2030a69.root': 294025L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_70_37882a9e2c31c5d708f1c94f8aea0e0aa3029bab59bf887608082928.root': 91953L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_32_3e23aa2324a006ebb09597f3571ded1300e449252366a6afde34de95.root': 159606L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_51_5122e7d1b1ed8dc47e3df9cb9fdaab1cdfc196fef0cfec44bce5ce69.root': 715432L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_44_171fddb14b540a58bedd968beca57400e7bf2978e7a79798fa444ddc.root': 500154L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_3_125a56e720c27bb74c849d02abddefe71b7ad3f2daf360e4aa5726ac.root': 491456L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_41_351fcfdf2e52c76460c7767424fe880ade0244706248ea651a39151d.root': 680871L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_78_7aa8964c1727d303f69b68408893ed711ea3abfbc86c477ffabae55d.root': 101272L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_28_c9f6fade598695da710922e81629fd2a79ac61b33d97df61ee2e5ca2.root': 637223L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_31_c3482b102b819c2d13117ebdc1557743f4b4010bfd4d3e15e7c509ad.root': 307294L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_10_acda776a68970e40522f2eea3659537cfa000e6acf0834ff754da927.root': 186026L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_65_e1259c9107d75dd9dab044b5c14e72373f14df0aad8eef0e097dd519.root': 257813L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_32_18578666679c4cbc2b8bdb72b87d69183f1fd4afd51002a98c7a6627.root': 474250L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_35_082f02d2cc4e316cb5bedd47c25c5ac906262402161ee1d11f9df51a.root': 46352L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_5_1a5d93a41ca5b53ff44b7c8813b483a5e21cade51a36731c73c12586.root': 250492L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_19_89e308504d71ea61956f20bb18def873928058aa75a4bedde99d8e61.root': 26221L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_10_dd3223a52585631b8cbc9702d25ee47d9c8a2446879b22758193c492.root': 578913L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_53_80538b499fc473b6fafd7e8f1aa4d9132e45215ee3187e7b2a030047.root': 522828L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_50_c700a2f925f59bea5f976b3f59bb4c593df37bb9a8ba120de4298ae1.root': 515893L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_67_c99bff70fe8ce7c82ef567cb6c4c9bf53db716c5af07ec50c2a3998e.root': 553376L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_46_cccf46f4fdf0de58691f938bd6e6e65358c9eb8cc7cc10f9bdee3e61.root': 232575L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_28_b374e4d4ad8340788871aa01ee4fd855c4595bfb277d35b6424b0ec8.root': 208140L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_4_cae2f1d600501a3c550d18fe136d90e8c250434a71fd3f5a5f6a5afd.root': 407136L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_72_1fa239a064aecf4d8e3425b649dbc96f65250d3a1bb1a5c738d7fc76.root': 94038L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_42_29ef5d8f9d503052ddc9c9f3112003fcc86ff40559dfabcb0e20b8af.root': 172814L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_13_2698b62423aa90b83951b1680423ac11ea3d2aaed6d6650ab890a46a.root': 588060L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_30_61f2cff5b389517eb7137ee2255d02fe36b124018957aa280122866e.root': 305691L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_31_aa7bc5accf103ea4366032c565bd4782c1789277ca9ab98dae14c1ad.root': 212923L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_11_1dd762b35c4250fa70c95fde1c05f96b4742c0210baced5a11a7bd98.root': 131341L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_11_d8e68e3fc0cdfa264eaf5909cdeb3708bbfb9886ee6b09c34a2015da.root': 187224L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_6_e3d43a5dc6d707830768657a81bb5ec8f0854fd1394293d545a9bc9c.root': 263159L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_43_10243374fa9d20793d90fa47c3c6f5de78b87c751e8d281a9f1cf16a.root': 229001L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_15_d09f72f7f0099d8589871e56e51330f668d32a36e70dfaaa1cac7457.root': 192049L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_15_451c34c5e5702ce4a24e2435d1ec247a2ee491bd727be2d7dd815629.root': 431674L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_47_9778908e464044b8a0a99b5508af3bb80a384cd99649db7e46965204.root': 506683L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_2_7fbad0608f7646e28287a45161ffc8e212bf6090550fadf4a80c9c15.root': 210594L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_35_e6060f743b4a8717e18604172a1091f2286f7df8f75327cc5e2d76b7.root': 404780L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_32_90faa55faea47e4260640c5c3ea71335cbff94f33a83fbabc45fd9ae.root': 308787L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_15_4f03e3496c3281deba76a49041ec52a9e59d592836c3fda26aa62d42.root': 281025L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_94_3311bf130847cd23aa1c6dc741a226705ee845bc654124b64ff77d6a.root': 122318L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_51_297821f495d435daa858aa0e3dceedece80aa176135b319bc024eb36.root': 239893L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_96_8339e00db304169c581180608f6523d69ea940e8f92576073aee40f0.root': 124801L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_54_55fae4b34e91853a588f25a3b1b82a844410c847395faa53ff15952a.root': 243424L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_2_e67e4fa603bace1dfa4c450ebf12734ea44da59e756db4643be02399.root': 304310L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_48_023cccb9d88619b4b56b24e698b3a47311f4b46b593d736986f5dbb2.root': 509032L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_49_408b3336b20be10e49577c9d200493c179b5352c6a2f97fa0085ab6e.root': 706973L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_16_13e66b436b788319522a2eafc076b77593f1165d16fd1de3fedbc972.root': 137548L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_13_6c1b0d82b8200ab8242a46b08ba27ca7b2e45fcb387626ab9a040be0.root': 426674L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_18_ac9ed0f22d1b33240f211f7106e555b78492f9221eca504fc316bb06.root': 602759L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_56_006c5421525abecdad7223123d624720df94fb76967da4b71f9e7439.root': 72706L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_15_1a155eac955ae103277884a4fe404c949aef99a7f6b92246425da8c7.root': 364910L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_37_fabbbf9126334fb4f9448467be8201439fbe5cc88da3b66110be686a.root': 316240L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_73_14cb6609cd5753ac2b65c01dd3e398902c9f44e14ae84745efcb510b.root': 567243L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_28_805fbfa4e9dc92b2984af300318d6f6c7240012eebd5cdba558e51ca.root': 301329L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_37_74c4edafdc086812a924ea34c7bfeb3f002c01c8b3b6d689a95ff4f0.root': 484901L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_61_4a88ca949208e6cefa8a5d964a32823983a006fe3539b7ef0a9d79de.root': 80758L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_55_85e63c929b7f1ba3ce04edb87080c2f9224eeffe39785ed90d48f6c5.root': 244625L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_59_0b5d37a11015b4c64e2ae4a04199b79807f926e5067fc0108306493a.root': 535505L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_22_ba5ff7c6ebcea9179ec2d3d4dfe5a02d705b999e31f05164d4633707.root': 30844L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_77_43e31839e04d055558307b985a54e676c18730a3865044d46abd8864.root': 100039L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_59_72e8c8e0819b4b166ca0661bb704267c153049a208d4562b3a17b60b.root': 76308L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_35_11ad370400639c3e473f54914e015189b6406c0ea87a9a765e934dd9.root': 660746L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_30_e109ff55ec2afef3cd253fa2880befb1f542a5c45e7cf6d711edd176.root': 469741L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_93_4eb3348b13099509d1aa580e03a8ebc388c28c5460fe06e06dc67c37.root': 121200L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_89_4ec3614785f8f98da5bf40581a198ed271e093821c2f4119440c1578.root': 115197L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_5_3b39f2a7e889ef0b20b7b30b112543f14ac6f9de20b3187b4a2ca540.root': 409011L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_3_5997dcae675420e1bf187da6878eb44b9518d779d6c8035d2a4ca469.root': 169205L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_5_7c84a96e4a69e6c5b6d769b74baebf2862bbf3da1ee18215a1eda442.root': 537622L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_11_97635c4d2525b617d8338f176bbbf2af24579540b2c95d60b2ef2ffb.root': 421035L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_70_297a2b3219362a27498506d7da9aefe0a9842ba1a8b012b33d2aa743.root': 264377L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_48_fce6d17be14288013921b7000dee8b999663a402c2d50bdda4bb6671.root': 234907L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_8_e298862b4127c28fc832f0a721220408e4c1980a2c8891a725b8c481.root': 414637L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_22_bfa5fcac89b345d121eb780321e6751862fbf863837431d2d98b4dbf.root': 618730L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_5_e5d4ef1b8215373e02fc52058a915b003ebb79a76cd8931ecb683d39.root': 348293L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_54_246efa049c93f1cdaf9c61255c5feea9bb0a452cf569a21269c56ad4.root': 70136L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_24_25cbde6d85a0e139546d0bd2abc056de4c1feb72fcd55f90502c33b2.root': 295770L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_2_1e6a8d03220237368a77540a7367dbb74b003664fa6d3918cac2439c.root': 395422L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_4_4043e260043edb41c703a1c8a333fb6924fc662b970c700596e3b7c1.root': 709887L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_28_24943b52408f0289bb5c0b63e4af87aba65dcd9bc6795b853c10184d.root': 153736L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_20_b5fad5c2392551b4f0236aa51938cd827ce6a02339f56ac6ff9c9fd4.root': 611730L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_44_14f9d7fea20c201d1dd610d6b094bf0ced97596823353a0028ae0bd6.root': 328117L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_38_7c0d3c33adbcacda92b04993ba1357074c91bfa624795e36315cf9ce.root': 487088L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_56_7dd71e65d488465cbfc9cef15648f1ad538886e7865575ebdb53ffe5.root': 346920L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_69_95c1504789ccb1ba7fd93221f7d9738a87fc619191ba46df383b3d7d.root': 261966L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_34_7e524c731b5a54cd1d8511d389c39d76e6c6c61d66bfd9a307080e50.root': 478547L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_57_8709bb3fcba78996141a14e3e41d17bf7e53f03ab4bbf1a4ff8872dd.root': 531297L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_22_0af293b2823e8f79b161db5add0888c475537bc8e7f229cc1efbac25.root': 200706L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_45_528de5547aa7c6fa737965c11b97cd18ffc8a2f94c6a60187c5053be.root': 502513L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_71_dad5b12dde13aa11b6dd2575f0c5656464dd3d5f0708546bd286e536.root': 265646L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_23_147f974645e84714b344410f1490503acbb8ce89b60805e68b551bb0.root': 621855L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_26_e5b0ba1acf6321e2eb1ac35ca720ffa372606800cbb1efea70b27b09.root': 35291L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_15_7f23a6e1ace95768ed23641b5ee7091eac976f364adaee2036f0356c.root': 21299L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_61_f09e8c5eeaa6cb4b16f1363a916faa044fdde1634a990977fc2a0363.root': 745097L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_19_33cfad92a00339d473e82a099738b398b9eebb388162e4a02cc6ee99.root': 286744L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_55_fdbfb679cb81c0b8efef2d03382ebf8231ab7ae5a91cda05ad4d3ee8.root': 71240L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_56_37b4d372123230ff2959b1cfae8f4f3078e49be91c3c57c2bcf80b31.root': 529100L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_30_3e318126195ae1282aa42e7ad72c86fae297a32ad08e8d3278c97a4f.root': 645851L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_43_0b99ac8f60e874d437d81d11d538a6d3bfd3a72318da6d6002236aed.root': 687627L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_23_61e10c1ec746051507babb572fdf2a595e429de5dd64aa91b559eba4.root': 31918L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_13_b9e38f081ab538af81fe0cd305117a9463a70631bf1b679a2f9275df.root': 278092L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_10_169f4228664b563d39c40bb5274177f0918aa9435357fa4ede1fd378.root': 355626L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_27_589cad0aad8ec99d19f6e598bfd54ac387a2214c8eaddd2d5e52b8d2.root': 300527L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_23_6fe8ef3a479963ac0653d9788efe1ac2080a25666dd369048d31edaf.root': 201887L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_1_d2c9049615e21d7c5d4513d5a85ed8544b8d5bfe3ca5ab3ad686ab37.root': 142352L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_16_ea867c1f2e7315b933c20760d9c9a9df0a89990a7a64d409fce0b44f.root': 282389L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_71_1043e71651d165b07145d964d645852df79c8a31bcd799decfbb065c.root': 92981L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_27_edcf652e4607eb99c962dea8f857718c33afd1fd3937d9ae4a028819.root': 634293L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_23_4e2514621fea226cc319f05a43d0bf2eff1e22fcee333ccf72a1ee8e.root': 450905L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_38_14a9f3cbf41af4166c361b3e960a8c33ae24b8be49d9a7c008c5cd56.root': 317729L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_16_648914e618782dd8c9ea72eb3cf6d05454cf767a724a0708187d42fb.root': 597066L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_9_3e84e4aac600b49aa1108d9404768c199a7d4aabf3616d7eb7db1530.root': 184783L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_8_3925cd4c6e7e2d8b0d4a4e1637006802a5a59c50ca0304470ea5b7bf.root': 352837L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_25_deaacd0acf6e28f17068c336e2a47f0f88940787046273bd0a82949c.root': 628000L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_81_3dce768e83a596664c3a54ea783d7bf638484f3aa65fbadff6143c79.root': 105708L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_112_af5604c22e235a4e4e4955275175a80f99a1a151ec54dcd384dc8ec7.root': 13959L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_50_8027c86070850a9e1557e840cd21802db570c30d2b6abeafe9842394.root': 238573L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_41_231b2227b4603a06387501fddf408dff42eb11c03ab04f61821dc9de.root': 54488L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_38_caefbf6766cda570053fa1acb2ae828f709b9c41a51d6b2e812fcf49.root': 670265L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_21_1dc4e12afd1abccb67b4cce141a29894811d39eaa7a0ef00912d0e37.root': 199564L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_10_f99189e57e1916e9b1c6db511dd29e7380acd2bf7434705fa8668d06.root': 273354L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_30_fd0b4066530ed46b2d5bb4b4c971efaf63b0460b0ed4bf06bf261259.root': 157086L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_7_35adfc9d66c049fb7d54cbde6f90705a59d44b4f8b5cb9b6cc3939e3.root': 752395L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_33_4fa3195e8cec0317609f0ca75ac1db2360b450db7c78e7b0b2a51374.root': 655058L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_40_3a73473dbf3dfb783643f282ff5d4ab1431f8ab8d416ab49b96fa383.root': 491583L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_55_1bbcd6adaee7d52c99e710400d7a8d938abe82edd471ec9b411cdcac.root': 346119L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_74_087a5fc9378ee1dddb98aae0689462eaf1dd2787ce52f53417bc41bc.root': 96342L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_34_cfa1620548e5104850513546c80fd882cede8fce42ad0eed277456d8.root': 162109L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_18_537fbd7111daf0ef07b1c6d850c6d7df7f408b2f25c82cbe0f2d46e2.root': 139964L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_7_2925e83ae0abb4509d23f71acd4de5a4429ec898c66e5597eb81490a.root': 351321L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_25_2ea38c597b09b1394ca79007f124a145e9f60bea791d338a463d068b.root': 204372L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_51_65acb6dd3a574ae83d4ef26de80a98ede4f2b1bc9c839e1caf9c5e00.root': 518375L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_12_1795459dd8b76fd5ab013dd79255dd96e479b6a3b6cf179eee433bae.root': 585075L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_12_ee1d6e0577adef86ebf8ca680f3694029ad11d05035cee4cae3ba708.root': 276691L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_10_6f467f5b152f4bbb5fb6fc8a4c22fb76fc397bdff463eb08f2aaf6a4.root': 10703L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_52_7d5349311ee60f3effe44d6c48db9878038ca073fad557c5a7c45b19.root': 520689L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_10_8f30f4d3c1a17fa3811c5e9a4b66bb1b916a717dd37c7dbf483dbc17.root': 418419L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_35_ad1b97694baa18aa776ba9477014727cb52a240ac10a3b2128a43d82.root': 163214L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_73_e934c18b4eb069590c1d496d373095d7697eb817c2bc7b23f6cce5ea.root': 95307L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_43_5d9f266210a815772cefade88282d95df51a090801aee2515ea5ba61.root': 173734L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_2_b93e320b23b4bb4b26e556e418a15afdb210e8b3cfd68b3346410029.root': 467418L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_49_76ec06291e7edb4f5e908e4656c7901a6e91f408b543514e7b68f60c.root': 236121L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_20_2a58cd217b88b0055be7c54d679b2655fb8ba91b40d90e7b62c558ae.root': 444407L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_35_02f3e5c7478546f2bad397215d1dac62ac4b0295bf2a93dd75eaa3db.root': 480655L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_102_effb088a1cf49f1b1736d80f3f00482c169f3e19f940f24489ac17f0.root': 2197L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_68_27fb95e1dfd62758788e2d331dd1bdc6bfcdc60c401cf7dc90ff2a47.root': 555562L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_63_fbfde9a556b8eb8d7acee4bf048b15337492e52be589165c0ac59a38.root': 255185L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_17_b7101fc421ccc5d70fd77ad7449be8ae948a745e0881f22d122ffb31.root': 599910L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_53_023009ed44eea33ce1f1bac0cccce4557fc816b4c11771901c67394b.root': 242278L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_34_b75fa5c82b290aedec0916c6b3a68c24971120594a65686b9d053234.root': 45165L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_3_1e6c89fedd469fd727c52210c9da47fe7a2b45bbc9ca142cdc280ea1.root': 52116L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_61_25fe353a5a4cce8d1988934bbf0a68fe8757557f6919ae1912c71588.root': 541687L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_21_b08f4827ce3342343b9323d032cfd1dee4d86d989f37b02d1df16c46.root': 446456L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_4_b85acd30b4b3ae5c08e904fef91406eb338ce5a9bef5ee9eee709360.root': 237391L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_82_f721b7afb7706ced19ca71ee8812fdea97cd3bcdc8a7e0abe5aef910.root': 106895L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_32_9a2bea25e5dfcf589161eb2d6a78eea15baa8eaeccc6265b8875effc.root': 43040L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_64_ae8ea35b01ebd9ab5a759bd7e28e120b70bf759650bf8a898533410f.root': 84492L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_40_791bb77dbd26031431bef27ef1f3fe8214723281b78d13f7aceca6d8.root': 225335L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_12_7d1408e76bd077713c9a7a898528c86c2a6dcce55a92ac3a954b363c.root': 188458L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_28_343298c61659feb5d159bb1ec4fda815d4a25c602436711964fd6cfb.root': 37850L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_36_c7277692464a813563d3071fe28d08dca91b455b365f1a3f8ddf86fa.root': 482800L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_18_3361bbf12ee00eab7b9e01322e932afbea0c74b1f5ff2154178f94ad.root': 437937L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_41_8525906767f0be8518fae2d92a3cd338a565526e39a2d7c180c21037.root': 323688L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_16_751fc8504b3dc3f078c4a7b6e4817949438ec7bec317dd841c5e618a.root': 22926L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_9_7f403015a446e3fbc1d76dc5e0ecfd8e0f74193ae2e54a03dc5e3d76.root': 576611L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_44_e204035132e3c75950d5ddeeb0acef84a68277f33bf0344eef380c58.root': 174912L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_109_563f650009784de868f70d922f74f85ef68d5a5361473530224e0770.root': 10029L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_62_9f29c1ddc86526e17899f6a07e85c27199527989b6151165378008a2.root': 253915L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_56_5fed38ac0a4531df9a19bad796c11b8fa5542ed5f5454167618529fb.root': 245789L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_55_970d25870d608995eb69547cfe4672bfd6418d2a7c107fdbd6c6e564.root': 728625L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_50_ba70798d582b74c9a76c7c913d47b8d15522551b688fcc5f66029e7c.root': 339117L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_16_9ae3506d6c361ab2cfde9c8bf286f4596e1164d262defa2999673d80.root': 193273L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_66_8f169ff9e0e34a50de72b6f8c3bc5aa2956445d5e9d50c8c89b37fd3.root': 259170L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_63_87b5ef51d96e42e75f010739818af2c05279bb5fb2a13eba7322f79b.root': 83337L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_26_11ddb7c783ea0093f8373717a6f7f1686a79684dc1b88db5457c6b3c.root': 458107L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_20_f0dab977d6f1275202b5f79318e0dab466077b47151a24c0379e0c17.root': 143584L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_40_ca21dc6af99a4da899d55c71962b4bb0881e1f3e8ecd76f8cf1c9f94.root': 53257L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_36_c4c8b7da9c939af98892d8b955849a6dc2e82b13b954daa9d6698b5a.root': 218963L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_104_9dad4b817289f354923b76506595ced02f504417b42271a632d13810.root': 4332L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_33_15789c5043c372bbc6398a4948bb21aa2f930f7664a69c5c387b7299.root': 160808L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_73_3dd05c1c78e13342208fac1fddd23c9ffc540b34e0b7d384d5003298.root': 268066L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_60_9bc32aafc99bec90fb1e508e92b739f7862a60debdf77bea06ab77a8.root': 539631L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_80_5014a06b284281bff195c88ab97c51f2fcd06d33e237c82468fbbb13.root': 104685L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_113_cf74d1270b7718d2d943abde2b0ef5a579735c17b437366d18935b6d.root': 15250L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_87_1b4c2949450ef2cbc2bc5cad0c8bdd7001f6421f39eaf1c288b9f662.root': 112590L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_44_6999bc8078f1ffd3d4c82ce4fdc6f50f683e8c1373d4633e3855cdce.root': 57519L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_9_689236b7f704464c390a064d0ca1755b14b3a736d1fee2293f992bb2.root': 272143L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_25_48ddaaa99b0eb8b3dfd7658befc837ce25e72c23030693cea2d1db9f.root': 34144L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_62_f0d2a46a1b2d980cbe1b0fdc916ce459276c5272117ff046146c6560.root': 543635L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_40_1a7fe68116b700d5b0cdde70d789f4fd9fef38d78a17bd395eabbd20.root': 677909L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_51_84b0d3b8c325a9f953cb83fb9ae211e922ce61842cbe57c2ffa6d595.root': 66525L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_31_eb152d87775339d49bb9d0bb7fa64b33d5af123a70e4ccd1bd4e4e75.root': 399019L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_25_8eab5650b09bc8a91993699fa46719b5a4911e53f5b750369fc7e8ab.root': 385642L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_39_430179792f5c725bc21ad0857a4f6f3c21cb1fb532a01b478488692a.root': 673388L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_29_95428b58660a0bf4ed43cb67470cefd53a1e0366c3b2f3bec8b19fb4.root': 393619L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_17_c70d1d5dd5c8eb0f34d94edb16467e95789e302d9ebf39bbc4930efe.root': 24033L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_86_79249fe17123da017a0d287bc5c1a622fa2567cfb15ad04f156f849e.root': 111460L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_32_391d7e9f0045f70f88a6fc3540efb02108736c7eaf1eae132abfd28d.root': 401002L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_3_64ff47da0c36303a8da625be6a58f8fd998754c4c1535aeb1a85e724.root': 320805L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_48_bf9fe98d7cf1130191e300cc55a77bc1936d49f4fe8396ce4e7ceb69.root': 61981L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_70_8109e94368ee25179b193587014362c59dcab7b4a538bcdaa72457b4.root': 561970L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_24_9a5084ddbee3c94f26a89d3117fc6bf12f250415239dfe7814c90d6f.root': 383704L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_31_6620b20ff61895418b2766c8a67558747b82da7b19165bccb34b6b2c.root': 41995L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_85_fc3a5e2ef61eb56d7cbe39b8b86fdc61939400b0af494b08292d7a45.root': 110327L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_14_8a7d3961c8b34d0e30e76d46de757d5d32839bb03694f5b79224d2c9.root': 362803L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_30_67fbd61f86de1a79e975e6c72287520d91b241b0cb914c0f9413f534.root': 397273L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_21_aac61276d0838fbc8ff481a5fbf8be3c3805fa3cca99c9c911068d92.root': 144734L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_12_e4e9b5a26a9d387581553e1ebd69657e9f9a59cfd84e835a34d70e9f.root': 359292L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_20_58facdab436324cd952666f6e9fcc60912b37aae9d882ec5f836ed07.root': 289684L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_9_c014b9f53007f638ab93588038261022e5e5db6892042278eba1d5b7.root': 758391L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_1_298db5fd1de8c20bd18386a1c8f3c9de692f42ca2b5d3e5cd013bc95.root': 198155L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_61_d70512a9dbde1dc9756bafd17786dc2f5cbf380b435ad18b364b04f1.root': 252764L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_98_9bc77cdd85d9a9e9a9bb0100928956b428b967f6380a1f107d1d63b5.root': 126879L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_106_f64a5d2440b18bf17c88c02415d66f0df57f6f6257eac66eb16b1c74.root': 6627L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_22_58961688e595d5be474a5dc2c848a5f2c8fda69328f11be237d08618.root': 145961L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_39_c7866eefe189f275db4874411057fec5ad07dcffb84c551945d08c06.root': 489132L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_31_6c217c9385a65a1808ccf9b63e70264feee8b166dfd614c961aadf36.root': 472122L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_99_5dc99ae6e57963248ea2cd0591998ac0243e7929da233b6f2105215a.root': 128054L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_88_42d177ed9823a96d97afc696f87be1ea09538780a4792a69e80873d0.root': 113816L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_6_700ea86f368e62bce802052269a3a99195f06998ffffe757f6f66e9a.root': 181280L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_79_ab7265fbc8bd527df11372c12611ba70f01b6538552f50eb67ac4edd.root': 102384L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_24_7d85512211527fc41605380104b6ad9eee0e4de0e63c6aaf4a8008c1.root': 453297L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_53_f0d2e732e0f83a6218bb43e754673b48cb5d02d36338454ed8c33b79.root': 344170L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_13_67da913f2a2fa0f313cf08edf7d3b78f0585affc7170d765efba2df4.root': 189700L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_69_8504ae1c7b666d86cc405b4c889af4a6c32ec5fcab19d368673bc4ad.root': 557690L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_26_60962181303f8b8284260ea5937c66bef32547551cbf7e71ad5a1142.root': 387555L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_33_0b90f8300ab366dcb3a6947d00663169421a2904247daa8b61bc2062.root': 215348L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_56_1d4be9ac3b67c73ed8bc2d7044f0548fd12e5528783a429a05edd8fc.root': 731245L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_42_3c66c573f3963cd0ca9bb0faf1fd0784c3c7126800bdc5dc559596d9.root': 227754L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_9_4757f24bb492d87ab8b2492a202706ee3066ff7945ea82791f615f04.root': 354322L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016F-Nano14Dec2018-v1109_190426_095424_0000_1_ebed7d806f1324a2c2db9453e19f2309b556da0dacbe12913061c392.root': 374161L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_45_748c3206a9975dad74a3c1dc4dce9d2c6c073bb866a408c03b8823ba.root': 694255L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_5_767091f842f219cb14e339ab072cbd28f6d162e94183ec4dc8294298.root': 78063L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_31_c3ffd54f9b15641799acb2a775ac2d4b975113a9cfd52f87c6108dbf.root': 158391L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_24_661ca296e5062cc56156c8ac836ee8011309d5739466ab6ddd1a7ca7.root': 203097L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_111_792af6f863d56ef05fb71d5a0d5499d85cedecccef4dfd5535ca1f52.root': 12879L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_68_3611a30597dbb133e9c26820bd88d85df005558404f1e609d0fe2cf3.root': 260754L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_4_ef680541899e7c8e2320b2367a4b95fea0f698b82cd431cf54dd35b4.root': 513638L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016B_ver2-Nano14Dec2018_ve84_190507_081206_0000_60_3aa0fce286f47f9f471109c3fd15e29c6994d5ed2ac360a4409c5d78.root': 79412L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016E-Nano14Dec2018-v1108_190426_095338_0000_43_7b5cb87b8ab231d26aebd82458ba8295b26bf2984ce27184828933e6.root': 326717L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016H-Nano14Dec2018-v1111_190426_095558_0000_47_ad888601b6a7eeb4acae835b53895c332d3c02b119a2d43abb8c475b.root': 700557L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_26_cc03bae36d401f8b1de0015ac1a3ad4cfdbf018f4a326848043733c5.root': 205538L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016C-Nano14Dec2018-v1106_190426_095208_0000_15_5f78b16fd4f33f991e3a337666c2fac47a253fc8372f93269088c7be.root': 136370L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_28_b1986764e87363f539cc1c07c49a78a6d7348281a38aadf1913a6214.root': 462762L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016D-Nano14Dec2018-v1107_190426_095251_0000_64_2c2ebdc9d882b11dbdc745108ee118553fd16803faae56a4b4b1228c.root': 256605L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_1_dca44cd4ea67380c1b4964336f70520cfc4d23d1a0af139471e96836.root': 442223L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleElectron/tree_Run2016G-Nano14Dec2018-v1110_190426_095509_0000_46_b160469040490e38d09e02dad47af88ef8cd0de450bb44deadb5eace.root': 504619L}, 'ZJetsToNuNu_HT-200To400_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_1_0435bb76bed7ae6501f9a2e48b6529898462f12d0b1d036b7f405c0f.root': 62L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_5_770d80d75ea47d18b403b94a1f907a1f4995c78f6153d9b221300851.root': 42L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_12_d7ed5c0a9c6bd894ef90114e5b66bc4011f72235bfce48935da9755b.root': 12L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_3_be358bcf6659b6673afadf0562c75e18922e60a487e807a00806ac05.root': 69L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_2_1fb9a1359d634d35031542adee5657e6fe5753d875870f3a6e9031c0.root': 63L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_15_fe0e99f5a5d324192ae3be67537f088130ef4bb2c0ec40bc5ec7a2a8.root': 29L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_9_3896283b464d806e59d89f5cbb3ffd2a47f129df43673b9d26bb152e.root': 59L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_10_752c957db4c36ec7b1590e4e50c6e5dbe158f0ef6b5490c2130a28a5.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_6_4e89e06c49e1f88e74327eb4f3df9a9574b4f8f2fe97ba23481da265.root': 77L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_5_0ffece49ea51bb3814fe908e66f7bf87b8d66532443c090d25be72cc.root': 75L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_14_10b8b87976961ae60ce04a4bba4021bc3722a556a1f1fb48ae5e27e7.root': 19L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_1_cea0c143d23200ecaa8fa22d3ca513025a475e7ae8d1a87b3bfa4e1f.root': 31L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_4_86b55da5f932b3f757d2da71eb85bcec800ef4d7419ff7813c14ea0a.root': 72L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_8_49e879ec13e7a05848438b25ddae05865a8a55c191757d91001fb318.root': 54L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_7_eb0defe37e1c5df597ff2501c37e513797d8c0e30555d0bdcb9161cd.root': 52L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_3_a564bcac5b4014faabcb47a850993f6df085d78eb7649f0599d73132.root': 37L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_4_b70c6d4b5ac7d1892cd3cf25597855a331e903c9981b749df4586e0f.root': 41L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_16_60baf19ed4bf76541635d5e7a481b402531a5ee5b600bf95a8d68b96.root': 30L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_6_9d15a9d6fe3a65d37ee33a0e6c27d6a84c0f948777e7906c7bdf95d5.root': 46L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_13_2004e9c540383402669faa23dad493225fd732acc1286ab2aaf207b6.root': 17L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_2_e50fd00c197f2ac98fcf734119a5d538d3fc205b3869a93cdc76f3ef.root': 35L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_11_c49bb93797b9dd484e7a75e20543a8aefa863a0b52643327a8ba3bee.root': 6L}, 'ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_213246_0000_5_7430d32f81bd390941c36f5f08a0b780ae887d2a7830a49cdb730358.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_213246_0000_1_7604280dca0cdf5413412b221817a7398338a3c8eb9a086322bf6ad8.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_213246_0000_3_7c57ae2a25738ad7e7dcdd852c97305860fa0f37e1ff1ec392f1f87e.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_213246_0000_4_43469ab07499bab7fd2629f0e728db1bddaccf5a6740395af24c557d.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_213246_0000_2_0ee1c25daf4e57056006de9262b2bed40f5dd35bff37a329beb99943.root': 0L}, 'QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_30_8086a790563f74fc2f7aa535de97400ddb017c394295fa3b3651f039.root': 109L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_10_cdca0399e3b3a7638281f39ea2d94599fd532a7b7f605b30ebdf8854.root': 228L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_22_02bbb4e8d99063adc38a1bdb90087e6a2040ac1be7943078460d2db7.root': 59L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_15_a95838869212694216540733316963597d5a6e2deb08f30573ccd4b2.root': 25L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_37_db741c29e7d15549375346de076bad6413a539ff93bdbba989c4c501.root': 148L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_24_ad10de2f7bb18b57238b629cc25c665429ac7e62a783e3c546882b47.root': 71L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_38_8c00113f05f063d0f9c3daacce387e2900986027e23cd9196b74424d.root': 153L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_18_880635dc013dc746350d859d43fff07a98775384442bf0f6abb3549e.root': 38L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_41_68f078f19681773a6c317882dd1312e405d8e6305b8a5870381eb108.root': 172L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_15_bf7f11f7a32bed828ccbc9faf09023b20c32de43014aec2d590abcca.root': 249L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_20_2008c8d0e3df08a825cc0e92bae9f0f8df6f2dc8fad50b52c7e0cf33.root': 48L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_12_521d12ebf301b417a7d4395e93052c4b47d7e346b66d69d4bc59c0f7.root': 242L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_1_18ca6b45f3659cba744ae794d3e915c573e16a32d718231653c129eb.root': 272L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_7_0d95186f8d2e50e124bcdf221738471ff04d480eac1b3382b02a205e.root': 313L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_8_323b6501ecfc8721e0b46f9287022b76cdeddd97676fba3b0f43d4ef.root': 315L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_6_767b6fe3a8b66ce4e65dcd8d561b25269d338e89ff5a49c93002aba9.root': 308L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_43_ec2069f541c0d2b9490ebe60e82b32d85430821f36eba2ffdd7df710.root': 181L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_8_ac56a28bb528f6248f992725fd19386ad777efa807818834414be937.root': 216L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_48_8162c0b15687b18bb7d795576330defeb7704617f49da4a0b06301b2.root': 198L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_9_5985395416e0576b0496bda69611a1a1d1b8bec27e15cd30383b9eef.root': 321L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_4_df995ade28282f1b3edecdaf6c4cebd0943d3cf45985d2d093610cfc.root': 290L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_42_2dbec05c9c99e9b2513a51f039875a0583b1b6506bde4f1c0832116e.root': 179L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_44_c68cbe125534050f09be8d794a7538d8701cd95571cae9b3fcf9b1c0.root': 185L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_39_10821500b4ba46a2dfded07f45a8bcc6695803077c7e684c4a032ab0.root': 159L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_27_eb99f8e350b0ad2a6255c557eb16b62c0949fd2dc3b86ee4c35588d5.root': 92L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_13_012f5693f8d45e266d26e6c9168db532765359a79a574f403cac45dc.root': 15L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_10_476a6ba5c85b354c8b166a686d94388b7496e6f5b0ec0699febcfdd2.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_26_9a33ba985db2c733b3274e08e43b67fae1962b43bd445c1d1b6b8d75.root': 82L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_9_281c4e19db536d44f60a23512ac8f2c4d68288934685b45b1a782910.root': 223L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_11_244782c3b32767378da69b722ab4957af4627f323bae3f7fc4051f6a.root': 235L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_47_cde740f448b81c6e8a8cfe097d9cd046fa7cf28fa06c66bacbd54266.root': 192L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_23_55adc6f8b886a0cac6563c98cde4e56472f9c03f8fee6f4554c7e5a3.root': 66L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_34_605f5b29d44ac7fc90435f5ab9bfa55006605fb22d0a611787739a41.root': 134L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_31_890d11a7888e0f4d8c59bb2271c5849206370fbb1fc52534936b3a32.root': 115L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_35_e0be799f3bc4e48245b54c8a4316ca4580f684eba6e39116a2d48b1e.root': 138L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_21_8eeb4f86deb34f5788a45614c09a7bb257e683bb6f32ebfcd644c7b3.root': 55L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_16_068705413dd5d25816e8bd310f67ce6b888c7bb74171cbad6f65a129.root': 259L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_45_8b9de30f4d19dd1307215bf88b28ab3a4da97c7ff72b36e1e51ca0d2.root': 187L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_40_7f10bf5fd6e05fa98f5b955d7bad391bd8dec32afbc84053548e89c4.root': 170L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_46_e59a30ef5079a648b7dc78ec47a9ca7bf59bae2669ccce4ad272e9f4.root': 189L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_7_d888d4045946e7f30ed713d05e69ffdd6024e0a70b8f548f624fa01d.root': 216L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_17_56481f3bdbfaea5517083fbf573c490e7607cd727fcb05207871ef5b.root': 263L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_16_89f8c3016b3c1d9df82415a67d54edc47d18864751e00a892fffca0f.root': 28L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_4_4e91522d791bdd30257eb2f9c7a5ea01d1773e1891daa25fb1129a73.root': 204L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_5_605e808bc6bd7cea504073aa621cabcc5c44fbef5c72cc8292d6b94e.root': 305L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_3_ce3f56964d21900985e06a85c72e5708aa0b21428365b9708a070a5f.root': 163L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_14_702c1040afe9cae0cc11462482f052804e107086ef1c71c282c25db7.root': 21L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_11_f51070ce55369627d3b297731e4633f2fb91fa793f89a93d94b4e8cd.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_14_1ef80c222a3fcde83dc07d77f76aefb6a9327e8f077d27849b583ec4.root': 247L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_17_3b4bcfe3322be62724697c1851e20ee3c734c8ade055776211fe8e78.root': 31L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_12_919f4ba14798e4f0bca235a35d097a45d144f8897c3c2c0bdefa699b.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_2_f5f6d040bc1feae27f4570ae8cc55e5ace874fc4365b19cd21eba52f.root': 282L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_33_b3709bdc49412b86c2b26ef1b38c8b82d94360ba7dacd4450540e5d2.root': 128L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_6_56016cc5963f6724ca881328f487f5129e3bb234dfe8289900482b95.root': 208L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_25_72f58168f2d982f08860898c47a8495a756a2138694f593e0588cbce.root': 75L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_1_08d1ab886982bef6dc63895703d5c08e3557c8b39ef52ebfedcdeb8e.root': 47L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_3_7efa9174d99e9859578243d2c43befc2aa9a31ad0d3ea0ff0e7f5624.root': 287L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_29_6dc7281ee50bf6c82e77e4cd7670b16d6e07708247037548564142ea.root': 99L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_19_95eaa2e47a4dacdbbc0d44fb0bc5247ebe9eff5acaf40a3b11561015.root': 42L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_28_e0ae0592c0ab6ecc1bd9d86bca5316c3fc230b159b3f3769f823e0cb.root': 95L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_5_30ca4922f2ff821f93a65777171d6bd9da7bafffb79dfed557c39dcf.root': 205L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_32_1ab3b6c7a988456129f2b17f52443a4b708e4e84818ea89bb7e38b3c.root': 120L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_13_7e35c3496488dbb19ffd173d54e34dca3ffc06ef0df03423221d6524.root': 243L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_2_e65a5c62912a278b96cb9911d55eaeb472ac1c8bc1ae47ebba3d83ee.root': 101L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_36_8fac23ef88e4a975970135376e51afb4d548dad0240994339ae99019.root': 141L}, 'WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_4_b2b81c1018ae9cb379b01d8d8414c1947cdb3f83901a51e3d217c1a3.root': 44494L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_2_2b1d1e955c80c8ef7ee3b2ce69afb9fe556cdc04e8bc8018b9872ac1.root': 5513L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_1_e820002e64e96110820e9a5e5dcec25ff0397c5c51a39a8a5ae29241.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_5_dd1504647982f99862a293f2bdce42a558909e0ee5062f4c2faa78d6.root': 53927L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_6_0581a3d60f7b514d4e6e47d79d871b84cacdfb38e41e7c3288d45a07.root': 71433L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_3_3144f6e6c7078cae1f968ee2d441a30ce27b582c687a7508d10867e1.root': 27815L}, 'DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211219_0000_1_d05e0f3a913a44371b38334afb9f31ace9d5466773c5b5016e30404a.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211219_0000_3_240227654a49f8dbde6e6b14ff15d8389fd4b9134806ba7e9b0b8bab.root': 483L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211219_0000_8_a354e4c83d562949f4a564dfc0b1b695717aec227f3ef169e551ee7c.root': 2206L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211219_0000_9_0c2c9718189ee22e4f1e2e8de966cb97c6f39898a5d58e0e650269cb.root': 2598L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211219_0000_7_27446e899540ecaa812f4b563a7990e9a88e4bcf57f5e751abb3b67d.root': 1668L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211219_0000_5_2b557a991044c18ef34336a91185f78f153572fc663a816f3fdedf86.root': 922L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211219_0000_2_40bb389f079d0f1db0ec08ae4df5e00fb1dd5100960b2e7b6cf20789.root': 131L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211219_0000_6_881d58cceb163952264b21ca019a16c88c41bf082dd5b551a59bb899.root': 1114L}, 'DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_200928_124703_0000_1_600e6da12c8a4e0e05f4a4d4b91621f57896c83cc8fa89a9fa338b7d.root': 0}, 'ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_7_5914f81442fa99d0daa17c7767d0a4b79831c89750dc42d3388ae70e.root': 19L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_9_401ef734d578a6cebb5dada6613ded20d353a4fde9c0d63b91b18ca6.root': 23L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_3_a531bcfe7b5195c0b8f1347cffa6b084464936761caad988ba531747.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_5_50f28c4215b53c68b34cbe1dde84dd16d56032f3cdab5705adb151fa.root': 16L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_4_cad24134cae9c2a18d35d0891c344ef2fb2c002e38e68ee5ea9670ae.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_13_bd3e42d469b5009ab2ffc0040d84383824301823029f62855758347f.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_1_bbdccef3b10222c4f047477c8f1754739ecd899c897fc1fdc87f3077.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_12_dd898ed5e8037f04c58add92dacebe1f086e3906c63623e095eb1f8f.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_11_501db3f009bcc7605bee54e09f3af451ad6fea78becbaa84e529b78b.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_10_49ccfda5b35d5476b2642330259949cf147664b07aa468d126c5ae68.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_6_af138b99dde593b7854723d13b4d19b3fde8c0160c209c35cf1a96d0.root': 18L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_15_9914a75df101afb5f8dc8aee763de12bca4b7823e0aa8f05e7329d1e.root': 12L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_14_4f8a29fe193398708d0966643fbdad0af91efdbb217dbdbed2f2513d.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_2_4d6c3a436abdb9f6681a7c41fbf33aa406f5f272e896e00e40f9e8ac.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_8_cbd5c0bc9374ee91b57f73fc7f2d69b1c4b3b21dbeb1cacf572e8d74.root': 21L}, 'ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_5_91d5bb5d2eab21c0443bebf83f5499ec2d867c769f46ad07e54b540a.root': 48691L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_10_a1e58b1c85b8d48c76a72616526037c34409850153a7d26b4829a5e2.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_3_60f402a2b07436fff1183eeb96ecaec24a4cebfbf9bdda43298d166d.root': 30117L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_8_f1a528fa00b707e6c9ddc3f44576ef3418f8d5568429c3a919a59a47.root': 76633L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_7_5b53d8c5383ccb79e60f284b17527b17cd1a4c2290e03d2243562db2.root': 67302L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB84_190607_053924_0000_3_d91b358726d1f4a5166f4d8103bdfc1e0bf28e91f6356f6d571a3c2c.root': 123248L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_6_cd92fae854a7e7a99672866fe16413b372eef7e82cfcb790a09af03c.root': 57853L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_2_3be70669fea0dba791b24ba9d1fe5544202a582d5b5ac55753908e58.root': 20892L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB84_190607_053924_0000_1_97142654d0443e2e7395500ef43e101046da0d4d50a4ee34330b9844.root': 104848L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB84_190607_053924_0000_2_0d09e3b6755fc836c07ce0a74e4d8093e97c48503a2be6f37f99b9c8.root': 114199L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB83_190607_053836_0000_1_fde76c4222bf3eeedb0df7a1028f21e8bc359ee10dfe9d1e56a8f47a.root': 93193L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_9_cdeff43aa0568dce44f1b9fa2ac4f1afbebd739f99e598a3f27b11dc.root': 85973L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_4_7e2268a5acb6a61252dc16e40c651d53001e07f52c49bee1d0104bf1.root': 39403L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB83_190607_053836_0000_2_6207aacff63bdd6ac498a7516200dd11efc6e66cfe527ea8714dbf9f.root': 102567L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_11_b52a23e740394f84b7aca34374de9ba5933e0dedbb0d2a8f1986a336.root': 9228L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB84_190607_053924_0000_4_bd29d2b3e4804ad79fa0899ba9a45bd75adff062bf952e8a31ccb53b.root': 132583L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_1_bf3ca7b31b5ff5890f6d614e15a6da4a60154bd9456f1b2923ebf482.root': 11559L}, 'WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211550_0000_3_dcc49d27de3380aca76cba0c6bf48d6e50ac2eeb8553baade0ff512c.root': 7382L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211550_0000_1_f52c167f3d00f9beff1c5fc20f9f56db5ef797d367d990e65da06fb4.root': 0}, 'WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_14_95faeef0aa39d0814e64062b82e4bb95656e933b9737a5cdfc2146f2.root': 532978L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_17_248f1fca1f317e57a9cc0a462d5bf97a51438fe081bc23956d8de00c.root': 623006L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212155_0000_3_0d9340aad777fb466beda178daa8b44fbadc6e8d5d4f42571dc11cc5.root': 1070574L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_4_d7f0c9e1bd5a1766cfc3d5d942a2a1463c5514b606683b134bcc93f4.root': 289311L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_4_7ba73ade347ed820fa5793f731020c8442785afd3d295ee9aa117079.root': 828016L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_9_00e045a826e93cfb073bf5ca4ac1b5e6c3ee48c265a540f3de14c209.root': 966956L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_11_661f70b825b6f9a2977aeb60dfbadc9aff7e92b6ba96b9e9e686990d.root': 27089L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_18_aa08f9d0c649f9200281a9930197961c80e6d8002942dd9d1c0a8001.root': 654313L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_11_d15ee91845a3b20d6a5f731abd4d0ed09640c5c8ff93d04d1a2bebc8.root': 438837L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_10_f8900baa5cda41f496ab016c9137a882d842ccaa10a169b8fd8218f7.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_10_8f26d6b50690dd074f285e5a47e1fbe9469fa56d886320016251cb8d.root': 412096L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_6_da80136b7429e0d49702ad4ffe3d6e7a36d3aa49060ccdfe45155e0b.root': 880173L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_5_7a60ac6a107bfe9b1a0ae4cb779dae1009eda37e4d5d0d1bed0d9b7e.root': 853512L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_19_910bc035d291aa18f93a3f74af381dbbaf38c40496b0c65d29a2a822.root': 698005L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_12_00c26677549f3f7f3116a4237995f1295da5ed04ac948fa96d7b032e.root': 54595L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_1_43ca926aa50d0198c5b7334662363040a18f3d8f5c16c7be9793945e.root': 729124L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_13_2c2119420bcc0d7a6947904c774189f84169419b45e98523da285c38.root': 532205L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_6_e76436498e515bab4dc4a5784f277b09f2f440f241da4a89df83ab42.root': 347582L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212155_0000_4_27d0b35229d833737e9b9cfb51373a280b94907a15c6c5772d130faa.root': 1086129L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_16_bf23cc2d04cd09ee0a08b14841d34a1f2a50bedf7dc9152197d924a6.root': 597681L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_3_c5273e4ccd7d3d199fe31ab66683b48e07dde9fffd43806fdf4bb7e3.root': 258586L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212155_0000_5_6260dc5a694028b9fc237c8f4ba4255ce3008025e1f973dc722830ca.root': 1130986L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_5_16eec05dedd68c8042d10d200665afd6fd216ddc437e4cc64fef9ce3.root': 318507L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_15_24bd6374079ac105691d71cd340f1a50062eeca1708119bccb2676b8.root': 561043L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_14_270ef89af77a18d8a5f8ceda4ea8e6be09bf9dd63ca2dd2970fd8940.root': 102399L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_13_8a98325449963cdecb8a9d6cdb995b86a4740df5a1da4e60a9c20c17.root': 85638L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_2_b3145f9d2d021c3dcdd222c7d31479dbaddde0aa01a8ec6a46ab1bad.root': 780130L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_12_72b79763d4ce898f612f436428788790580f735a5e6c799c18adc440.root': 481812L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_7_0f18c0b7edab548b34aea2e086afbe1213a7cd3e86281cb3287a66b9.root': 909938L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_8_66852fb5c8ed782f82fbf8e391cd01c5ef31a587c66e4e7b72ed369a.root': 935943L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_9_ff73a6a8eac714ebb398bf6519de1e3210b98b69548db65f9272047d.root': 391065L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_8_316840b63496bbaab9676aad262cff3c81e8c2d13ce8528767c4308a.root': 390256L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_20_845afda933a9597f4ef2a5b2f9d74fdf401e61dd2786f5da1bd44499.root': 729858L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212155_0000_1_bbbcdcd855e8796d4b24e3ab5d66b2ebc69bdf72cd0f470de1242c5f.root': 992873L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_3_f45ef064dd7b2f8f86919a297e9d0449dd6f0bf0b3d94acdb1ebdb0a.root': 801275L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_16_8b81f48d679270340ba9729cfd2e3b98042e5adc09161ecc7690d55f.root': 164172L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_15_318c04a36cc91e1d23df194687d8eec5edb5dcea3bbe5d852e003bb6.root': 133288L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_2_752a6a63b240a54472449b825355704e9de71848c8cc05bc7f41d4d6.root': 226906L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_7_2c2c5aff98800a68d38964a4f24859b7da67ec7e4c5ba351dfc86ccd.root': 361159L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_1_fc4ee4742d517a60b7009a4111492ddc1da82db16970ca9767fb943e.root': 199249L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212155_0000_2_3df4e6cb99321f70a576af6fb0c07749ea0de5486b7665b35230a957.root': 1020305L}, 'SingleMuon': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_8_27fbb986c9e5be2f32460d35b9150d06ee7f51b43d595955d662e396.root': 435193L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_26_4a3e3f068008704da1ec98e4695ea9d45ca12d31347f591c01d78212.root': 571263L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_34_afa4b79a04bbcac50157a02a69439e0263496fa8bf176688a043dc9f.root': 594050L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_5_341482f34ddcfd591cd36528a3050bc58a654fede3d124984a0f712f.root': 509058L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_46_2978d466feb40b3db92d81cb41fe5e51561a9abff06473b852af782a.root': 824582L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_64_7fd2665850017aa20d5da77d25e92ec7697d6031696df0dfefae0f50.root': 125874L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_56_7034fe2ac9d7212c43d0c5749cf08d12abccaf4196541e9df4d69b2f.root': 856495L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_31_b647dceb38891497dd4a940aa936d82d067f2501c619badc2325998e.root': 49644L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_54_a0219a4ee36efeb369dffa828f24283efe8bab1e01ef8190e51f4046.root': 103739L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_1_9e86ea7d1afb760798c47098436b9bf02aaa8f5fada187f77b8538a4.root': 551777L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_24_fdaa038e6b1d6f319fddf8097a853ad2ffbe96e2e12a21191cc07442.root': 255873L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_4_c38b7f3716e7097d17a64b09fdeaa01d3f76383b642f261020856715.root': 640654L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_9_21064d6677ad763fa748478c0a44f30d7ff737c5a916671515ff5a2f.root': 715810L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_22_12302970711fa810f8ee17cf41c08aca7804dacbe41ff0a61e87ccd0.root': 560173L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_40_5346209bb40c79fee31edbc2f487a7cf63830c5f3171f144a52e5dbb.root': 412206L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_55_0ee3ee01e3f40cb806f5b6457dbbd0320e7436317d3fe928abd72358.root': 853713L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_15_78785e56f07c8cebc3275b543dc781f8745540ac1d60fbf1d4f1875a.root': 12092L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_83_15336ad030025332edf3f432c4dac0dd2ad8a4ea8b729fe587954d62.root': 942154L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_63_5cd6f747ca7f4d5f4b1542df10f9b7d8a2ae4ca8937f2f74b48428f9.root': 123975L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_19_ea6c3652b8d132ecf659f3c37f3fb62278fb41b3970e01b9a7114902.root': 352407L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_43_dbbe1bd0ad379e588a2e13d6d0ca07a1f6c8a0887e26f02fdbcc96e6.root': 419808L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_48_b7bae9028e44dbe85bdc04d6af18b8f4d935bf73de980a3719c5f7d2.root': 88469L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_20_1e4e6a290f0eec9f1f911b4855ec74a30827301f01c866979abc7034.root': 22740L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_12_e873e1b4ef8422f04dd0958eab6690e08cdb63cdf4e477da106a5c87.root': 527856L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_49_392d630ebae62794d2ebe33eeaf1cdbb880523cd45c5f7356b329909.root': 315321L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_47_66619cf8a32c8d6121d9ced24a0049f6370bd1ae45bcb1fd70c1d0bd.root': 827499L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_9_8464ca57ef6229d7557b0b5a78a710f2ff0e5c9766b72f214564a5f7.root': 437766L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_25_7542c7e4683a21ba028c549fd1604a935fdd9c331988df3be73aaf70.root': 763307L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_53_4c6b64f8011e73abed7bb6d133d570fd06caf7be0aab7b826e55e984.root': 848004L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_38_dcdc957ce715d2c8f5e341ca18c7ce1bfb3cdb8d1561d6e03e69e024.root': 64793L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_65_e6eb4fc1addb4add552ff2ac1a8dab81b9c29674c0ca0cf5c30c37b4.root': 886573L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_26_8c6203c58e68a792263dd6782586ae7a7c21b456d208f26d0ba78a6b.root': 260413L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_21_785234ab569eabd90a28b27170a5392aea91c759737047969423d756.root': 249077L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_10_7ac5ddd45209291d08b53587046a7d394203668ec6519c09d0822021.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_30_78bd519be810a51eb9284272cd5efe2970ba77737a822669d81eac67.root': 269436L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_73_1938d3d72578d5e2c93327cbf7ff50c3bf6c200b749b830c8d69544b.root': 708660L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_32_07ddffc482c0f9eaec15cef6a7933dda558f38d1ce896b1eb623fe5c.root': 51937L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_51_3b00c74cc750a776c1fb17426d2e1a4ee195e65a4d3e7ed77d00c1db.root': 842231L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_29_fc2d4ae0eed7aba59551c6abae50ebb7a935003b069532d5bf880af7.root': 193104L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_9_9e86b0df420cb84018fa43f11f688be963e24febaee0d9ac52239b28.root': 331144L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_66_98e8c389fb919c2fc41b6819e1b97fd55b26f4e8d49f0953ef60eb64.root': 689681L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_21_f09f1b806f07d251a5c3154ad85cc77cece43641437a98e7b6b04f2d.root': 472590L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_11_3c363499d27d7d3ea5bbf771fe4c6acf0556b9e8a2fd52acd9af6272.root': 226655L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_26_13ada11aba88bb182c8d25b4aeffbbeeba106e82cbced77ab366efbe.root': 36499L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_76_946d393249d25ec205508d1ac7e4042524c4ce7a052df034e3abbbbf.root': 920898L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_4_10e22c8d4002adfe9735f97ef8a9dd4fa895c4b0c6464e3ec7dced78.root': 506631L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_26_ab1e8e14f1d6a5a0bf116da7c73e943e324b879b8a32e9faf1b83b3a.root': 766069L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_39_df4e0e7e811c495bf110fc2dc65ce44c9661ea2028e5ebf8ad8e2f76.root': 407559L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_2_1bf1a088929f5625339c68c52ad3cf882da2b51717a48898f574f73c.root': 269418L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_69_8487df0638a182a286691bb05d25fd0ff3c5b59a30bee4233758acdb.root': 898745L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_69_5c8d7ccb4c9764a318eba1974ac60f82759bf368bf040f6a6f354fcb.root': 135887L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_28_bf53805e7aa760c77ad3c3cccbb8fec5dcdc5695b2b27aea74473d60.root': 190999L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_66_33e7ec3a500ef678b7f3213aa12ae869eb3ddbbb484c52f289097d18.root': 890300L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_10_9c86a2a1b1a1637ef1eb058a00f2c79564749f56d55203e1cf971fbf.root': 521930L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_30_fe97aa9c0fb1cc94841237161613257dd3e6a3a1e99ffdcc67633de3.root': 197649L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_26_5031a194378bc2baa8488d6ede201e9f11b0779b7bbd9e200763e137.root': 485295L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_59_ca7290311c6163ea30575550a620a80154a3bf1edb3f31b13d40d38c.root': 113708L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_75_4b63f035fff495a6909d2823b56b804076f7b6dd07b3543c4ee88f6c.root': 918045L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_28_efa3227e4243ba4d92a6a3ada936ee08920aa01d3af84d3756409aae.root': 264767L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_25_5fae47a9a9a1549911610755b1a46032ebbce4d5d497ce919c413e37.root': 187495L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_31_904bb0d107c1a1d433ec2da660f836919f6d5d2d38496b69a2e29113.root': 199909L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_3_d13ea40fd2241ee5897d28520d565fc6eb6abe34334561fb1979c249.root': 409855L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_39_6e19cfa14806de91b6fd79478187b492551e961205a860a74f411eac.root': 290305L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_11_9b07d549c3d2266a050a5e7590df402e5fd8c07216b23345255f1699.root': 2887L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_20_330313ef8b9d99e8aae6b29f80f0659847dc034a92ca70a4a529cbc3.root': 176602L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_73_57280d69cac4f8f8adfa882e2a4199dcf9ac0ce89e1235614f9ccd11.root': 146478L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_74_d47f97b41a7a3f6bca35f12e2a9ee8dffb06bead35a388372fbce506.root': 915575L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_16_cc5b628de02769cfa731908de2a958e48eec409e69cb9465a9c60c55.root': 736119L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_61_9caefd84295b73feff33a6621bd19b7e1db69260739bf7acbda71b14.root': 677114L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_21_617914fdb461462217c5afe4167c642b1632bce49666990d84ef823d.root': 752300L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_53_5862c1c777a5b3c8bec4bba611524c2a483562cc1f0806ba69730be6.root': 101620L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_49_f7bf42ce8cc13cd505b5dc5d54a985125f11dd2d163cea652c08dd87.root': 832712L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_38_46669cd55f9c154934d27bdd3777f2dcd76d47924c3e4f6ad5a03dd5.root': 801595L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_72_f98ce2a5975d609846fa27fc7a0011969b217b4742e021361d798e41.root': 705904L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_12_cb92a0f5ab22b77cc859835518d84a9d4068a5fa938b38fd4690ced8.root': 724715L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_40_d8c2ab55da41860302a461d95e9953255ebdefb66954bb28d9e0a25e.root': 809786L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_41_4f5061e24a3d73022b3bf8ec8d07b5074cb577bc0fea72a7204e39cd.root': 73778L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_70_447182d86f833ca37954d2fb861899e4a77d1eb624cbd3a23855058d.root': 699935L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_46_9aeb5c8d242fa92d14a53049e65cd5fb4ee2de54dbdb31d6f6c3156b.root': 628830L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_10_1c85e0dde31d091886c8765a5149255dba79501be3af8433616005bc.root': 155313L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_36_2d123bf041f7aa88e6ccde19aa510826df4101454dfb382e9b143772.root': 400056L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_1_96027c0e98e1779ba6e98baa17fdc7846bd74c3876b724326cc426e1.root': 467296L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_18_83ac4630d8a4049bf11ea65dd678ef6bd21789d6fa68f8cd18c0ed6a.root': 18268L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_2_8e859013e9a4e6c1600e97987bdceaa7637f5ed3d1de52e13fc0b646.root': 45228L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_71_5a62a01ad735e29a9c06894406675ec865f0465e7ff2f28a96250547.root': 142503L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_56_70cc5cf594e2903e6b868f19f5b045b9cb33504c5f51287dbed10425.root': 660258L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_43_719e8e8f204b2648a8dee96a15d2c6aee8f1b33fffa59abaa0bc0d85.root': 301719L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_48_b176b01804f2ebfa888c710709e3196f85427304da6ed770d6eaddf6.root': 830117L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_60_aaba2111bc0bcd9329e86dede82aa6d310f0eee83a258dba40f44be9.root': 674257L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_12_6b2d8296c2b1b33a059e7d73a2878d5bf13ed4879b3fd9b57381766d.root': 4924L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_30_2b1292861c619b090ff4e0f2e80268714dd5a85e92a75decc940d707.root': 47536L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_20_180fd432e8071d251008db0f7b1fef2a9a95ae04dca81eb5041791ea.root': 357797L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_43_33a0b1c23a55b347e7507bc962443b623057fa03d525042ac8a616eb.root': 620799L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_17_639e3c5781fa1fec73b49b45131ae17c1e60d1fb62f114e7b9d5df18.root': 170051L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_40_112eca68744811c244d471fcae005436ee7bc11ff6bf1ee52cf8cf5d.root': 71630L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_82_12c335f1748680c52cfd46c4331c0e9ee988b85ab1efc9652a126bfa.root': 939438L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_24_4cee9d9c9974910f4448b119652fe0ca6ba823503abed1155b44b8f9.root': 760433L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_33_a5c3076330d01d28edab89a63465050e165b5e38ff047207442814bd.root': 591174L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_7_24c50940f7c7fa71024187bd45c02907fd301f366355bad61f672f9a.root': 148541L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_6_2856b0bae84d7e334115bcb33ab77ae7f721c93a1a877350d229333e.root': 697268L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_78_cb92fe0bf2fa8c7aeef95d7eef4aea36a9ae033b1c0be76956cb4f78.root': 926418L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_45_2bc64671c7de555b1b180f57ce55ac14e88058205701accedba313e4.root': 82258L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_37_a706ca1f9edd8df4966188fde173efc056c5a60c52f6972ec5accc88.root': 62960L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_7_09efad8befd7655e86dcefcc9eb9718b5ce521dcce0ef693138b9f44.root': 931855L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_31_5ba154c36053a32f7ba1a0e5be6d16ca52074cafb5e29a3031979ba6.root': 783101L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_29_05a5c8372337bbf0eeffe8aae1e3ca1bec3649db2083f8535c9c252b.root': 379743L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_63_2b504940e5f76d968b42c3458293afc2c1d1018aac6a32353253fea5.root': 880762L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_36_cde1a1cdbb3aa301a6560693b068ad9ebfed5294310ea0a830723582.root': 283174L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_48_8462e10a524f5084d09d891e5d5c9e58a093c7a97ca12589f00eb7b9.root': 312800L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_6_6a5c33c3831bff1014bd617397a6e60373927e59f5abdfcf19d44a49.root': 138034L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_15_e9873da9acaa1588ea060a7b915a812857c50b30cd5ff3c52ed42639.root': 236198L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_7_c90d388e7a8e95ee5512524e46a2dbb23049d3f1c70d48e0ec991991.root': 217518L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_17_7b0f4d0e0179564e5d5f3aef5e4530b128bd10cf4e767c1dcfc9bc43.root': 459490L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_15_ff0330cafc0a21a540300a14c6f8e30a0b66b87a10fc56542a0a65ff.root': 342325L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_32_57bc67ff4d2ce35d501553a7a04469b0cbfe087d4f83e7f6598fcf9b.root': 273969L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_32_8b028fcc540ac091fcaff5ea1906b57a6e9709a3a7e2612f77ba2acb.root': 389816L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_44_680f36d500e203a9d4046b275be3ae1cb4e55665a2f686b645c7d4f2.root': 818551L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_72_623673b5b092f5f2dd442017b836b2ae39009214710cc26d92449708.root': 910031L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_19_ee7cb1358b1416713ab8b84974d1bbf12c42f5bc31bc81fc3adde2e2.root': 245444L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_7_34d72c2d407591db3fa12bea11abd274780f63b551f5e042835c0e1d.root': 326868L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_70_ddd1d766e53929b05fe186c9404d61a13a1775893425df26e3f11364.root': 140375L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_10_0dece86cf7305f967420f737c2d1b21143308c0cb3061c805a452e4d.root': 333358L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_20_1d7e2659b2d229d648441c642bbc8c480f1c149935f6c328b4eef765.root': 470128L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_4_a9cbd6eddbe3afeccf2d1c01cc7a8d273c34a8175b5dddda4326178e.root': 317695L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_14_ce28dcbd8cbc452b09ba389ec6d6eab130fa5a95ab1a254261337e4d.root': 9693L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_20_e318f9498a3857c79904765a5940b1b4f40199601a5492e4f46707f7.root': 749511L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_35_0713f756109d6f32b36b7b2f346308962fa5e2cfda5f7db27207e6fe.root': 280953L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_3_489f1c24bc51c57be0951a58b3ccca62708c1baa1a6e137a41ab5235.root': 807026L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_5_2cfc4c7f964083c727a5db7a5501c1dd76628acf6db5406d5ca981c7.root': 671522L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_4_35db84ce651052452731e3febfcd2c937f0de15af1f5e2d3c3fc0f03.root': 210804L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_42_3885977b0f482da364a29c4fca847d6f80049d36cc7a627bc7349db3.root': 618174L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_68_67e4b53160a0f46a5bf66ec330f6130fa40510793e8276272083a696.root': 694789L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_34_f9c3ae29ff640823fecfb785b21e59a88ec0d0c2c1a3a05f49f2a424.root': 206285L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_7_88abf07924328010c09b92ac30fa2d4c7706514d43837135eba11033.root': 514231L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_74_fb8ef96f45d1344cb262918c244c8705ce0b03b2e3bffcb2235c70bb.root': 148492L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_31_8e0eb506dafc11940af0ae4bda462f00764fd021bfc5815223a30ba2.root': 585867L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_11_7fa3dba12f729f09a45e6299a9a2eb267f5fb82b24ca44ddd1894dde.root': 157605L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_27_6b9de8278af799486fc2965cb533512f8aad4ee69ebc52b96a42459d.root': 769023L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_27_a4ad615cc1850dfd54425abdc325637b876208696f563876b8c3c4cb.root': 262414L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_34_1a49cc6d5167bfa47cdf7af0cdbd8ace965aa9873581cde496aa0e89.root': 791684L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_16_4758bc0e2dc17cc4ce161b33bef7b4be19bac515cee6a29152622332.root': 168146L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_63_370b7c5b17dd4b88b5d2204e500ead841736bf489405d9e833351d9e.root': 682201L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_55_881719594fa612401dd634340269ef85575a32ff24ccfc9481ceda06.root': 105555L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_22_86d00ef26153a01c62ed8e9d098ecadbb7fdb3bfa58fec91eb080e85.root': 475098L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_67_9130b8af5380f4e41dae837a0cae1e8a1c7eb71792208ff2e05a6541.root': 131919L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_37_39564e3acfb7d116c5c34cdf3dcdc4109a9b63f9504f9e157655c5b8.root': 402571L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_23_bbd399d9f9b7e7e4a0701e31c4d8a7ae36d0bdff8030b3f152bf89de.root': 563085L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_5_7d75c14656c8b2f4fbed3f3f961c3b10c53e5acf6d2a9d796bb19526.root': 115764L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_33_fbf06e16054610d995ca05bb241a5f98afaaf306d462be785ee33dee.root': 503710L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_2_ee08887b887c121016a1a2cc496a9c07494ef1d96ff04951432ddac5.root': 195500L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_42_5e4deb6377df311728d12c4e809bdcbd6d30a1b93879fded99ee9be4.root': 75530L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_71_46e52a840cd6e596bb80eef0498e31ceb187b932da01688d09c549fa.root': 703292L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_33_1767331543dcee05ac3be816c684525aadf3895e0c1e84b5e4bbda8b.root': 276252L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_23_53dce0d11ca24abc2d572ad436d258a6666b9ab856541b2d13c3f5a5.root': 477656L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_65_3978a66388c830dcfddf36febcf59ea6ba6d36016b62fcdbff2d1766.root': 127981L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_4_04630d6bfa7fc96f98a61314267a433c2b292d387c72f57b05f8000f.root': 836701L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_29_8b496fe63aaad3167a374dffc0475a419216bcbe0acf710d156e51c8.root': 774612L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_22_62fc14b95809ec59720605e0eb74b2878071ad77e60997584b24ffcd.root': 181084L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_42_9732cad33b3908c6968cfc0a89048725e3939bb61b3fc754154944fe.root': 299487L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_14_4209683126563648fa04ead157b9051f83a5277866ed10669113b68c.root': 533488L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_32_8357a2793730a6e3321426f71c62da413561da6993ba85522bfe1716.root': 501920L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_46_75588a56c4a486a248402d3b596addab24f88f8084774dc4d97d94a9.root': 308241L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_37_53366d93f70e65034be23627a1f1b754460335ee29b6064d2c7b348e.root': 601848L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_39_3ee5b074ef5d1862db394a0f0c715126c12e7026b386e30746dd4c19.root': 67312L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_15_be3d6f7baac3da44abf0e1bd8753b4ae7851d4ea4b3f11c7648f58cb.root': 454413L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_17_f2cf4abc61e697c5c12247b14e399fe27f368b8caa9c482990aa2545.root': 347398L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_71_e63c31c887c49b1f4c1b6dfd72c9de9e0eecd62247b0cbbaa917a81e.root': 907438L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_15_8b98d632c6fcbb301c3292b51457f0a20394cc3f63036aacd4cfdbef.root': 733404L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_22_a5efa937e281c63b740e6532206b2991e20430b2d90a5b18e0c68b6d.root': 251365L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_18_d44b27ce79b3114ae6643a8c6d7706ab87b5f67a1335429388a6db1d.root': 349978L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_41_4c420e54c278f91781c8828985168ba72807d388262399a6de008946.root': 297212L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_54_d84dc682a5c20b61388e9ba0b79270595f99e3510ea2a8aefff10d15.root': 654483L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_9_166fa16d070eda4ab58eac2ba0c586cbc003aabddfc88b0eec60661e.root': 947488L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_43_8f49398846728b7243276d7dab50d7b6c435a4e71f1660a4f9c48131.root': 77671L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_37_fff07993fc180f17db659ff6452fe1659df44e2b40e27a12faa90e0c.root': 798868L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_44_8319cf2cd781915f38aa40c37dd379060e5ba03ce67917be41c6f784.root': 623608L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_57_c9c5a1a615360fc65d578e3c06b3194b7d2f6cb523563503486e9f6e.root': 663029L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_47_666e7d76e93d029d02cf4d0c26f607751f07d531c609ced9a0805953.root': 631401L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_58_fd35b7ac9142c0d75e37fdcb3aa085ea7ee5a6a94d20b7c1c6474afe.root': 111846L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_28_f6cbba09ada78e8a84b548323c56c664601a88e30e86dd5cf0fc76e3.root': 490657L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_1_d430e1c0205407b788149f1191d2a90187d2b62746dd4b71986fda4b.root': 176570L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_67_652328b313552e17a41811b78ded2ac449c6f1b10d9c3e8b0c60d56e.root': 893279L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_35_ce544e98c4b1786e4ddc0cc6ebc6f3094e77deed615c420c8f330ad7.root': 596496L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_13_f374ba149cc199515c0db9de14578c97b8627c016c30bd13c2b3f19b.root': 727477L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_10_9b7cf241ea5189a9dd8705674c14ef2a15c787c62b43577e6aff1625.root': 440094L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_64_88dc614047eb992e156507602b3983d25afc3c9dfbb6e32bd71cac89.root': 684639L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_11_f34859d7c625f086c734f30450bbba145851c9c06b9436b6b2893d3c.root': 442683L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_68_72107a61af2e4a64b648bfe08cbf0ed9dc2bad2947876e2bc8a0c7dd.root': 134083L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_10_95be9cef23b5ca1ef39d3b011c1c4385c81da7b47038b49501c46db2.root': 718655L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_8_63b9c63c20ce790e6336dedb73d1591ecbd691bc2572c3d8d71202a2.root': 151040L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_1_f9226da3713924bc11a9c1515cde12d1ebcd0954e5c5799c8b268382.root': 746943L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_70_3f0804f0af36bacf060d0c145eba2b8b5c3ec73974ff856e58d8cd21.root': 904681L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_40_2e82e2f2239ad8a4faad90ddc8fe27082201135c3dad7c136ed8a9f5.root': 612450L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_12_818d68486a9d1993e0176d8a7a07d2288d971992c2b46177a9a9d04d.root': 445704L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_11_c4efc83601b7310086bc5908438f4aabe9258d219300de4c5a4cf6ce.root': 524862L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_6_d4a8bc736dedc5921e98e61fe9abbf45c328897d17e15b89c9373016.root': 215382L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_22_3df6ee7df7a94121b4f54079b8a22b0618c35a81b3f0cbe2cf62d075.root': 755062L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_18_400d3957e35f1d2d9b395f6365fc7dd5a97c24bb6a4b0560e8aa8dc7.root': 243206L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_49_285eb2375db1810ca3270fe283b38f3376055bf58c19f5bf21482960.root': 637274L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_51_80ccc0f2818fe6d11cdfa6d9eec861122ece59164636f8e2d5b04a26.root': 97308L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_33_91c9a400e7edb837d5ab21951e5babf7ee7550e585af8fb4994477c0.root': 54064L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_28_01fed284b267af40a84ca247531acecfa3492a79e2fad065a5693e5b.root': 771801L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_23_b2b914f4fb5546e3b6687bebac6ae16c065114c072c7a32d3918db24.root': 757662L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_52_80c4fbbb46807a50f6dea3d2077c9fcd5cfc681ed3371a93b369d9cd.root': 845177L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_26_87384794e0e93be0dfde851a6020d2f16101afd5a8b8564329099211.root': 187875L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_17_9fe6f6ac5928c746f35be9c9e5bdd5ba7ddd0240d5410fd57a814e0c.root': 16299L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_51_509e2ca74acd67c236ee82f73ba3c318f248d8eec930c7c7a2f16783.root': 322264L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_37_eca4aef611bf95c589ef81b95486fa4613fb53751f33de8e7b37f0e8.root': 285508L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_2_f20bd89c24878606afa33eaf9a616cee4313427271a1964f9bed79ec.root': 582972L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_17_671c8e0b361daad2e2229b43d3a6a477f05ebbf89c257ffa2cf74d67.root': 738759L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_77_e464d8d7a59b49aa28e0d5d0b1f3e4a11c374d33f8a211d685fa24f9.root': 923576L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_50_1eaad8e3879f4531c2b80332202bc15a2b7b58040b9bc32bb691143b.root': 839425L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_44_e24673afe488b402a27b9fbf1137c89955b4b18097243c43a0e0d9bb.root': 80047L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_51_00d9518c6b3468c0c91e3c914315512f7c89225693940f52a22fda6e.root': 645908L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_50_daf687217437660c205e24a43e712ce79e0e7431e468b8a56f0fb8dd.root': 643279L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_27_f28fbae7e436033dfd804617b8595cd3b162c070c180679885c1b94d.root': 488086L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_80_4124aba9d172903ac255cc5cbab7db9b24a2cc4eb7880d18e035f017.root': 935142L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_13_d6706f938939b80ba9f8e39188230085564143e68aba4b213035484b.root': 448707L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_8_f78e7587b0175b47bfa947264a1fcf2ea12f36e7c581630bf2d3dda3.root': 713000L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_18_4fe1bd9ab5fadfce836ce08572baf59c746a2828b182ba7156d44eac.root': 172603L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_42_405a777dc57cd543ac31358f94a0558fbeeba0b6fbb7d07c38ce83df.root': 417455L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_57_9dc7f42651da6e0d8f30f629bd7ba1cb16105d6f30b0d94208183268.root': 859736L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_53_6317c8b9354382c0353c116eb929b6bf3523b61488a9af34c53479cc.root': 651494L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_23_23766b798015fcbe84584cebaada9a75514d7079dcfd3bc09e732724.root': 253579L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_32_3626ba50818d3fa2cf42aed875ba418ed3b026edf1f2c6ec34847878.root': 202136L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_72_0fb0d3ed6a17a6ab08647db2c44b062b852f2cb3b8ebd0dd7b0fe4af.root': 144467L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_7_e3a0523ccbc204fcf679479fac44dcfbb274c7abb0e5020c2961a577.root': 432749L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_5_e95b764f48e3e935fa97a6905ad161df42a0f3ed0f3c0895f8a01c37.root': 322266L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_65_d80de797c912fbc196721c4c83e4d394f1f3d58699eab714089646af.root': 687305L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_64_256b3858a91ed8c6c9dcd776e44917571ec1e8238dd98130e18a423f.root': 883786L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_12_cda3e8f79ff9b88d3c7e0c1b2fa37c86db74b0a1fcebbeed1e62b70a.root': 229050L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_30_55a3497939893e5788f84cbe8d3d9f36c7be9e5552aab60cf64df15d.root': 384737L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_31_c45d79ab270515c79aa0abc1aa5a21ccf6c47e9a2f5c1f9143bbe922.root': 387321L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_50_aaab8fc4312b4281e1473a9930808a18aac9b598733b20e63d7d75a8.root': 95128L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_3_b708f9401cbc0af8b43d489867642c41c442a479cd3e2c54f27d9de7.root': 69538L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_60_25399cf8e537005b9576f2a1fed3b1a4606d7b7e4943546f6f754878.root': 872206L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_6_0dbad6530f019541a8ff81ac38617130f90cf2e5f2d5a056f5d5fc40.root': 430117L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_4_843028e877487df3d3effd977c966176f32e96f1113634ccf713c86e.root': 92915L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_62_a13baf6715f5c010db5f02180fa6b35e543a2d40514e4936ccf8845f.root': 878011L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_12_786a3ed985af1fb7f4188895acb0fcd14fabda8c28c9a602e657dc20.root': 159619L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_13_38461da61f5c7f1173d1ba13e80af0381c1af9e19bbfde6057640693.root': 7554L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_29_81a04630db6102eb3c1da600b579f58bf8dbbed0a96ade5206945b7d.root': 43212L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_25_1854b9e6869f386ab19ccc54bc519ab6db88d7991b7d8d3bd6cb005b.root': 568279L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_19_b8642bc475ad21b06b729c8960c45b3bfffa663bc1846fbeb2443fa0.root': 464915L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_48_75352540def4f377189b1ba7c50278a9184fc70adabc72b9b917ce05.root': 633940L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_25_cbc95e69bb3912867b6953abd0de79799dca609c7d33f64c0a1deeec.root': 34631L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_59_385e7131ecf781ca738dac6ce74999377e87fc3e0ab274565facbc7d.root': 668822L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_34_60286922e546a51dfd5529bf7703eab2b8f802b645f867e43c4df4f4.root': 394915L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_28_e0a01498414e3c6bd137428c9514eeb20743f90648304c3a3eff1ced.root': 377186L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_16_fbb2770107cacbf1a0f67cf1be39cacd1a6473a73e6cea2104dfe1d2.root': 539751L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_9_01e8744b0d7f35cd4e9a850af2f05742821ed6e5ae018d4bd704b263.root': 519489L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_38_e342a77206c7725354afd8108cb45519dd577e3e33457d244b728213.root': 604303L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_2_b0c12c2ea0d45cf0619f44686a42b15b0fc0403e7c8eac93fa60ccfa.root': 777547L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_33_c3d83946c349bdf36f74b8fef2da941277e6484d1ab018275819b777.root': 392350L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_14_edf26572c388f511280cabf03fe8000f386ea79bd87d6e651e67807d.root': 339564L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_24_b888288cae52cb8607ea7305fb2754cced154f042434994175ba6451.root': 185115L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_19_c75bf520c6977db59f9c728d87fa6ebd5a0fb51ddabd9d38beb75169.root': 174745L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_3_fc79e8b98d78d133035bbd1dab0fcd86a40f1941b08cc1d084153437.root': 292621L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_29_a8dc7f8d7f07b06c1ae8c377a85a0ebe0ee7c5adb962dbd5104cdc36.root': 493115L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_25_0dd03f334c07d9a03e3c44a957e25fc92625eee96764f88a27de1c5b.root': 483100L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_17_3a7135b6bc5d63fe8ca283601405bda1cb094b46c69c87fb18c06d0e.root': 240888L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_57_c02653a7814e82a7b984611d465ed96c4e02ae49a1460d8c555dd29a.root': 109931L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_18_44f39eccbb53365e6e97fe3d925096b12ef22c4ef3d2207391e488e8.root': 462065L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_44_f564454683297e040f57da491fb42bd2f0021a8977d394a916a67eaa.root': 422379L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_19_d9d13a9234af33b93f072bd2907762c83e4fabbb0f1a0b02092b0517.root': 548781L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_59_8eb29c82bba7eac181904146addd76344368df0eda36e62f9343867a.root': 866046L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_39_b01295db91b86d6399ebe3f91692a820662e993cc4fa5269433c876f.root': 804319L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_17_d88c8f519a33f770957b7e8bdee39b947c441bfbd4a3feab8b0bbf84.root': 542745L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_2_98376280d3ed54d8cda39f862ffc120cfe8ceda88d05c833bb02b885.root': 382348L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_6_da05d153ab2cace2d82ef5d31637e4f0b27ba2266524d234e3718ef5.root': 901596L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_5_bba76406c57a6965c73e1083622bd4e50555cf784c56a84696caede0.root': 213219L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_45_42d1ed7d896d24501e378c2a3ac547429684d2b5498397e66a70508b.root': 306131L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_50_2e6bb9408aa19608dd6e12f0a5706a7488adc96f41aa63a28fe32edf.root': 319917L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_79_b01d8bdfd43f320cad6c473d3996f1a2239330d56aa8824c0c56254b.root': 929271L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_62_c4cffee0ee6d54b10ab3f67611deb985a9d9ddf00222ea81936a4875.root': 679739L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_27_396f16001cb7527ac3215ae4ac4d4e37dab84e851e6e30d74166a2f7.root': 188564L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_24_779d1b68f703447ef6f4e5967442835f42691cb19fed742d26316a07.root': 32123L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_25_8de6f4398e563553e004d9003e2acc9246cb637e8363e2ae8401beae.root': 258160L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_23_9f1a023f1d9dceffeb0d27780f81b4c908196e67c85be8ce613a0a61.root': 183127L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_30_f39822d5118bc4cc21a641c0b3f93f6f92b592161cd3c276f5614f6e.root': 780299L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_35_0b882780ffd04650201b30bda9d92b4e3f7e3be18c0e520be3fdb06a.root': 794497L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_8_a7783406170d158943c901ad3ae556e1dc15870f7911cd96ac9d32f1.root': 329022L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_24_8d51e502e19cbc4345a494fcbb7f27c36d455843c79a098dc496b445.root': 565685L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_14_f811385f2480cf6fa5ec8877a567800f0ad9cd694858094e1e462365.root': 451535L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_21_db8134479900ea8e8e34b2da77792d94ca576768c27fb54a5ae904e2.root': 178843L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_18_43651f9c761579f23713510f598dac039425d1aef9756bfc1792633f.root': 545723L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_40_747d1f3b6ed2ed0646db79486b9bed158e256d4edbad1914e8c634ba.root': 294930L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_13_881fbedce7c7b901195c65007400d11de08edf24900b84994b9177f9.root': 336852L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_9_d8a4ef05acba619999718994b8c9a72e576d24f5b2ed2fada4734383.root': 222157L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_41_af17c28fbefaf96457c58150f62be79659319115dd4206bfd56970ad.root': 414857L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_34_6301b269f41f856b1bfed6a4bee7c5d86d2dd20ba878ee3510a54dd2.root': 278490L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_13_023b56589de053f91e551df0364cf60d57bdcb6f73e78e6d0a56ab1b.root': 231759L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_20_ed2514ab9e337a1a3d768a160312c4f272919279b7d5b77a3553b105.root': 554487L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_31_25af3ffd64f12eb122e62462dc90a49e85ddecfd48fee551c9942a74.root': 271658L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_21_c42156ce72fb444efaba0fca9cccc27ec57841afa4cf7d358d171a56.root': 24793L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_38_471ecb4973cd02b10488493be7b73d02b1001879535982b6f84161a4.root': 405063L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_22_6a5b2747f3a3e849e05b460665350899e5241e3da1918c17e3e652c7.root': 362681L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_68_7f37b81f0d496fe5773cd2c3f0a280edae3b2c27e033bf019cbfcbb3.root': 895946L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_45_10d01a9c819f85605c8f53b76385e687517226f70aaf75c40a6cd8fe.root': 626048L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_36_8fbc82cdf9cb23f9ca02ca90f3d089f438d1d6576642d5f2faf625e0.root': 797334L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_23_e10818bd175beae01e0661f08b674ef0e1037a55525a373dd3c4c7b8.root': 365024L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_6_97ca981ea0f44097725b96e9223c37d3e96dad481ae897caff344e42.root': 511712L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_31_cbde70893099cc9502ffeef638714eea9abc1436b8722764169d00de.root': 500832L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_27_916f72ebd1fa962aa7fab800d5b1a7b6938c532a6d2db5c26eb5988e.root': 574425L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_4_8cf6209239cf97954037e95b750eaf2cb73313090c4366f5de3dfc2a.root': 424899L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_5_56cc98ae7bcff9670afcb9d608b5e105bfc3b96528957bd23541b0be.root': 427521L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_66_a961cc4790f5cdbc8c0fb6e9984d6c2aca4318837265da1cc2b5975c.root': 129905L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_6_f449c0a0e91aec135565f3cca6aecd1849065818aac6c61895925f96.root': 324465L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_1_4858e614971554167a9fa950724e67a119d67ac1fe4ab3c16a78d6f9.root': 246044L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_58_f36b4d6dc4123a58097972502932dd01e94b802b47c7dccdd3cc886f.root': 665690L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_45_334fe16c99c2c1ecd3b0790a0a7d6ae8a22917b550384689e2b2eda3.root': 821682L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_30_41711fb9f9e887b4adfc8c0aa4824e2a8c2a64db90cd66d651f2bb9d.root': 583195L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_62_ea9651845b7337f822d6467a0ae2e2ba83f9a4fa6e7f0c9e92e82ad3.root': 122149L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_9_376da52b0f70e97bd79d93c67e23cecbb58755abe4b14c9c318822e2.root': 153420L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_52_4fdc59d97684b7fe2dceab0e174cbfb4eea18482895ae42a4f4da570.root': 648689L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_27_59a92cbeaf002132701e2d800b6a288707d56b681579bc1df013b43a.root': 38907L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_14_bed3917d54beb1119acf1b605a142783105847da5b1e40fa1a87a7ab.root': 163761L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_13_7cdd1a8e7cf5827cd908f24e3f50d08b4b9ee01e4fbc672957170560.root': 161679L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_39_bff81002c17694a6514acf30c13eff3288531509a75c4ea112a3a4b1.root': 606903L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_35_7814a4e93a57ed39fc53f69c090f123ea7a1e64beb943a541a55513a.root': 58207L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_14_b39bee145d364a8030587ac747aaf3fffaea2b61daa85e42d7fff227.root': 233904L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_19_d77990089227043fd49951cd3bfb47c2279bce94eae6ea07eee8964d.root': 20241L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_32_9a41063097b6181f8ac5a88c742a7b26ef78394eaf90b7639aa863c7.root': 588568L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_47_f4e2cf7263ed017f942839528a4e3f6d3f0bfdf643bfd3e325b6b0f7.root': 86362L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_15_268517d8af491e42058f55f955aea691638bc9895b129984d4f189f7.root': 165919L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_11_b170f3b23d342c4e16c6df6bccc6ee8e0a2f41c97c04fa8ac521776c.root': 334358L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_29_3c04ef4a4da268b272e2d3ef7bdecf8aabeef39979a467b88086a924.root': 580237L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_67_088513bee74e11664b88ccd9a0ff0baaba9fe1c6d722bcffc8bb8621.root': 692506L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_14_adbf4a17fa168d8b9b119f8ed1c81f1be9683b0d4221cf581afcc0e1.root': 730517L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_1_c59dd914420d82fbeb42832ea3e034ab727ff945be654f92cb9e6f73.root': 354980L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_58_47a199bcabb7fb2b75ad081f51f89bf9d5bd627ca2f28d03b6de22b4.root': 862723L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_32_6e4f8518d58e07cd1a8957a52f0fa72849210dccd17234cf4e65f1cd.root': 785804L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_69_64c35207ea4072e12a96ad5bdf7663b3c173deaeebe9b75ac84ea30a.root': 696230L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_13_f10b9a9b7a720a406f5517fa055305408ecdf3d208456e349bbe667c.root': 530925L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_61_90913d58abb4245eb0156050b86116b53e876b0249cb74439a381f39.root': 120059L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_43_b919dcb39af238c217259c2058c9239d4fa9aad3ce660079fcbc6d8b.root': 817919L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_38_d42f6fc69f9dc2f6f65533f49a18acb4274a253a6e260a7f062ad340.root': 288044L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_2_eb6859f3b49af7381a9eb82806a73eced4545878b58d637f2110a8e3.root': 495678L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_42_70f8c600c75897e891b0aac5b4292156a63418d3cef99877f0a47b70.root': 815210L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_18_31ef6ea0fbd32a2c50a15cd3cac81d660835d0a7132e2bd25c2aeeb2.root': 741499L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_60_fcf265935a8f7f54bffccf46c08bfeec74ce73f28e2dc85f606c212d.root': 118169L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_33_da6440ca27f2299932727a6aa53da6788c3c1ca365acad81b0a4beb1.root': 788724L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_21_19d666135f5c4bc4e09910e204b631c93d33e904cc2e0389049e2f18.root': 557541L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_54_fdb504e0c20d059b03b58450b195e6f5d177dcc3348f3251a1a20880.root': 850838L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_16_f3d63328a3f4b96a28ac1d7b4f6be694cdcd77eb46d85e9ac8b1b70e.root': 344950L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_10_9201292ed25fa1f15c0673b7400469294f25392f10b66bd4aaac35fb.root': 224304L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_3_e6574ec1de7703992831ff242419ddc366c292a86a0d6abc90a14e31.root': 609735L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_21_e85f08269e812d869b532e595fa73c352a6fd52918609324a748352f.root': 360245L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_47_4ceb38e302d69ec040af3571d5e878071e9d2468ef5eedac569fa5bc.root': 310528L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_19_48d29fd0e7b14c9d7d33bf473de7010c583daf673e18ceb557242553.root': 744290L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_3_df02f7ea720abe2e3a1ce2633e579c6675166cf52e899edd32b00e51.root': 208714L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_24_51cf6369406319969eff95e5c588b558b5b302dd685616cfaf5250ef.root': 480453L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_8_e491fc3f5eaee4df1948589027ba9aee8fa0e784ff3341f36dc50985.root': 944662L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_41_d340374808f9be54131f0cbdca9dfb461deb3fbf5e398d8ddf39240b.root': 615133L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_56_4e06cfbe4cff2e0ce3287850a3ec80433c6df9c7ffacc9e795f35aed.root': 107918L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_44_342463d53358774630b93ad0f4fd767cc9833b77388e12c7a8eabac6.root': 303867L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_3_a21b649cdf56b4f34ed8499c88ec2455521fa68143a1b3cbd5bf2b02.root': 503773L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_52_a1873efe70eca55e30abb655d8324da80220431be7858219a8c2521f.root': 99389L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_24_6948af0eb45e6e569859d56ac31c1d9a97d95a7f244de37db6d412ff.root': 367404L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_27_7e3de169774a3e028566ac6d1806873e3eeca510867f199046d5b42a.root': 374830L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_33_07811a5a2a1dca7eb9786afe33a20f749d7ebc8eb16309fdd5b224b5.root': 204138L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_7_cc23c50f6da0635965055a72bdfb17ae98ec09ff0c35021bd988c95a.root': 710113L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_30_0eecae62e4e504c28da8d3f495d5b3623b62998190512a1b92bb9731.root': 498352L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_35_31c9978a30e97e5d67f71aa4ade6e72a26a0cf2621da730f3a0bb223.root': 208075L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_5_0551a4f4d0e1bc91d8ee6371726cc1c03cc748bb8d9456728eedc8a6.root': 869132L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_28_3bdd6972470a59673d81d097764fa754e195f0bf5491b34fb2d5d6c9.root': 577118L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_36_c3f8ca3a6ab5b9b6c9d234bd83eecb2f3dd7874f7aea75a554955a22.root': 60651L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_20_fdcd7267e5219979a0adbce774e378526ba126a007daa6350e8494d3.root': 246801L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_34_f2f7ffc24afe6d4341378daf1d99238c6d117a208fc32bd4cf35d764.root': 56111L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_22_d7eb9ad17adafecafc4ee8af4fee955f12d7096688f3c5ffce0a203e.root': 27692L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_25_4dbbb245b189446d2af179abf4537e3b9cd56452bd5956ff18795934.root': 369872L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_46_6640da3ecdfda8fb195a86643f5763da720631e007148e3603407958.root': 84227L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_36_970a80adb1b6e7a0f84bf1813d756b9ae18df531fd1179c76eaf1828.root': 599102L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_1_60eb61945743ed11b3a873079d8fa647744bb451268debe9d99a5cc2.root': 22416L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_41_90afd3160db1d7ab52f4cd3e1079025d6ded20a60da3310ab8871219.root': 812533L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_8_1e9016b1a3004241396e980d38b544a23a1928afa24d341819fc084a.root': 516849L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_61_440069132e4ad9560dc326a6f14334e75609963223220ca4870f3985.root': 875427L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_12_86b2d35aa1dad03894b26ba87971dba84b200153ec3f924adcdc8dec.root': 334386L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_16_817f8d18178977fc99ada8e638d09fd35433e75440bf929436bad0e3.root': 238524L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_23_cdf37c5dd44fe0984f06d0190dc8bb7641da2152c6d6fac57f52b5c4.root': 29476L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_35_e7febbf6c65d8067a58b70b87f68b521d9daeaa57f97ce7b5220647f.root': 397450L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_81_866ca15f4f7e01784842d06c274c0697e98764b0df2e32d8942f6dc6.root': 938131L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_15_2f1f8bcfb82fd3cde1f732600fa2c8a3963bd05aeeda2715617fd34b.root': 536782L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016F-Nano14Dec2018-v1117_190426_100050_0000_16_8980b986f5a06763711718834f3c187a85bb689200ef93c45e60015a.root': 456782L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_49_1793da6686bcf514e75e816b5308659eeb5c9bc8d074257ec04e2040.root': 90855L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_16_be60bf8812bc47b981bdc1c3c5ed7c12555b4c0b16038fe8f9bfea35.root': 14162L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_11_5bd61d231dde6fee98880b2c7efa246bf8a66516d6191fc170960d03.root': 721956L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016G-Nano14Dec2018-v1118_190426_100140_0000_55_6d03ac377e0ed877c18cdd8068a37eeac42b041065b4b76c9a98419e.root': 657314L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016H-Nano14Dec2018-v1119_190426_100229_0000_73_2ea2ee29f4cde1ab19cc5b50c2f8f06d4f25d8aab728b66448229745.root': 912824L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016D-Nano14Dec2018-v1115_190426_095913_0000_29_8c2ffe19f75dca2a840aeb25f8a417bc0ee5653f47b6dbe3a5ae8786.root': 267096L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016C-Nano14Dec2018-v1114_190426_095826_0000_8_c9bbc0bef2168a9e6bdc83f7ab1e7e24691ab4285203ab93bda289af.root': 219819L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve113_190426_095737_0000_28_0ce49901349804c2dd94d1369ed0671b6b448d53588ef9d3a215800a.root': 41158L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//SingleMuon/tree_Run2016E-Nano14Dec2018-v1116_190426_100001_0000_26_9841e5eb80a68e234f5bd7885580b72353b2607f60a9126e84742a80.root': 372504L}, 'WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_28_02052eaddc14f5aa3a9652a3179d03ac39d9742ba10220e207f70974.root': 12689L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_5_674a97ac6c514e1a37c3a0dc4dd2e57e68e5c03741f3e65e05485ee6.root': 20011L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_1_1c08a244074dc05e8b233799ceca774a75b3d03b37481ff3997fcce3.root': 28520L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_12_30fc66238b9629db6e7af09ecf9144e12ac5948eeb50333cb1d01743.root': 985L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_29_9f8a505a254731743e456b0936d2b0c43a0afbcd9316772500dd9481.root': 13490L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_1_49c962be49442003f331830071ccf1cc76ed1985fabafec0bedf5757.root': 5096L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_32_c21d491eff13bed8139cad12af66e7dc46730cfc205c7a9d8afd142f.root': 16218L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_8_92db9fee0d1a4567128721684a163f43b5a5348dc5af529401fc1843.root': 21659L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_6_cf4e50a2c08496e1e814f3825d02851dceae8b359205ca83aef7e66f.root': 31182L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_2_a59b2d6dbc0515c2511a384e2d4f974b27a7b96a794229265f57024a.root': 13526L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_16_e7802bc4be91ee1ad57df576df6645d72d2a301f6998a382d3dab8c9.root': 26509L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_13_1a7aaf03ae64261e994cb65716aa99d5e268284745d448a613f1b38a.root': 1495L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_14_dc45794608b0152a54d1eb52aa71c14f6f6598e7f42616a223bf500f.root': 25435L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_22_92ba8a3c2855854a3cdca7e1552824be6540ac6b928193545fae9c41.root': 7507L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_33_ef24f522da7dd147f94c08f3db0a44695bf2434af80ffc3a4cc9d306.root': 16846L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_18_c5c211f071ea6173c306031f9cd6be409ff7d8f7b0afc92626050e2b.root': 27107L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_16_348cc5fbae55bbab1e2dc56562837a3e3a68bd5f8c6b9e728d0a290b.root': 2486L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_12_544eb11d16fd27e965ab3939f6ee560adc3ddf5a62de053b7e88984e.root': 24313L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_10_0af07cb55ae98bf60b95cdb22a964c5d535e5df58b0bd26cb6b5e0d2.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_25_9e07f1f10d77757ba7997eba8bcdbbe959472da8bbb752468e270535.root': 10123L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_26_09fe39fcc8166cecf063a746c790003c2f3b3c8b5515e8cf6c655460.root': 11084L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_7_5414e5555e3c9bc6cc729379c8b01b4ed1a95895f08e2bd668c01758.root': 32145L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_36_4d6ab2b7c7dc5947c254e5af575270c8e9f84e9c366487c0524b0ec9.root': 18123L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_27_ec5990b45d45b40f696468028483e3407f44a962d0c265f7e25a99c5.root': 12046L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_2_981685b98435c553452526dd9cb8db50e4228dadc529b66f45cd2902.root': 28579L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_9_d131cf56e21fd99ace1036eb86007d6981a27fb13a85e26131f76f46.root': 22255L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_11_c29f01aadff4aa84a610979f3425a5e6d9ba3a6e7eb78a4a9faab039.root': 541L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_31_3574dbedc0b64ecb6e8505eca3a6c4519ac263252d51955faac0de9d.root': 15248L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_19_30626b7699ba155b19965009f98eac47d827f834f530a466d2e47ddb.root': 27644L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_18_cd53622ad5883dcdd91af4b17841cdefc3cb51ec829b12577f88938e.root': 3601L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_20_5804b11c9cf9d9289b79465645a03551c153c92b05e5b8902ab50eb2.root': 28533L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_3_53ac432d384ab206fdd726a4157d88bc0e0d8dbcc903d0f393b9484a.root': 18665L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_11_aff05db59fbf2558baf882204a764d679dd9bb31c4c744e54050c869.root': 23501L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_19_4c65dbf8576d2096222ade9f52827fe313a4aaa163a4140b3e491191.root': 4126L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_35_164ccb5c17dbee7ed2126670a98ddbb692ca4d3d3b2f60adb8898b7f.root': 17614L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_30_a1a9b12c2f3463152a40d171f5c7f7f499f45bbfdf4cda26e274e66c.root': 14444L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_7_f983a20112ee48be0a5777e7030fb8166e56222ac8480a851c3b5c65.root': 21631L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_20_3e3377cba271853f5837340c312dead9ada1c8ab912e5ab51084c8fa.root': 5879L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_9_db01e108ceca029cb4adfb2cb9ed11e62d6ea7592c5973fe1932bf49.root': 33443L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_14_33e242879e0c08eda9a794ee3b74799d5ede98e6502b7a1a60f4e442.root': 1565L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_8_deb1484ba38b23f800ccb4d9376352229b87f0b08c67b909187cbeb5.root': 32783L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_4_1ac02a011e997e50d33f39e05bc68fd6fdee7f2aee34f89eb5bcc883.root': 19366L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_17_da9d6160d93258a19d050d5162e6127df8aff60d3415950d0dbcea4a.root': 3178L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_5_bc241948f3c7d707cfdd7003bda0e47757f7f3728c208cc3b9b1aa03.root': 30430L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_3_75416bb5bec7cdbbdbdf60a5861de29dcbc5b9bb129cad5561f75315.root': 29397L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_34_59dd3b51da5915e3678dad406bcbea6561ab1464f843f68728b98176.root': 17041L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_15_9f9308074723013ab8481e74e4c729a42db94bdb7848c24398e72f83.root': 1787L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_15_cd904f4784a3b609752d64e889d569bf443f10ba093c6862b39bb4ac.root': 26034L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_23_82ba02dedf5585200105657feac023c64d8a029dff800f044f387687.root': 8442L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_17_e7d1ed63a6dd4ae57ef338fd3c7651aeca1faffe2c1be2ec9ee75390.root': 26658L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_6_bc6796553d685d329f22d25ca399b476e38c8fe1ef7cdc56fe1de926.root': 20708L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_24_1860422e336cd345a8081a5bb3696cea983c6641dc23e0630dbc3f9e.root': 9275L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_10_ffc0d91b5463f90b5e8f42fbcf81322cabc69d4d12c7adcac9481774.root': 22920L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_4_4b264ed05077d83cfe104263b32cd7b84544541e6f0f79f23fac9d37.root': 29946L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_21_05ed3bdcea11f4f088c5a7f0790a6caa655c4f6f669f3453b64acc19.root': 6719L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_13_4f57b18dd363077be66f3a6cf9ea8ba0466b168748ce204bc5a483fe.root': 24918L}, 'QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_30_148d01f52bbe9e1bbdb98ddc8822b7ef2df8159c8e6ba227fd4c8237.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_2_575f59a47e2ab527af22ae7bad47c951f5852943a963621f71b359c5.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_14_2a4d626fa3f6ca47fc67852d08578281f2f5801cc908e64ca061d400.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_13_d75e97f6f97f5f753bdd21c50439971acc67dba791caaed6639ba8ed.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_6_9c78f5611510faeadd79ba57202c64d91f58f1f4ba4482b28e5970fa.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_7_d596074ee238eee857328f336aef145d2079d6ac669f05bcf0848784.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_6_fbce6e1d9725450a0615d4014ce5927eff387007eb38ecd268cf22cc.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_26_c3feb4f7ad1879c8159b2bbf3fa6792bff9b659dd29213588b47013d.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_20_ef5a4f03650d75387025af0c3eaf909cfb8df223d2a7d361a7aa3975.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_4_1352d97436937a5be1eb8a54e27ea17e24ecac235fd0e8076c7f0b8d.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_34_d2599d4f11a84c0ca6e4100c1723190da6f5e078d22d094eca415595.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_9_8defa3b14040a02a4f32bacb70bc6bfc42bb07701e982501cf88cbc6.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_14_0412184d61b13da4d941e007454e851369b159f46b365a9d67af4329.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_13_dd0b920a533311e162483e388b1660c74b02d482381a44a275994b88.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_5_07934e48339455675401414dd946ef1988639eb3e779ae3dc2287476.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_16_e87bf763ba63f3817dfc84ba5e567178708926d248d6566fc039423e.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_21_49b788fa3bece595ab957808dbfe21010aa5264b8dc627f0aeccf4c8.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_22_555873da715567c375e9cf559e5e8b7d10383f202d987b993f6ad070.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_17_308b2e78d882c0ba66c21780e221a6a096182a244b5e352c26254708.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_23_2f31e1da185cc69c5219917b67deba06c8c6d17ad53e51192c7f0288.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_8_f349bf044b69aafee33f883c39ea4de5cdf3ddcc107e217a2c58a37e.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_27_6c18614b8dcebd0dba0ab4a5365aa6ee2e395722a28e9f1c5ef780d6.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_3_b2fb0fbbb6d67a4d16027490f0bf98ea21d6bd552439758dbc125dc8.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_11_f2661bc4d1bbe96d10f99c847e42c2761e37348e33e4765c02796778.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_1_399b1ac2357478aeca326859a410911cb198c09e935890968161703b.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_3_da5ad961268d3ed283beb0b09982e770b4cdbdd169aafcd0e61fa297.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_1_ecf8a65e1996e2b78401622ba2c2548b5ac78c50e89f6e81e10bd6a6.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_10_8eab575882f79486217c951958e89ddc285bc0ccca83158b4b1c2744.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_29_f7020c1b11a2cca43b9fa5a3385e5db814f83928974fc7b018c88861.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_8_1bad0970f625841609fbeb3a0578053eea08bf3a0c3ccf865af1bca1.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_31_d0023c6fdca27197dcd68a8324e34adee4c27079b186140380130058.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_7_48902f084da259e72adac5079e9045e19a830ed20486293d294c8849.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_2_c756197a7e36255a92c22b9cd0f68dc077822af8875d411f5edada4a.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_33_0244e8708aa25234242b3c23fb42a5a5ca570166e50dfa31c4d565ea.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_15_6ce14a3d3e2b5a221a92f9f99d1b61586f13281829473d557da8ea13.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_12_fba3d26e155745a43664c73a79fddac84ecd6b1f3ba292c8cecb9eea.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_9_168c86b90e1eed4f168bd199477e0310355b6dbc745523df66cca1a8.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_32_2254eb1125b4698b4ffe6a1159aef93cc2b5b48a97ed694b67c96a43.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_24_93af7e3086c3f71cae4c3b59e33f35012e379dd5cd19cf4efe9acdac.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_5_f5154dad0fdb8234be55d79d65bb9004077519c272c56bf5ccdcd661.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_15_708817bbaf52fdc9f1a06414e5445973642d39ec9316aa842e424082.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_12_0f286fef695d8f3b424d9113bf016528a679b182cc3b07a65a797a60.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_11_b3d38c829a87c799cfc8b788468dadbfb1b14f4512d510913323d5ea.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_18_3c16ad06a07c048f3e9ee932209af59f35f2413b4835aa5f1241f729.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_4_267bae5f3d55c1250d3c9fa5b5febc6ad944d13a208ea99e8c65f63c.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_25_6f7375c48487c777c40606090c5797dab0f74ab8dedd05feccee45e2.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_19_bf0644f8636b399ad13fada6476f4e275af65365906b922939945bf8.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_28_e2661ce0d50fc330f5ef2deab045d6c04771475e2b8286a263e8d2ce.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_10_5c599e3cf965c665bf81a417bbcebf799e21a02b0eec89cd0ddf4f42.root': 4L}, 'ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_4_b27146bd949193254e69623c86763ef3be1ee615c0456ba8ab571e1f.root': 73L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB86_190607_054105_0000_3_28108f6b0054346b60ac75a0bb858f27825e374fa137bc6370374681.root': 20L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_5_822cfc677efa66bf4da276dfce50227a1db347a84b630d16d70da0ec.root': 82L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_8_dec67224732adfaef38677c1f706d83f671737998cdc6bc6ce2bfd3b.root': 105L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB86_190607_054105_0000_1_4866f39f3db45fd02d376ceaca16511a3ea3130025b5956c668236cc.root': 11L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB86_190607_054105_0000_2_5ce035eef8b26f0b04c2cd9f842bfe1b44b6cc57bd1b659283b75415.root': 16L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_10_14d62ceb70ac2e2f477d432bfc1427be7666957e3c8652a0d74b4c8b.root': 37L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_1_6072d9b3310dd162d3bf2193102ac55e3fe26dcc5fddac6fae505b12.root': 50L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_7_402cfcb5a71af52447a01db08d51259eebf9acc047aa42a3aa7fa71c.root': 99L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_2_c7c038e6257b73dbf757562356e1285b581e95e2345a73c804ab4979.root': 56L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB86_190607_054105_0000_4_bccf5ce0dea01557faef3b5d936adfb6d2ba35ae129752e97678ab5b.root': 29L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB85_190607_054014_0000_1_f26ebf1b022816fb88d0b43617f563bbd8d45d9e823be8a72f74b5ff.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_3_617b0af74e607fe48f6e71d2728a3254c08097cfab47377eb0365f55.root': 64L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_11_dbda9ce4d1748e47154aee8d1427e2a37367d887c483cf0b95f75495.root': 47L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_9_ddf7e09957ebca1333043315a2bcbe3975f45d03e58f00fc8ef9d3cd.root': 112L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB85_190607_054014_0000_2_aa0d04e48bfecab14fcdf936f618d4156e9acdb74f5fcc2788fe3cef.root': 11L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_6_98810079fa4184bd3705e9808665e067d67a751e2cc0a136657fe4cf.root': 89L}, 'DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_200928_124738_0000_1_5c1799f8cc2ebda0c33d0b51ce680843dd4acaccb73c2503c13ddec9.root': 0}, 'DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio6_200928_124955_0000_1_43987c1fbea455b05b10d8a507e34338efd6fedb2f1925d3faef35af.root': 1307L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio5_200928_124923_0000_1_69cae0d38fe5554f4ca176f597e57adbf3d89fceccd6106b3dbbebfb.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio5_200928_124923_0000_2_61b7fa2fed2ce6e3a77017c958e0048b4b5244a02b8f04866b214ad4.root': 78L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio6_200928_124955_0000_4_1e7286b58d0f07608dc1cf0255e0e0ad8ff0cf069f2fbec94a1a4e36.root': 2932L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio6_200928_124955_0000_3_8bc115058490be03ed62eb66e397117381567ec39efb1ea76902d362.root': 2692L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio6_200928_124955_0000_2_4dfc6ef8cb2f8796228efb9d6703706ae6fce77b6a3682ae6375d123.root': 1405L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio5_200928_124923_0000_3_f6daa219dec2514971a24d4d01414c500ef47a680bbc87476fb02fe7.root': 113L}, 'WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211629_0000_10_9f5aa8889907f703d55b38239f56fb044555e3f09d41339a92ee17df.root': 37515L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211629_0000_9_19bad066e1aade3f1b409422250ae840a03d8cd02487c9937f8e419c.root': 260552L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211629_0000_3_ea58719294b36cd1a91d0a92cdfafbb76a02526bf49b70e9559043a2.root': 58646L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211712_0000_11_0f6c8e17696a5283333b887610b3d8a68bac90850c694926f247f015.root': 12333L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211712_0000_10_f93ba2e8e7906e1c2890088c6a1e623e37ef3be0a36a63c3ed054d1b.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211629_0000_8_6b6c6f5d9b19def36640496b6c831b2bc5f9d9ab18cfc5df998de0e1.root': 227550L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211629_0000_1_6b732c5cbd7cd31bdfa2a0862f742471b9838f5fc615f029df08ebb4.root': 48318L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211629_0000_5_cbd6257261700db7ca2b48b2db8d7780cbbc74a643a50d5f412d04fe.root': 135862L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211712_0000_1_8ce2d0dc1b8c17e41545bd02312eb6a371063387c2d4d801487a38ed.root': 18960L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211629_0000_6_b69024b457e7d9dcdd371a8593e724ec1ab88e4b5db64a427500d19c.root': 137705L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211629_0000_7_f0f32a699636e3cca3d999c8f2a80556b6d65d651ac74f56f54f0986.root': 178082L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211629_0000_4_98ed2632f3cc580a11a0c24a38275c79ce0555c42bd99d985ac2b650.root': 96674L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211712_0000_3_b3fd2371bafadc442754329f3d41c86b1c4615d69b83b79a5e02fcba.root': 36542L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211712_0000_2_47eb24d3fa6706bec57de391dc9d9a226d21a2465b140f098199abba.root': 21867L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211629_0000_2_52fa09c7bd705ed48ea7dc133b4c129bc96f588d805b15b843be1048.root': 52117L}} \ No newline at end of file diff --git a/python/Wlv2016config/general.ini b/python/Wlv2016config/general.ini index e42c6d38a..a6c23829e 100644 --- a/python/Wlv2016config/general.ini +++ b/python/Wlv2016config/general.ini @@ -24,7 +24,7 @@ run_locally = False # NanoAOD format treeName = Events -countTreeName = genEventSumw +#countTreeName = genEventSumw AllowDuplicateTrees = True countsFromAutoPU = False @@ -53,8 +53,27 @@ Data_as_signal = False [Prep] -VHbb = ['VHbbCommon.Clean', 'VHbbCommon.METXY', 'Prep.Selection', 'VHbbCommon.isData','VHbbCommon.isSignal','VHbbCommon.isWH','VHbbCommon.HeppyStyleGen','VHbbCommon.genBstatus','VHbbCommon.SampleGroup'] -Selection = VHbbSelection.VHbbSelection(year="2016", channels=["Wln"], jetIdCut=2) +Step1 = ['VHbbCommon.Clean','VHbbCommon.JetSmearer','VHbbCommon.JECcorrelator','Prep.LeptonSelection'] +LeptonSelection = VHbbSelection.VHbbSelection(year="2016", channels=["Wln"], idWmn=None, idWen=None, skipJetSelection=True, vpt0lep=130.0, vpt1lep=110.0, vpt2lep=75.0, jetIdCut=2) + +Step2 = ['VHbbCommon.METXY','Prep.Selection', 'VHbbCommon.isData','VHbbCommon.isSignal','VHbbCommon.isWH','VHbbCommon.HeppyStyleGen','VHbbCommon.genBstatus','Prep.newBranches','VHbbCommon.VReco'] + +Selection = VHbbSelection.VHbbSelection(year="2016", channels=["Wln"], idWmn=None, idWen=None, jetIdCut=2) + +newBranches = BranchTools.TreeFormulas({ + 'Lepton_pt': 'Alt$((Vtype==2)*Muon_pt[vLidx[0]],0) + Alt$((Vtype==3)*Electron_pt[vLidx[0]],0)', + 'Lepton_phi': 'Alt$((Vtype==2)*Muon_phi[vLidx[0]],0) + Alt$((Vtype==3)*Electron_phi[vLidx[0]],0)', + 'Lepton_eta': 'Alt$((Vtype==2)*Muon_eta[vLidx[0]],0) + Alt$((Vtype==3)*Electron_eta[vLidx[0]],0)', + 'nAddLep15_2p5': {'formula':'Sum$(Muon_pt>15&&abs(Muon_eta)<2.5&&Muon_pfRelIso04_all<0.1&&((Vtype==3)||(Iteration$!=(vLidx[0]))))+Sum$(Electron_pt>15&&abs(Electron_eta)<2.5&&Electron_pfRelIso03_all<0.1&&((Vtype==2)||(Iteration$!=(vLidx[0]))))', 'type':'i'}, + 'nAddLep20_2p5': {'formula':'Sum$(Muon_pt>20&&abs(Muon_eta)<2.5&&Muon_pfRelIso04_all<0.1&&((Vtype==3)||(Iteration$!=(vLidx[0]))))+Sum$(Electron_pt>20&&abs(Electron_eta)<2.5&&Electron_pfRelIso03_all<0.1&&((Vtype==2)||(Iteration$!=(vLidx[0]))))', 'type':'i'}, + 'nAddLep25_2p5': {'formula':'Sum$(Muon_pt>25&&abs(Muon_eta)<2.5&&Muon_pfRelIso04_all<0.1&&((Vtype==3)||(Iteration$!=(vLidx[0]))))+Sum$(Electron_pt>25&&abs(Electron_eta)<2.5&&Electron_pfRelIso03_all<0.1&&((Vtype==2)||(Iteration$!=(vLidx[0]))))', 'type':'i'}, + 'nAddLep15': {'formula':'Sum$(Muon_pt>15&&Muon_pfRelIso04_all<0.1&&((Vtype==3)||(Iteration$!=(vLidx[0]))))+Sum$(Electron_pt>15&&Electron_pfRelIso03_all<0.1&&((Vtype==2)||(Iteration$!=(vLidx[0]))))', 'type':'i'}, + 'nAddLep20': {'formula':'Sum$(Muon_pt>20&&Muon_pfRelIso04_all<0.1&&((Vtype==3)||(Iteration$!=(vLidx[0]))))+Sum$(Electron_pt>20&&Electron_pfRelIso03_all<0.1&&((Vtype==2)||(Iteration$!=(vLidx[0]))))', 'type':'i'}, + 'nAddLep25': {'formula':'Sum$(Muon_pt>25&&Muon_pfRelIso04_all<0.1&&((Vtype==3)||(Iteration$!=(vLidx[0]))))+Sum$(Electron_pt>25&&Electron_pfRelIso03_all<0.1&&((Vtype==2)||(Iteration$!=(vLidx[0]))))', 'type':'i'}, + 'htJet30': {'formula': 'Sum$(Jet_Pt*(Jet_Pt >30 && Jet_puId > 0 && Jet_lepFilter))', 'type': 'f'}, + 'dPhiLepMet': {'formula': 'abs(TVector2::Phi_mpi_pi(MET_Phi-(Alt$((Vtype==2)*Muon_phi[vLidx[0]],0) + Alt$((Vtype==3)*Electron_phi[vLidx[0]],0))))', 'type': 'f'}, + 'dPhiLepMetv2': {'formula': 'abs(VHbb::deltaPhi(MET_Phi,(Alt$((Vtype==2)*Muon_phi[vLidx[0]],0) + Alt$((Vtype==3)*Electron_phi[vLidx[0]],0))))', 'type': 'f'}, + }) ;;;; @@ -63,9 +82,11 @@ Selection = VHbbSelection.VHbbSelection(year="2016", channels=["Wln"], jetIdCut= [Sys] # then, add Sys.all afterwards #all = ['VHbbCommon.HiggsReco','VHbbCommon.FitCorr','VHbbCommon.EWKweights','VHbbCommon.BTagSFDeepCSV','Sys.newBranches','VHbbCommon.DYspecialWeight','Sys.electronSFrun2','Sys.muonSF','VHbbCommon.LOtoNLOweight','VHbbCommon.JetPUIDSF','VHbbCommon.DoubleBtagSF'] -all = ['VHbbCommon.HiggsReco','VHbbCommon.EWKweights','VHbbCommon.BTagSFDeepCSV','Sys.newBranches', 'VHbbCommon.DYspecialWeight', 'Sys.electronSFrun2', 'VHbbCommon.LOtoNLOweight', 'Sys.muonSF', 'VHbbCommon.JetPUIDSF'] -topAndVreco = ['Sys.GetTopMass','VHbbCommon.VReco'] +all = ['VHbbCommon.SampleGroup','VHbbCommon.HiggsReco','VHbbCommon.FitCorr','VHbbCommon.EWKweights','VHbbCommon.BTagSFDeepCSV','VHbbCommon.DYspecialWeight','Sys.electronSFrun2','Sys.muonSF','VHbbCommon.LOtoNLOweight','VHbbCommon.JetPUIDSF','VHbbCommon.DoubleBtagSF','Sys.GetTopMass'] + +fix = ['VHbbCommon.HiggsReco','Sys.GetTopMass'] +boostedFlags = ['VHbbCommon.isBoosted','VHbbCommon.isBoostedVZ'] #electronSF = ElectronSFfromJSON.ElectronSFfromJSON(jsonFiles=['data/Wlv/Electrons/VHbb1ElectronIDISO2017.json','data/Wlv/Electrons/VHbb1ElectronTrigger2017.json', 'data/Wlv/Electrons/ScaleFactor_etracker_80x.json'], branchName='electronSF',channel='Wlv') electronSFrun2 = ElectronSFfromJSON.ElectronSFfromJSON(jsonFiles=['data/Run2ElectronSF/Trig2016passingSingleEle.json', 'data/Run2ElectronSF/IDs2016passingMVA94Xwp80iso.json', 'data/Wlv/Electrons/ScaleFactor_etracker_80x.json'], branchName='electronSF',channel='Wlv') @@ -93,14 +114,13 @@ GetTopMassNominal = GetTopMass.GetTopMass(nano=True, propagateJES=False, METmeth GetWTMass = GetWTMass.GetWTMass(nano=True,branchName="V_mt") [Eval] -weightAsBranch = WeightAsBranch.WeightAsBranch() - # DNNs -all = + -VH = ['Eval.SR_medhigh_Wln','Eval.Whf_medhigh_Wln'] -VV = ['Eval.VV_SR_medhigh_Wln','Eval.VV_Whf_medhigh_Wln'] +all = + + +VH = ['Eval.SR_medhigh_Wln','Eval.Whf_med_Wln','Eval.Whf_high_Wln'] +VV = ['Eval.VV_SR_medhigh_Wln','Eval.VV_Whf_med_Wln', 'Eval.VV_Whf_high_Wln'] BDT = ['Eval.BDT_Wlv_BOOSTFinal_wdB', 'Eval.BDT_VZ_Wlv_BOOSTFinal_wdB'] + VHLegacyDNNs = ['Eval.SR_medhigh_Wln','Eval.Whf_high_Wln','Eval.Whf_med_Wln'] SR_medhigh_Wln = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName='SR_medhigh_Wln',condition='hJidx[0]>-1&&hJidx[1]>-1') Whf_high_Wln = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName='Whf_high_Wln',condition='hJidx[0]>-1&&hJidx[1]>-1') @@ -121,12 +141,14 @@ Whf_medhigh_Wln = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName # diboson VZ VV_SR_medhigh_Wen = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName='VV_SR_medhigh_Wen') VV_SR_medhigh_Wmn = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName='VV_SR_medhigh_Wmn') -VV_SR_medhigh_Wln = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName='VV_SR_medhigh_Wln') +VV_SR_medhigh_Wln = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName='VV_SR_medhigh_Wln',condition='hJidx[0]>-1&&hJidx[1]>-1') # VV HF CR background discriminator VV_Whf_medhigh_Wen = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName='VV_Whf_medhigh_Wen') VV_Whf_medhigh_Wmn = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName='VV_Whf_medhigh_Wmn') VV_Whf_medhigh_Wln = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName='VV_Whf_medhigh_Wln') +VV_Whf_med_Wln = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName='VV_Whf_med_Wln',condition='hJidx[0]>-1&&hJidx[1]>-1') +VV_Whf_high_Wln = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName='VV_Whf_high_Wln',condition='hJidx[0]>-1&&hJidx[1]>-1') # mjj analysis mjj = ['Eval.Mjj_SR_medhigh_Wmn', 'Eval.Mjj_SR_medhigh_Wen'] @@ -139,9 +161,6 @@ multiDNN = ['Eval.multiDNNmu', 'Eval.multiDNNe'] multiDNNmu = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName='Multi_medhigh_Wmn') multiDNNe = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName='Multi_medhigh_Wen') -# BOOSTED analysis BDT -WlvBDTBOOSTVarsFinal_wdB = tmvaEvaluator.tmvaEvaluator(mvaName='WlvBDTBOOSTVarsFinal_wdB',condition='Hbb_fjidx>-1') - #Need this for the plotting [VHbbNameSpace] library=/interface/VHbbNameSpace_h.so @@ -158,6 +177,7 @@ electronWeight = electronSF[0] leptonWeight = * doubleBtagWeight = (1.0+*(-1.0+bTagWeightDoubleB)) +#bTagWeight = (1.0+*(-1.0+bTagWeightDeepJet)) bTagWeight = (1.0+*(-1.0+bTagWeightDeepCSV)) EWKweight = EWKw[0] @@ -175,8 +195,8 @@ stitchingWeights_False = DY_specialWeight stitchingWeights_True = 1.0 stitchingWeights = !> -weightNLO = weightLOtoNLO -#weightNLO = weightLOtoNLO_2016 +#weightNLO = weightLOtoNLO +weightNLO = weightLOtoNLO_2016 #weightNLO = weightLOtoNLO_LHEVptV2 #weightNLO = weightLOtoNLO_LHEVptV2b @@ -184,22 +204,23 @@ weightJetPUID = weightJetPUID #weightNaddJetsResidual = (1.02404-0.0175717*Sum$(Jet_Pt>30&&abs(Jet_eta)<2.5&&(Jet_puId>6||Jet_Pt>50.0)&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1])) weightNaddJetsResidual = 1.0 -#PrefireWeight = PrefireWeight -PrefireWeight = 1.0 +PrefireWeight = PrefireWeight +#PrefireWeight = 1.0 additionalCorrection = 1.0 -#weightF = ******* * * * * * -weightF = ******* * * * * +weightF = ******* * * * * #----- partial weights -----# + +weight_noBTag = /() +weight_noLepSF = /() +weight_noEWK = /() +weight_noNLO = /() +; +;# can be 0 +weight_noPU = ****** * * * * * ; -weight_noBTag = ****** * * * * -weight_noPU = ****** * * * * -weight_noLepSF = ****** * * * * -weight_noEWK = ****** * * * * -weight_noFitCorr = ****** * * * * -weight_noNLO = ****** * * * * ; _ _ _ _ _ _ _ _ _ ;* * * * * * * * * *| diff --git a/python/Wlv2016config/hadd.ini b/python/Wlv2016config/hadd.ini index b7d20f520..59961b0ee 100644 --- a/python/Wlv2016config/hadd.ini +++ b/python/Wlv2016config/hadd.ini @@ -1,58 +1,72 @@ -# V11 +# V11 v2 [Hadd] -WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8: 2 -ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1: 3 -ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1392 -ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1: 3 -DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2 -WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 6 -DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 -ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2182 -SingleElectron: 10 -ZZ_TuneCUETP8M1_13TeV-pythia8: 19 -WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8: 1 -DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 39 -ZJetsToNuNu_HT-400To600_13TeV-madgraph: 1392 -ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1: 1 DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 -WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 -DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 10 -WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 -ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8: 5 -QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 9999 -DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 3 -ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8: 3 -QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 493 -ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph: 667 -ZJetsToNuNu_HT-200To400_13TeV-madgraph: 5177 -WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8: 2 -WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 -ZJetsToNuNu_HT-800To1200_13TeV-madgraph: 720 DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 -DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 -QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1060 -QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 581 -TT_TuneCUETP8M2T4_13TeV-powheg-pythia8: 1 +DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2 DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 -QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 16291 -ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8: 3 -QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1592 +DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 8 +DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2 +DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 43 +DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 32 +DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 187 +DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 29 +DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 8 +DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 4 +QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 911 +QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 9999 +QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 445 +QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 549 +QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 156800 +QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 13785 +QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 3171 +QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1340 +ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8: 5 +ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1: 3 +ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1: 3 +ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1: 1 ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1: 1 +SingleElectron: 10 +SingleMuon: 7 +TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8: 1 +WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 5 WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 -ZJetsToNuNu_HT-1200To2500_13TeV-madgraph: 1231 -ZJetsToNuNu_HT-100To200_13TeV-madgraph: 68000 -WZ_TuneCUETP8M1_13TeV-pythia8: 8 -ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8: 6 -QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 196001 -ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 20000 -QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 3514 +WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 315 +WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 27 WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8: 2 -WW_TuneCUETP8M1_13TeV-pythia8: 5 -ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8: 11429 -ZJetsToNuNu_HT-600To800_13TeV-madgraph: 645 -WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 -SingleMuon: 7 -WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 33 -DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 -ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8: 2429 +WWTo2L2Nu_13TeV-powheg: 4 +WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8: 1 +WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8: 5 +WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8: 2 +WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8: 2 +ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1372 +ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2000 +ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8: 5 +ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8: 10435 +ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 13334 +ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1307 +ZJetsToNuNu_HT-100To200_13TeV-madgraph: 54400 +ZJetsToNuNu_HT-1200To2500_13TeV-madgraph: 1231 +ZJetsToNuNu_HT-200To400_13TeV-madgraph: 4513 +ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph: 654 +ZJetsToNuNu_HT-400To600_13TeV-madgraph: 1178 +ZJetsToNuNu_HT-600To800_13TeV-madgraph: 559 +ZJetsToNuNu_HT-800To1200_13TeV-madgraph: 667 +ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8: 5 +ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8: 4454 +ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8: 2 +ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8: 2286 + diff --git a/python/Wlv2016config/hadd_V11.ini b/python/Wlv2016config/hadd_V11.ini new file mode 100644 index 000000000..b7d20f520 --- /dev/null +++ b/python/Wlv2016config/hadd_V11.ini @@ -0,0 +1,58 @@ +# V11 +[Hadd] +WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8: 2 +ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1: 3 +ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1392 +ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1: 3 +DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2 +WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 6 +DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2182 +SingleElectron: 10 +ZZ_TuneCUETP8M1_13TeV-pythia8: 19 +WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8: 1 +DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 39 +ZJetsToNuNu_HT-400To600_13TeV-madgraph: 1392 +ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1: 1 +DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 10 +WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8: 5 +QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 9999 +DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 3 +ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8: 3 +QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 493 +ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph: 667 +ZJetsToNuNu_HT-200To400_13TeV-madgraph: 5177 +WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8: 2 +WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +ZJetsToNuNu_HT-800To1200_13TeV-madgraph: 720 +DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1060 +QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 581 +TT_TuneCUETP8M2T4_13TeV-powheg-pythia8: 1 +DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 16291 +ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8: 3 +QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1592 +ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1: 1 +WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +ZJetsToNuNu_HT-1200To2500_13TeV-madgraph: 1231 +ZJetsToNuNu_HT-100To200_13TeV-madgraph: 68000 +WZ_TuneCUETP8M1_13TeV-pythia8: 8 +ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8: 6 +QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 196001 +ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 20000 +QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 3514 +WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8: 2 +WW_TuneCUETP8M1_13TeV-pythia8: 5 +ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8: 11429 +ZJetsToNuNu_HT-600To800_13TeV-madgraph: 645 +WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +SingleMuon: 7 +WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 33 +DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8: 2429 diff --git a/python/Wlv2016config/paths.ini b/python/Wlv2016config/paths.ini index f307773c6..3f6bca857 100644 --- a/python/Wlv2016config/paths.ini +++ b/python/Wlv2016config/paths.ini @@ -1,7 +1,7 @@ [Configuration] #!! List of the config you want to use #!! The list only support spaces between configs -List = paths.ini ../VHbb2016commonconfig/general.ini general.ini cuts.ini training.ini datacards.ini ../VHbb2016commonconfig/systematics.ini plots.ini lhe_weights.ini ../VHbb2016commonconfig/samples_mc.ini ../VHbb2016commonconfig/stxs.ini hadd.ini data.ini fit.ini ../VHbb2016commonconfig/vhbbPlotDef.ini vhbbPlotDef.ini volatile.ini +List = paths.ini ../VHbb2016commonconfig/general.ini general.ini cuts.ini training.ini datacards.ini ../VHbb2016commonconfig/systematics.ini plots.ini lhe_weights.ini ../VHbb2016commonconfig/samples_mc.ini ../VHbb2016commonconfig/stxs.ini hadd.ini data.ini fit.ini ../VHbb2016commonconfig/vhbbPlotDef.ini vhbbPlotDef.ini volatile.ini ../VHbb2016commonconfig/EventCounts2016V11.ini # general config #whereToLaunch = PSI @@ -25,53 +25,64 @@ scratch = /scratch// Wdir = /src/ samplepath = -samplefiles = /src/Xbb/samples/VHbbPostNano2016_V11/merged_Wlv2016/ -samplefiles_split = /src/Xbb/samples/VHbbPostNano2016_V11/ +samplefiles = /src/Xbb/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ +samplefiles_split = /src/Xbb/samples/VHbbPostNano2016_V11_v2/ ;!! The directory with the code vhbbpath= /Xbb ;#!! cached files -tmpSamples = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2016_V11/2020_05_15/cache-dc/ +tmpSamples = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2016_V11/2021_03_19/cachedc-VZ-NoStitching/ ;!! from which samples to plot and where to save the plots -;plottingSamples = -plottingSamples = +plottingSamples = +#plottingSamples = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_05_15/eval-withBoosted/ +;plottingSamples = #!! from which samples to make the DCs and where to save the DCs -dcSamples = +dcSamples = # -------------------------------------------------------------------------------- # PATHS # -------------------------------------------------------------------------------- # step 1) prep -#PREPin = root://eoscms.cern.ch/ -PREPin = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2016_V11/2020_05_15/eval-withBDT-v2/ -PREPout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2016_V11/2020_05_15/prep-csplitting/ +PREPin = root://eoscms.cern.ch/ +PREP1out = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/prep_step1/ + +PREP2in = +PREPout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2016_V11/2020_11_01/prep_step2/ # step 2) hadd HADDin = -HADDout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2016_V11/2020_05_15/hadd/ +HADDout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2016_V11/2020_11_01/hadd/ # step 3) add systematic variations and weights SYSin = -SYSout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2016_V11/2020_05_15/sys/ +SYSout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2016_V11/2020_11_01/sys/ + +#FIXin = +#FIXout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2016_V11/2020_10_20/fix/ + +# step 5) add boosted flags +BOOSTin = +BOOSTout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2016_V11/2020_11_01/sys_boostedFlags/ -# step 4) top mass reconstruction -TOPin = -#TOPout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2016_V11/2020_05_15/sys_withTop/ -TOPout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2016_V11/2020_05_15/prep-csplitting/ # step 5) evaluate DNN -#MVAin = -#MVAout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2017_V11/eleIDV2/eval/final_v1/ +MVAin = +MVAout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2016_V11/2020_11_01/eval/ + +BOOST2in = +BOOST2out = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2016_V11/2020_11_01/eval_boostedVZ/ + +TESTout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2016_V11/2020_11_01/eval_withSTXS/ -#MVAin = +#MVAin = #MVAin = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2016_V11/2020_05_15/eval/ #MVAin = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2016_V11/2020_05_15/eval-v2/ #MVAin = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2016_V11/2020_05_15/eval-withBDT/ -MVAin = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2016_V11/2020_05_15/prep-csplitting/ +#MVAin = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2016_V11/2020_05_15/prep-csplitting/ #MVAout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2016_V11/2020_05_15/eval-withBDT-v2/ -MVAout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2016_V11/2020_05_15/eval-csplitting/ +#MVAout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2016_V11/2020_05_15/eval-withBoosted/ diff --git a/python/Wlv2016config/plots.ini b/python/Wlv2016config/plots.ini index abb441b25..632bb8f5a 100644 --- a/python/Wlv2016config/plots.ini +++ b/python/Wlv2016config/plots.ini @@ -1,9 +1,10 @@ [Plot_general] remove_sys = True -outputFormats = png, pdf, tex +#outputFormats = png, pdf, tex +outputFormats = png, pdf saveDataHistograms = False drawNormalizedPlots = False -saveShapes = True +saveShapes = False # ------------------------------------------------------------------------------------------------------------------------------------------------------ # TEXT drawn on plots @@ -47,15 +48,18 @@ typLegendDict = # ------------------------------------------------------------------------------------------------------------------------------------------------------ # ordering of sample groups in plots # ------------------------------------------------------------------------------------------------------------------------------------------------------ -setup = ZH,WH,ggZH,VVLF,VVHF,ZJets_0b,ZJets_1b,ZJets_2b,WJets_0b,WJets_1b,WJets_2b,TT,ST,QCD +setup = ZH,WH,ggZH,QCD,VVLF,VVHF,ZJets_0b,ZJets_0b_udsg,ZJets_0b_c,ZJets_1b,ZJets_2b,WJets_0b,WJets_0b_udsg,WJets_0b_c,WJets_1b,WJets_2b,TT,ST setupLog = # ------------------------------------------------------------------------------------------------------------------------------------------------------ # plot regions # ------------------------------------------------------------------------------------------------------------------------------------------------------ -#List = +#List = ttbar_high_Wln_BOOST +List = +#List = , +#List = SR_med_Wln,SR_high_Wln #List = SR_medhigh_Wln,Whf_med_Wln,Whf_high_Wln -List = SR_high_Wln_BOOST +#List = SR_high_Wln_BOOST #List = ListVHLegacy = ,,, ListVHCRLegacy = ,, @@ -69,12 +73,12 @@ ListWhf = Whf_med_Wln,Whf_med_Wen,Whf_med_Wmn,Whf_high_Wln,Whf_high_Wen,Whf ListTT = ttbar_med_Wln,ttbar_med_Wen,ttbar_med_Wmn,ttbar_high_Wln,ttbar_high_Wen,ttbar_high_Wmn #----- SR -----# ListSig = SR_med_Wln,SR_med_Wen,SR_med_Wmn,SR_high_Wln,SR_high_Wen,SR_high_Wmn - +ListDNN = VV_SR_med_Wln,VV_SR_high_Wln,VV_SR_high1_Wln,VV_SR_high2_Wln # ------------------------------------------------------------------------------------------------------------------------------------------------------ # variables list # ------------------------------------------------------------------------------------------------------------------------------------------------------ #vars_DNN = WenDNN,WmnDNN,WenCRDNN,WmnCRDNN,WenCRDNNf,WmnCRDNNf -vars_DNN = DNN,CRDNN_med,CRDNN_high +vars_DNN = VV_DNN vars_general = run,count,countNoWeight,countGenWeight,Vtype,parity,parityBDTDNN vars_generator = LHE_Nb,LHE_HT,LHE_Vpt,NGenJets20,BmesonFromPS,BbaryonFromPS,ZJphaseSpace,ZJphaseSpace2,genEtabb,genEtabbPtJ vars_jets = HT30,Hj0_id,Hj1_id,Hj0_PUid,Hj1_PUid,Hj0_PUid_passTight,Hj1_PUid_passTight,Hj0_pt_reg,Hj1_pt_reg,Hj0_pt,Hj0_phi,Hj0_pt250,Hj1_pt,Hj1_phi,min_pt_reg,max_pt_reg,min_pt,max_pt,max_pt_fsr,min_pt_fsr,Hj0_DeepCSV,Hj1_DeepCSV,Hj0_DeepCSVzoom,Hj1_DeepCSVzoom,deltaRbb,deltaEtabb,Etabb0b,Etabb1b,Etabb2b,deltaPhibb,minDphiJetH,deltaRbbWithFSR,deltaEtabbWithFSR,deltaPhibbWithFSR @@ -100,9 +104,10 @@ var_additionalBTAGALGOS = DeepAK8_bbVSlight,DeepAK8_bbVST var_Boost = Vpt,FatMass,FatPt,tau21,tau32,DoubleB,NaddJetsBoost,HVdPhiBoost,dRMMaxFatResolved,dRMinFatResolved,HT,Vpt ;var: , -#var = ,Hj0_pt_reg,Hj1_pt_reg,count -#var = count -var = BDT +var = +#var = ,MET,METphi,count +#var = count,Hj0_DeepCSV,Hj1_DeepCSV,Hj0_pt_reg,Hj1_pt_reg,Hmass,Hpt,MET,METphi,DNN,CRDNN_high,CRDNN_med,BDT,DeepAK8_bbVSlight,FatJet_mSD,FatJet_Pt,METphi_uncorrected +#var = Hmass80to160 #!!_*_*_*_*_*_ #Other Options diff --git a/python/Wlv2016config/training.ini b/python/Wlv2016config/training.ini index 83f38d0b4..9edcd4956 100644 --- a/python/Wlv2016config/training.ini +++ b/python/Wlv2016config/training.ini @@ -12,16 +12,18 @@ factorysettings = V:!Silent:!Color:!DrawProgressBar:AnalysisType=Classification: ntupleVersion = V11-Dec9 type = BDT + [HFCR] -nClasses = 5 -classes = [['WLIGHT',[,,,,,,,]],['WC',[,,]],['WB',[,,,,,]],['ST',[]],['TT',[]]] +nClasses = 5 +classes = [['WL',[x for x in [,,] if x.endswith('_0b_udsg')]+[,,,,]],['WC',[x for x in [,,] if x.endswith('_0b_c')]],['WB',[x for x in [,,] if x.endswith('_1b') or x.endswith('_2b')]],['ST',[]],['TT',[]]] + [MVALists] -List_for_submitscript = Whf_med_Wln,Whf_high_Wln -;List_for_submitscript = +;List_for_submitscript = Whf_med_Wln,Whf_high_Wln +List_for_submitscript = List = , -List_VH = SR_medhigh_Wln,Whf_medhigh_Wln +List_VH = SR_medhigh_Wln,Whf_med_Wln,Whf_high_Wln List_VV = VV_SR_medhigh_Wln,VV_Whf_med_Wln,VV_Whf_high_Wln List_Multi = Multi_medhigh_Wln List_Boosted = BDT_Wlv_BOOSTFinal_wdB @@ -48,9 +50,11 @@ backgrounds = [] treeVarSet = WlvBDTVarsWP treeCut = SR_medhigh_Wln branchName = DNN_ -checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/tfZllDNN/Wlv2016_SR_medhigh_Wln_200622_V11-Dec9.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/1.000e+00/rnd_464818/checkpoints/model.ckpt +checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/final_results/Wlv2016_SR_medhigh_Wln_201109_V11-Dec9.h5/Wlv2016_SR_medhigh_Wln_201109_V11-Dec9.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/1.000e+00/rnd_331787/checkpoints/model.ckpt signalIndex = 0 -bins = [0.0000, 0.0645, 0.1124, 0.1697, 0.2433, 0.3407, 0.4534, 0.5638, 0.6758, 0.7679, 0.8410, 0.8976, 0.9375, 0.9652, 0.9835, 1.0000] +#bins = [0.0000, 0.0645, 0.1124, 0.1697, 0.2433, 0.3407, 0.4534, 0.5638, 0.6758, 0.7679, 0.8410, 0.8976, 0.9375, 0.9652, 0.9835, 1.0000] +#bins = [0.00000, 0.24469, 0.38123, 0.49609, 0.58701, 0.66560, 0.72980, 0.78771, 0.83313, 0.87118, 0.90303, 0.92866, 0.94985, 0.96758, 0.98174, 1.00001] +bins = [] [SR_med_Wln] signals = [] @@ -93,9 +97,9 @@ signals = [] backgrounds = [] treeVarSet = WlvBDTVarsWP treeCut = VV_SR_medhigh_Wln -branchName = DNN_191022_VHLegacyDNN2017V11_Wln_VV_SR_medhigh_Wln -checkpoint = DNN/191022_VHLegacyDNN2017V11_Wln_VV_SR_medhigh_Wln -bins = [0.0000, 0.0256, 0.0723, 0.1491, 0.2398, 0.3292, 0.4169, 0.5308, 0.6519, 0.7537, 0.8300, 0.8871, 0.9264, 0.9529, 0.9720, 1.0001] +branchName = VV_DNN_ +checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/final_results/Wlv2016_VV_SR_medhigh_Wln_201109_V11-Dec9.h5/Wlv2016_VV_SR_medhigh_Wln_201109_V11-Dec9.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/1.000e+00/rnd_331788/checkpoints/model.ckpt +#bins = [0.0000, 0.0256, 0.0723, 0.1491, 0.2398, 0.3292, 0.4169, 0.5308, 0.6519, 0.7537, 0.8300, 0.8871, 0.9264, 0.9529, 0.9720, 1.0001] signalIndex = 0 @@ -108,7 +112,7 @@ data = includeData = True treeVarSet = WlvBDTVarsWP treeCut = Whf_med_Wen -classes = +classes = bins = [0, 1, 2, 3, 4, 5.0001] @@ -119,7 +123,7 @@ data = includeData = True treeVarSet = WlvBDTVarsWP treeCut = Whf_med_Wmn -classes = +classes = bins = [0, 1, 2, 3, 4, 5.0001] [Whf_medhigh_Wln] @@ -130,7 +134,8 @@ includeData = True treeVarSet = WlvBDTVarsWP treeCut = Whf_medhigh_Wln checkpoint = DNN/191022_VHLegacyDNN2017V11_Wln_Whf_medhigh_Wln -classes = [['WLIGHT',[,,,,,,,]],['WB',[,,]],['WBB',[,,]],['ST',[]],['TT',[]]] +#classes = [['WLIGHT',[,,,,,,,]],['WB',[,,]],['WBB',[,,]],['ST',[]],['TT',[]]] +classes = bins = [0, 1, 2, 3, 4, 5.0001] # Whf_medhigh_Wln.bins= bins_2 = [0.0, 0.4847938589942099, 1.0, 1.3726277658398338, 2.0, 2.433450826612825, 3.0, 3.3645122815193074, 4.0, 4.438656884368033, 5.0001] @@ -146,7 +151,7 @@ treeCut = Whf_med_Wln classes = bins = branchName = CRDNN_med_ -checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/tfZllDNN/Wlv2016_Whf_med_Wln_200715_V11-Dec9.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/5.000e-04/rnd_906870/checkpoints/model.ckpt +checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/final_results/Wlv2016_Whf_med_Wln_201109_V11-Dec9.h5/Wlv2016_Whf_med_Wln_201109_V11-Dec9.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/5.000e-04/rnd_331789/checkpoints/model.ckpt [Whf_high_Wln] signals = [] @@ -163,7 +168,7 @@ bins = #checkpoint = DNN/200127_VHLegacyDNN2017V11_Wln_Jan2020OverlapToResolvedDeepCSVwp_Whf_high_Wln # Feb2020 branchName = CRDNN_high_ -checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/tfZllDNN/Wlv2016_Whf_high_Wln_200715_V11-Dec9.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/5.000e-04/rnd_906871/checkpoints/model.ckpt +checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/final_results/Wlv2016_Whf_high_Wln_201109_V11-Dec9.h5/Wlv2016_Whf_high_Wln_201109_V11-Dec9.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/5.000e-04/rnd_331790/checkpoints/model.ckpt bins_5 = [0.0, 0.36941476043992194, 0.43682796300765336, 0.5076066484712694, 0.5776203166351507, 1.0, 1.31306556913803, 1.3557043922670982, 1.4071319452024074, 1.4889059105411904, 2.0, 2.317130878054454, 2.366618738821678, 2.42330748560755, 2.5153457858279293, 3.0, 3.3186696105872198, 3.3663580205702313, 3.4117602375222877, 3.4618467877702312, 4.0, 4.358770825792842, 4.425613865482388, 4.487815378797675, 4.566535751062541, 5.0001] [VV_Whf_med_Wen] @@ -173,7 +178,7 @@ data = includeData = True treeVarSet = WlvBDTVarsWP treeCut = VV_Whf_med_Wen -classes = +classes = bins = [0, 1, 2, 3, 4, 5.0001] [VV_Whf_med_Wmn] @@ -183,7 +188,7 @@ data = includeData = True treeVarSet = WlvBDTVarsWP treeCut = VV_Whf_med_Wmn -classes = +classes = bins = [0, 1, 2, 3, 4, 5.0001] [VV_Whf_med_Wln] @@ -193,8 +198,10 @@ data = includeData = True treeVarSet = WlvBDTVarsWP treeCut = VV_Whf_med_Wln -classes = +classes = bins = [0, 1, 2, 3, 4, 5.0001] +checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/final_results/Wlv2016_VV_Whf_med_Wln_201109_V11-Dec9.h5/Wlv2016_VV_Whf_med_Wln_201109_V11-Dec9.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/5.000e-04/rnd_331913/checkpoints/model.ckpt +branchName = VV_CRDNN_med [VV_Whf_high_Wln] signals = [] @@ -203,8 +210,10 @@ data = includeData = True treeVarSet = WlvBDTVarsWP treeCut = VV_Whf_high_Wln -classes = +classes = bins = [0, 1, 2, 3, 4, 5.0001] +checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/final_results/Wlv2016_VV_Whf_high_Wln_201109_V11-Dec9.h5/Wlv2016_VV_Whf_high_Wln_201109_V11-Dec9.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/5.000e-04/rnd_331946/checkpoints/model.ckpt +branchName = VV_CRDNN_high_ [VV_Whf_medhigh_Wln] signals = [] @@ -217,7 +226,7 @@ treeCut = VV_Whf_medhigh_Wln #checkpoint = DNN/191106_VHLegacyDNN2017V11_Wln_VV_Whf_medhigh_Wln_noSA5/model.ckpt checkpoint = DNN/191022_VHLegacyDNN2017V11_Wln_VV_Whf_medhigh_Wln branchName = DNN_191022_VHLegacyDNN2017V11_Wln_VV_Whf_medhigh_Wln -classes = [['WLIGHT',[,,,,,,,]],['WB',[,,]],['WBB',[,,]],['ST',[]],['TT',[]]] +classes = bins = [0, 1, 2, 3, 4, 5.0001] bins_2 = [0.0, 0.40558735361457127, 1.0, 1.336627645603964, 2.0, 2.401251605158244, 3.0, 3.316897924970788, 4.0, 4.421120092389745, 5.0001] @@ -287,11 +296,11 @@ bins = [0.,0.361377,0.454427,0.54096,0.635657,1.,1.26538,1.31787,1.37387, Nominal = H_mass H_pt V_mt V_pt V_pt/H_pt abs(TVector2::Phi_mpi_pi(V_phi-H_phi)) (Jet_btagDeepB[hJidx[0]]>0.1522)+(Jet_btagDeepB[hJidx[0]]>0.4941)+(Jet_btagDeepB[hJidx[0]]>0.8001) (Jet_btagDeepB[hJidx[1]]>0.1522)+(Jet_btagDeepB[hJidx[1]]>0.4941)+(Jet_btagDeepB[hJidx[1]]>0.8001) max(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) min(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) hJets_FSRrecovered_dEta MET_Pt dPhiLepMet top_mass2_05 SA5 Sum$(Jet_Pt>30&&abs(Jet_eta)<2.5&&(Jet_puId>6||Jet_Pt>50.0)&&Jet_jetId>2&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) [WlvBDTVars] -Nominal = H_mass H_pt V_mt V_pt V_pt/H_pt abs(TVector2::Phi_mpi_pi(V_phi-H_phi)) Jet_btagDeepB[hJidx[0]] Jet_btagDeepB[hJidx[1]] max(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) min(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) hJets_FSRrecovered_dEta MET_Pt dPhiLepMet top_mass2_05 SA5 Sum$(Jet_Pt>30&&abs(Jet_eta)<2.5&&(Jet_puId>6||Jet_Pt>50.0)&&Jet_jetId>4&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) +Nominal = H_mass H_pt V_mt V_pt V_pt/H_pt abs(TVector2::Phi_mpi_pi(V_phi-H_phi)) Jet_btagDeepB[hJidx[0]] Jet_btagDeepB[hJidx[1]] max(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) min(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) hJets_FSRrecovered_dEta MET_Pt dPhiLepMet top_mass2_05 SA5 Sum$(Jet_Pt>30&&abs(Jet_eta)<2.5&&(Jet_puId>6||Jet_Pt>50.0)&&Jet_jetId>2&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) #BDT_Wlv_BOOSTFinal_wdB.treeVarSet=WlvBDTVarsOverlap [WlvBDTVarsOverlap] -Nominal = H_mass H_pt V_mt V_pt V_pt/H_pt abs(TVector2::Phi_mpi_pi(V_phi-H_phi)) (Jet_btagDeepB[hJidx[0]]>0.1522)+(Jet_btagDeepB[hJidx[0]]>0.4941)+(Jet_btagDeepB[hJidx[0]]>0.8001) (Jet_btagDeepB[hJidx[1]]>0.1522)+(Jet_btagDeepB[hJidx[1]]>0.4941)+(Jet_btagDeepB[hJidx[1]]>0.8001) max(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) min(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) hJets_FSRrecovered_dEta MET_Pt dPhiLepMet top_mass2_05 SA5 Sum$(Jet_Pt>30&&abs(Jet_eta)<2.5&&(Jet_puId>6||Jet_Pt>50.0)&&Jet_jetId>4&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) FatJet_Msoftdrop[Hbb_fjidx] FatJet_Pt[Hbb_fjidx] FatJet_Pt[Hbb_fjidx]/V_pt (1/(1+(FatJet_deepTagMD_TvsQCD[Hbb_fjidx]/FatJet_deepTagMD_HbbvsQCD[Hbb_fjidx])*(1-FatJet_deepTagMD_HbbvsQCD[Hbb_fjidx])/(1-FatJet_deepTagMD_TvsQCD[Hbb_fjidx])))>0.97 +Nominal = H_mass H_pt V_mt V_pt V_pt/H_pt abs(TVector2::Phi_mpi_pi(V_phi-H_phi)) (Jet_btagDeepB[hJidx[0]]>0.1522)+(Jet_btagDeepB[hJidx[0]]>0.4941)+(Jet_btagDeepB[hJidx[0]]>0.8001) (Jet_btagDeepB[hJidx[1]]>0.1522)+(Jet_btagDeepB[hJidx[1]]>0.4941)+(Jet_btagDeepB[hJidx[1]]>0.8001) max(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) min(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) hJets_FSRrecovered_dEta MET_Pt dPhiLepMet top_mass2_05 SA5 Sum$(Jet_Pt>30&&abs(Jet_eta)<2.5&&(Jet_puId>6||Jet_Pt>50.0)&&Jet_jetId>2&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) FatJet_Msoftdrop[Hbb_fjidx] FatJet_Pt[Hbb_fjidx] FatJet_Pt[Hbb_fjidx]/V_pt (1/(1+(FatJet_deepTagMD_TvsQCD[Hbb_fjidx]/FatJet_deepTagMD_HbbvsQCD[Hbb_fjidx])*(1-FatJet_deepTagMD_HbbvsQCD[Hbb_fjidx])/(1-FatJet_deepTagMD_TvsQCD[Hbb_fjidx])))>0.97 ;!! ------------------ ;;!! Boosted MVA @@ -310,14 +319,13 @@ Nominal = FatJet_Msoftdrop[Hbb_fjidx] FatJet_Pt[Hbb_fjidx] MET_Pt V_mt SA5 FatJe [BDT_Wlv_BOOSTFinal_wdB_2016] MVAtype = MVAsettings = NTrees=100:nCuts=20 -#signals = [] -#backgrounds = [] signals = [] backgrounds = [] treeVarSet = WlvBDTBOOSTVarsFinal_wdB -treeCut = Signal_BOOSTv3_removeOverlap +treeCut = Signal_BOOSTv3 systematics = -bins = [-1.00000, -0.17640, -0.06427, 0.01787, 0.08160, 0.13467, 0.18507, 0.23013, 0.27173, 0.31360, 0.35507, 0.39840, 0.43907, 0.48640, 0.54573, 1.00000] +#bins = [-1.00000, -0.17640, -0.06427, 0.01787, 0.08160, 0.13467, 0.18507, 0.23013, 0.27173, 0.31360, 0.35507, 0.39840, 0.43907, 0.48640, 0.54573, 1.00000] +#bins = [-1.00000, -0.24764, -0.14142, -0.05808, 0.01148, 0.07114, 0.12420, 0.18076, 0.23636, 0.29336, 0.36618, 0.45272, 1.00001] [BDT_VZ_Wlv_BOOSTFinal_wdB_2016] MVAtype = @@ -327,4 +335,3 @@ backgrounds = [] treeVarSet = VZ_WlvBDTBOOSTVarsFinal_wdB treeCut = VZ_Signal_BOOSTv3 systematics = - diff --git a/python/Wlv2016config/vhbbPlotDef.ini b/python/Wlv2016config/vhbbPlotDef.ini index fb1ed31ea..af9039bae 100644 --- a/python/Wlv2016config/vhbbPlotDef.ini +++ b/python/Wlv2016config/vhbbPlotDef.ini @@ -126,13 +126,14 @@ max = 1 [plotDef:DNN] relPath = .Nominal xAxis = DNN (final binning) -nBins = 15 +#nBins = 15 min = 0.0 max = 1.0 log = True -binList = +#binList = plotEqualSize = True visualizeBlindCutThreshold = 0.6 +rebinMethod = flats(5,15) [plotDef:WenDNN] relPath = .Nominal @@ -168,6 +169,18 @@ binList = plotEqualSize = True visualizeBlindCutThreshold = 0.6 +[plotDef:VV_DNN] +relPath = .Nominal +xAxis = VV DNN (final binning) +#nBins = 15 +min = 0.0 +max = 1.0 +log = True +#binList = +plotEqualSize = True +visualizeBlindCutThreshold = 0.6 +rebinMethod = flats(5,15) + [plotDef:WmnDNN_nolog] relPath = .Nominal xAxis = mu DNN (final binning) @@ -311,6 +324,22 @@ min = -1 max = 1 #nBins = 15000 plotEqualSize = True -binList = [-1.00000, -0.17640, -0.06427, 0.01787, 0.08160, 0.13467, 0.18507, 0.23013, 0.27173, 0.31360, 0.35507, 0.39840, 0.43907, 0.48640, 0.54573, 1.00000] -#rebinMethod = flatsignal +#binList = [-1.00000, -0.17640, -0.06427, 0.01787, 0.08160, 0.13467, 0.18507, 0.23013, 0.27173, 0.31360, 0.35507, 0.39840, 0.43907, 0.48640, 0.54573, 1.00000] +rebinMethod = flats(5,15) +[plotDef:VV_BDT] +relPath = BDT_VZ_Wlv_BOOSTFinal_wdB_2016.Nominal +xAxis = VZ boosted BDT +min = -1 +max = 1 +#nBins = 15000 +plotEqualSize = True +#binList = [-1.00000, -0.17640, -0.06427, 0.01787, 0.08160, 0.13467, 0.18507, 0.23013, 0.27173, 0.31360, 0.35507, 0.39840, 0.43907, 0.48640, 0.54573, 1.00000] +rebinMethod = flats(5,15) + +[plotDef:FatJet_mSD] +relPath = (FatJet_Msoftdrop[Hbb_fjidx]*(isData+(1-isData)*(0.93))) +xAxis = FatJet mSD [GeV] (scaled by 0.93) +nBins = 50 +min = 0 +max = 300 diff --git a/python/Wlv2017config/SRbinning_MVA_Wlv.txt b/python/Wlv2017config/SRbinning_MVA_Wlv.txt new file mode 100644 index 000000000..14182cf33 --- /dev/null +++ b/python/Wlv2017config/SRbinning_MVA_Wlv.txt @@ -0,0 +1,17 @@ +[dc:SR_med_Wmn] +rebin_list=[0.00000, 0.19220, 0.29545, 0.39343, 0.48036, 0.55956, 0.63302, 0.70087, 0.75502, 0.80331, 0.84619, 0.88353, 0.91561, 0.94334, 0.96847, 1.00001] + +[dc:SR_med_Wen] +rebin_list=[0.00000, 0.18922, 0.29427, 0.39686, 0.48306, 0.56368, 0.63535, 0.69916, 0.75400, 0.80439, 0.84752, 0.88411, 0.91582, 0.94408, 0.96950, 1.00001] + +[dc:SR_high1_Wmn] +rebin_list=[0.00000, 0.37825, 0.53456, 0.65682, 0.73739, 0.80076, 0.84557, 0.88371, 0.91135, 0.93251, 0.94970, 0.96351, 0.97595, 0.98452, 0.99193, 1.00001] + +[dc:SR_high1_Wen] +rebin_list=[0.00000, 0.37113, 0.54304, 0.65478, 0.73839, 0.79917, 0.84432, 0.88170, 0.90877, 0.93206, 0.95064, 0.96402, 0.97578, 0.98405, 0.99149, 1.00001] + +[dc:SR_high2_Wmn] +rebin_list=[0.00000, 0.85320, 0.94943, 0.97905, 0.99363, 1.00001] + +[dc:SR_high2_Wen] +rebin_list=[0.00000, 0.85651, 0.94787, 0.97876, 0.99263, 1.00001] diff --git a/python/Wlv2017config/cuts.ini b/python/Wlv2017config/cuts.ini index 76e935f4c..e32868de0 100644 --- a/python/Wlv2017config/cuts.ini +++ b/python/Wlv2017config/cuts.ini @@ -62,9 +62,11 @@ medhigh = (V_pt >= 150.0) #----- Signal/Control Region without overlap treatment -----# ttbar_base = ( && > && <250 && > 1) Whf_base = ( && > && > && <250 && <= 1 && > 2.0 && ( > 150 || < 90)) +#Whf_base = ( && > && > && <250 && <= 1 && > 2.0 && ( > 150 || < 90)) VV_Whf_base = ( && > && > && <250 && <= 1 && > 2.0 && ( > 120 || < 60)) Wlf_base = ( && > && < && <250 && > 2.0) SR_base = ( && > 90 && < 150 && > && > && < 2 && > 2.5 && dPhiLepMet < 2.0) +#SR_base = ( && > 90 && < 150 && > && > && < 2 && > 2.5 && dPhiLepMet < 2.0) VV_SR_base = ( && > 60 && < 120 && > && > && < 2 && > 2.5 && dPhiLepMet < 2.0) #----- Signal/Control Region without overlap treatment -----# diff --git a/python/Wlv2017config/datacards.ini b/python/Wlv2017config/datacards.ini index 62c7063c6..0bead850a 100644 --- a/python/Wlv2017config/datacards.ini +++ b/python/Wlv2017config/datacards.ini @@ -71,21 +71,21 @@ weightF_sys = [ ; 'TEST_vhbb_BtagMjj_TM_120_130', ; 'TEST_vhbb_BtagMjj_TM_130_140', ; 'TEST_vhbb_BtagMjj_TM_140_150', - 'CMS_vhbb_VjetsBenriched_WBJets_2017_13TeV', - 'CMS_vhbb_VjetsBenriched_WJetsBGenFilter_2017_13TeV', - 'CMS_vhbb_VjetsBenriched_WBJets_RW_2017_13TeV', - 'CMS_vhbb_VjetsBenriched_WJetsBGenFilter_RW_2017_13TeV', - 'CMS_vhbb_Vjets_WBJets_RW_2017_13TeV', - 'CMS_vhbb_Vjets_WJetsBGenFilter_RW_2017_13TeV', - 'CMS_vhbb_Vjets_minJetPt', +; 'CMS_vhbb_VjetsBenriched_WBJets_2017_13TeV', +; 'CMS_vhbb_VjetsBenriched_WJetsBGenFilter_2017_13TeV', +; 'CMS_vhbb_VjetsBenriched_WBJets_RW_2017_13TeV', +; 'CMS_vhbb_VjetsBenriched_WJetsBGenFilter_RW_2017_13TeV', +; 'CMS_vhbb_Vjets_WBJets_RW_2017_13TeV', +; 'CMS_vhbb_Vjets_WJetsBGenFilter_RW_2017_13TeV', +; 'CMS_vhbb_Vjets_minJetPt', 'CMS_vhbb_Vpt150_13TeV', 'CMS_vhbb_Vpt250_13TeV', - 'CMS_vhbb_DeepCSV_TT', - 'CMS_vhbb_DeepCSV_TM', - 'CMS_vhbb_DeepCSV_TL', - 'CMS_vhbb_DeepCSV_MM', - 'CMS_vhbb_DeepCSV_ML', - 'CMS_vhbb_DeepCSV_LL', +; 'CMS_vhbb_DeepCSV_TT', +; 'CMS_vhbb_DeepCSV_TM', +; 'CMS_vhbb_DeepCSV_TL', +; 'CMS_vhbb_DeepCSV_MM', +; 'CMS_vhbb_DeepCSV_ML', +; 'CMS_vhbb_DeepCSV_LL', 'PileUp', ; pT(W) fit reweighting ; 'CMS_vhbb_topptreweighting_13TeV', @@ -100,22 +100,22 @@ weightF_sys = [ ; LO to NLO shape reweighting 'CMS_vhbb_vjetnlodetajjrw_13TeV', ; 2017 version - 'CMS_vhbb_vjetnlovptrw_13TeV', - 'CMS_vhbb_vjetnlovptrw_ZJets0_13TeV', - 'CMS_vhbb_vjetnlovptrw_ZJets1_13TeV', - 'CMS_vhbb_vjetnlovptrw_ZJets2_13TeV', - 'CMS_vhbb_vjetnlovptrw_WJets0_13TeV', - 'CMS_vhbb_vjetnlovptrw_WJets1_13TeV', - 'CMS_vhbb_vjetnlovptrw_WJets2_13TeV', - 'CMS_vhbb_vjetnlovptrw_DYJets0_13TeV', - 'CMS_vhbb_vjetnlovptrw_DYJets1_13TeV', - 'CMS_vhbb_vjetnlovptrw_DYJets2_13TeV', - 'CMS_vhbb_vjetnlovptrw_ZBJets1_13TeV', - 'CMS_vhbb_vjetnlovptrw_ZBJets2_13TeV', - 'CMS_vhbb_vjetnlovptrw_WBJets1_13TeV', - 'CMS_vhbb_vjetnlovptrw_WBJets2_13TeV', - 'CMS_vhbb_vjetnlovptrw_DYBJets1_13TeV', - 'CMS_vhbb_vjetnlovptrw_DYBJets2_13TeV', +; 'CMS_vhbb_vjetnlovptrw_13TeV', +; 'CMS_vhbb_vjetnlovptrw_ZJets0_13TeV', +; 'CMS_vhbb_vjetnlovptrw_ZJets1_13TeV', +; 'CMS_vhbb_vjetnlovptrw_ZJets2_13TeV', +; 'CMS_vhbb_vjetnlovptrw_WJets0_13TeV', +; 'CMS_vhbb_vjetnlovptrw_WJets1_13TeV', +; 'CMS_vhbb_vjetnlovptrw_WJets2_13TeV', +; 'CMS_vhbb_vjetnlovptrw_DYJets0_13TeV', +; 'CMS_vhbb_vjetnlovptrw_DYJets1_13TeV', +; 'CMS_vhbb_vjetnlovptrw_DYJets2_13TeV', +; 'CMS_vhbb_vjetnlovptrw_ZBJets1_13TeV', +; 'CMS_vhbb_vjetnlovptrw_ZBJets2_13TeV', +; 'CMS_vhbb_vjetnlovptrw_WBJets1_13TeV', +; 'CMS_vhbb_vjetnlovptrw_WBJets2_13TeV', +; 'CMS_vhbb_vjetnlovptrw_DYBJets1_13TeV', +; 'CMS_vhbb_vjetnlovptrw_DYBJets2_13TeV', ; 'CMS_vhbb_vjetnlovptrw_p0_13TeV', ; 'CMS_vhbb_vjetnlovptrw_p1_13TeV', ; 'CMS_vhbb_vjetnlovptrw_naddjet0_p0_13TeV', @@ -359,10 +359,12 @@ systematicsnaming = removeWeightSystematics = {} +List = SR_high1_Wen,SR_high2_Wen,SR_high1_Wmn,SR_high2_Wmn,Wlf_high_Wen,Wlf_high_Wmn,Whf_high_Wen,Whf_high_Wmn,ttbar_high_Wen,ttbar_high_Wmn,SR_med_Wen,SR_med_Wmn,Wlf_med_Wen,Wlf_med_Wmn,Whf_med_Wen,Whf_med_Wmn,ttbar_med_Wen,ttbar_med_Wmn +#List = SR_high1_Wen,SR_high2_Wen,SR_high1_Wmn,SR_high2_Wmn,Wlf_high_Wen,Wlf_high_Wmn,Whf_high_Wen,Whf_high_Wmn,ttbar_high_Wen,ttbar_high_Wmn,SR_med_Wen,SR_med_Wmn,Wlf_med_Wen,Wlf_med_Wmn,Whf_med_Wen,Whf_med_Wmn,ttbar_med_Wen,ttbar_med_Wmn,SR_high1_Wen_BOOST,SR_high2_Wen_BOOST,SR_high1_Wmn_BOOST,SR_high2_Wmn_BOOST,Wlf_high_Wen_BOOST,Wlf_high_Wmn_BOOST,Whf_high_Wmn_BOOST,Whf_high_Wen_BOOST,ttbar_high_Wmn_BOOST,ttbar_high_Wen_BOOST +#List = SR_high1_Wen,SR_high2_Wen,SR_high1_Wmn,SR_high2_Wmn,SR_med_Wen,SR_med_Wmn +#List = VV_SR_high1_Wen,VV_SR_high2_Wen,VV_SR_high1_Wmn,VV_SR_high2_Wmn,VV_Wlf_high_Wen,VV_Wlf_high_Wmn,VV_Whf_high_Wen,VV_Whf_high_Wmn,VV_ttbar_high_Wen,VV_ttbar_high_Wmn,VV_SR_med_Wen,VV_SR_med_Wmn,VV_Wlf_med_Wen,VV_Wlf_med_Wmn,VV_Whf_med_Wen,VV_Whf_med_Wmn,VV_ttbar_med_Wen,VV_ttbar_med_Wmn,VV_SR_high1_Wen_BOOST,VV_SR_high2_Wen_BOOST,VV_SR_high1_Wmn_BOOST,VV_SR_high2_Wmn_BOOST,VV_Wlf_high_Wen_BOOST,VV_Wlf_high_Wmn_BOOST,VV_Whf_high_Wmn_BOOST,VV_Whf_high_Wen_BOOST,VV_ttbar_high_Wmn_BOOST,VV_ttbar_high_Wen_BOOST -List = SR_high1_Wen,SR_high2_Wen,SR_high1_Wmn,SR_high2_Wmn,Wlf_high_Wen,Wlf_high_Wmn,Whf_high_Wen,Whf_high_Wmn,ttbar_high_Wen,ttbar_high_Wmn,SR_med_Wen,SR_med_Wmn,Wlf_med_Wen,Wlf_med_Wmn,Whf_med_Wen,Whf_med_Wmn,ttbar_med_Wen,ttbar_med_Wmn,SR_high1_Wen_BOOST,SR_high2_Wen_BOOST,SR_high1_Wmn_BOOST,SR_high2_Wmn_BOOST,Wlf_high_Wen_BOOST,Wlf_high_Wmn_BOOST,Whf_high_Wmn_BOOST,Whf_high_Wen_BOOST,ttbar_high_Wmn_BOOST,ttbar_high_Wen_BOOST -ListVZ = VV_SR_high1_Wen,VV_SR_high2_Wen,VV_SR_high1_Wmn,VV_SR_high2_Wmn,Wlf_high_Wen,Wlf_high_Wmn,VV_Whf_high_Wen,VV_Whf_high_Wmn,ttbar_high_Wen,ttbar_high_Wmn,VV_SR_med_Wen,VV_SR_med_Wmn,Wlf_med_Wen,Wlf_med_Wmn,VV_Whf_med_Wen,VV_Whf_med_Wmn,ttbar_med_Wen,ttbar_med_Wmn,VV_SR_high1_Wen_BOOST,VV_SR_high2_Wen_BOOST,VV_SR_high1_Wmn_BOOST,VV_SR_high2_Wmn_BOOST,Wlf_high_Wen_BOOST,Wlf_high_Wmn_BOOST,VV_Whf_high_Wmn_BOOST,VV_Whf_high_Wen_BOOST,ttbar_high_Wmn_BOOST,ttbar_high_Wen_BOOST - +#List = SR_high1_Wen,SR_high2_Wen,SR_high1_Wmn,SR_high2_Wmn,Wlf_high_Wen,Wlf_high_Wmn,Whf_high_Wen,Whf_high_Wmn,ttbar_high_Wen,ttbar_high_Wmn,SR_med_Wen,SR_med_Wmn,Wlf_med_Wen,Wlf_med_Wmn,Whf_med_Wen,Whf_med_Wmn,ttbar_med_Wen,ttbar_med_Wmn,SR_high1_Wen_BOOST,SR_high2_Wen_BOOST,SR_high1_Wmn_BOOST,SR_high2_Wmn_BOOST,Wlf_high_Wen_BOOST,Wlf_high_Wmn_BOOST,Whf_high_Wmn_BOOST,Whf_high_Wen_BOOST,ttbar_high_Wmn_BOOST,ttbar_high_Wen_BOOST,VV_SR_high1_Wen,VV_SR_high2_Wen,VV_SR_high1_Wmn,VV_SR_high2_Wmn,Wlf_high_Wen,Wlf_high_Wmn,VV_Whf_high_Wen,VV_Whf_high_Wmn,ttbar_high_Wen,ttbar_high_Wmn,VV_SR_med_Wen,VV_SR_med_Wmn,Wlf_med_Wen,Wlf_med_Wmn,VV_Whf_med_Wen,VV_Whf_med_Wmn,ttbar_med_Wen,ttbar_med_Wmn,VV_SR_high1_Wen_BOOST,VV_SR_high2_Wen_BOOST,VV_SR_high1_Wmn_BOOST,VV_SR_high2_Wmn_BOOST,Wlf_high_Wen_BOOST,Wlf_high_Wmn_BOOST,VV_Whf_high_Wmn_BOOST,VV_Whf_high_Wen_BOOST,ttbar_high_Wmn_BOOST,ttbar_high_Wen_BOOST # diboson list, use with: --set='LimitGeneral.List=' ListVV = ttbar_medhigh_Wen,ttbar_medhigh_Wmn,Wlf_medhigh_Wen,Wlf_medhigh_Wmn,VV_Whf_medhigh_Wen,VV_Whf_medhigh_Wmn,VV_SR_medhigh_Wen,VV_SR_medhigh_Wmn @@ -405,6 +407,8 @@ binsSR_BOOST = [-16:] ;;List here the lnN sys in use [Datacard] +DNN_trafo = (TMath::Sqrt(.Nominal)+TMath::Power((.Nominal),12))/2. + produceTextFiles = False #!! ------------------------- @@ -830,19 +834,23 @@ type = cr #----- Signal -----# [dc:SR_med_Wen] rebin_method = list -#rebin_list = -rebin_list = [0.00000, 0.18946, 0.29386, 0.39437, 0.48279, 0.56652, 0.63879, 0.70212, 0.75678, 0.80642, 0.85115, 0.88701, 0.91788, 0.94654, 0.97067, 1.00001] +rebin_list = +#rebin_list = [0.00000, 0.18946, 0.29386, 0.39437, 0.48279, 0.56652, 0.63879, 0.70212, 0.75678, 0.80642, 0.85115, 0.88701, 0.91788, 0.94654, 0.97067, 1.00001] var = .Nominal +#var = signal = background = data = type = BDT +#var = [dc:SR_med_Wmn] rebin_method = list -#rebin_list = -rebin_list = [0.00000, 0.19405, 0.29948, 0.38810, 0.47998, 0.56324, 0.63546, 0.70415, 0.75860, 0.80611, 0.84957, 0.88647, 0.91820, 0.94564, 0.96939, 1.00001] +rebin_list = +#rebin_list = [0.00000, 0.19405, 0.29948, 0.38810, 0.47998, 0.56324, 0.63546, 0.70415, 0.75860, 0.80611, 0.84957, 0.88647, 0.91820, 0.94564, 0.96939, 1.00001] var = .Nominal +#var = +#range = 15,0.0,1.0 signal = background = data = @@ -957,9 +965,11 @@ type = BDT [dc:SR_high1_Wen] rebin_method = list -#rebin_list = -rebin_list = [0.00000, 0.35792, 0.52721, 0.65004, 0.73144, 0.79318, 0.84281, 0.87721, 0.90674, 0.93086, 0.94957, 0.96425, 0.97641, 0.98474, 0.99178, 1.00001] +rebin_list = +#rebin_list = [0.00000, 0.35792, 0.52721, 0.65004, 0.73144, 0.79318, 0.84281, 0.87721, 0.90674, 0.93086, 0.94957, 0.96425, 0.97641, 0.98474, 0.99178, 1.00001] var = .Nominal +#var = +#range = 15,0.0,1.0 signal = background = data = @@ -967,9 +977,11 @@ type = BDT [dc:SR_high2_Wen] rebin_method = list -#rebin_list = -rebin_list = [0.00000, 0.83763, 0.94393, 0.97670, 0.99321, 1.00001] +rebin_list = +#rebin_list = [0.00000, 0.83763, 0.94393, 0.97670, 0.99321, 1.00001] var = .Nominal +#var = +#range = 15,0.0,1.0 signal = background = data = @@ -988,9 +1000,11 @@ type = BDT [dc:SR_high1_Wmn] rebin_method = list -#rebin_list = -rebin_list = [0.00000, 0.36339, 0.52526, 0.64005, 0.73132, 0.79325, 0.84059, 0.87958, 0.90882, 0.93224, 0.94961, 0.96385, 0.97617, 0.98510, 0.99244, 1.00001] +rebin_list = +#rebin_list = [0.00000, 0.36339, 0.52526, 0.64005, 0.73132, 0.79325, 0.84059, 0.87958, 0.90882, 0.93224, 0.94961, 0.96385, 0.97617, 0.98510, 0.99244, 1.00001] var = .Nominal +#var = +#range = 15,0.0,1.0 signal = background = data = @@ -998,9 +1012,11 @@ type = BDT [dc:SR_high2_Wmn] rebin_method = list -#rebin_list = -rebin_list = [0.00000, 0.83260, 0.94126, 0.97691, 0.99378, 1.00001] +rebin_list = +#rebin_list = [0.00000, 0.83260, 0.94126, 0.97691, 0.99378, 1.00001] var = .Nominal +#var = +#range = 15,0.0,1.0 signal = background = data = diff --git a/python/Wlv2017config/general.ini b/python/Wlv2017config/general.ini index 78344bee6..5e64ad6bf 100644 --- a/python/Wlv2017config/general.ini +++ b/python/Wlv2017config/general.ini @@ -39,12 +39,14 @@ Data_as_signal = False [Prep] Step1 = ['VHbbCommon.Clean','VHbbCommon.JetSmearer','VHbbCommon.JECcorrelator','Prep.LeptonSelection'] -LeptonSelection = VHbbSelection.VHbbSelection(year="2017", channels=["Wln"], idWmn=None, idWen=None, skipJetSelection=True, vpt0lep=130.0, vpt1lep=110.0, vpt2lep=75.0) +#LeptonSelection = VHbbSelection.VHbbSelection(year="2017", channels=["Wln"], idWmn=None, idWen=None, skipJetSelection=True, vpt0lep=130.0, vpt1lep=110.0, vpt2lep=75.0) +LeptonSelection = VHbbSelection.VHbbSelection(year="2017", channels=["Wln"], idWmn=None, idWen=None, skipJetSelection=True, vpt0lep=130.0, vpt1lep=110.0, vpt2lep=75.0, jetIdCut=1) Step2 = ['VHbbCommon.METXY','Prep.Selection', 'VHbbCommon.isData','VHbbCommon.isSignal','VHbbCommon.isWH','VHbbCommon.HeppyStyleGen','VHbbCommon.genBstatus','Prep.newBranches','VHbbCommon.VReco'] VHbb = ['VHbbCommon.Clean','VHbbCommon.mSD_sys_2017','VHbbCommon.JetSmearer','VHbbCommon.METXY','Prep.Selection', 'VHbbCommon.isData','VHbbCommon.isSignal','VHbbCommon.isWH','VHbbCommon.HeppyStyleGen','VHbbCommon.genBstatus','Prep.newBranches','VHbbCommon.VReco'] -Selection = VHbbSelection.VHbbSelection(year="2017", channels=["Wln"], idWmn=None, idWen=None) +#Selection = VHbbSelection.VHbbSelection(year="2017", channels=["Wln"], idWmn=None, idWen=None) +Selection = VHbbSelection.VHbbSelection(year="2017", channels=["Wln"], idWmn=None, idWen=None, jetIdCut=1) # new branches newBranches = BranchTools.TreeFormulas({ @@ -82,7 +84,7 @@ muonSF = MuonSFfromJSON.MuonSFfromJSON(jsonFiles=['data/Run2MuonSF/vhbb_SingleMu # additional reconstruction of variables for DNN input -GetTopMass = GetTopMass.GetTopMass(nano=True, propagateJES=True, METmethod=2, minbTag=, branchName='top_mass2_05') +GetTopMass = GetTopMass.GetTopMass(nano=True, propagateJES=True, METmethod=2, minbTag=, branchName='top_mass2_05', puIdCut=6, jetIdCut=1) #GetTopMassNominal = GetTopMass.GetTopMass(nano=True, propagateJES=False, METmethod=2, minbTag=, branchName='top_mass2_05') #GetWTMass = GetWTMass.GetWTMass(nano=True,branchName="V_mt") @@ -91,8 +93,12 @@ weightAsBranch = WeightAsBranch.WeightAsBranch() # DNNs # Eval.VH,Eval.VZ,Eval.weightAsBranch -#all = + +all = +#all = + + + #all = + + +#all = + VH = ['Eval.SR_medhigh_Wln', 'Eval.Whf_high_Wln', 'Eval.Whf_med_Wln'] VV = VZ = ['Eval.VV_SR_medhigh_Wln','Eval.VV_Whf_med_Wln','Eval.VV_Whf_high_Wln'] @@ -104,6 +110,10 @@ VZ_BOOSTED = ['Eval.BDT_VZ_Wlv_BOOSTFinal_wdB'] VHLegacyDNNs = ['Eval.SR_medhigh_Wln','Eval.Whf_high_Wln','Eval.Whf_med_Wln','VHbbCommon.isBoosted'] # resolved + +RESOLVED_BDT = ['Eval.BDT_SR_medhigh_Wln'] +BDT_SR_medhigh_Wln = tmvaEvaluator.tmvaEvaluator(mvaName='SR_medhigh_Wln') + SR_medhigh_Wln = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName='SR_medhigh_Wln',condition='hJidx[0]>-1&&hJidx[1]>-1') Whf_high_Wln = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName='Whf_high_Wln',condition='hJidx[0]>-1&&hJidx[1]>-1') Whf_med_Wln = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName='Whf_med_Wln',condition='hJidx[0]>-1&&hJidx[1]>-1') @@ -166,12 +176,14 @@ stitchingWeights_False = DY_specialWeight stitchingWeights_True = 1.0 stitchingWeights = !> -#weightNLO = weightLOtoNLO +#weightNLO = weightLOtoNLO*weightLOtoNLO_LHEVptV7*weightLOtoNLO_LHEVptV7_Up*weightLOtoNLO_LHEVptV7_Down +#weightNLO = 1.0 +weightNLO = weightLOtoNLO #weightNLO = weightLOtoNLO_2016 #weightNLO = weightLOtoNLO_LHEVptV2 #weightNLO = weightLOtoNLO_LHEVptV2b #weightNLO = weightLOtoNLO_LHEVptV6 -weightNLO = weightLOtoNLO_LHEVptV7 +#weightNLO = weightLOtoNLO_nbHad weightJetPUID = weightJetPUID weightNaddJetsResidual = 1.0 diff --git a/python/Wlv2017config/hadd.ini b/python/Wlv2017config/hadd.ini index bfcd29a3e..4e96c7c30 100644 --- a/python/Wlv2017config/hadd.ini +++ b/python/Wlv2017config/hadd.ini @@ -71,3 +71,46 @@ ZZTo4L_13TeV_powheg_pythia8: 23 ZZ_TuneCP5_13TeV-pythia8: 18 ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8: 3 ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8: 1600 +DY1JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8: 4 +DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8: 3 +DY1JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8: 1 +DY1JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8: 8 +DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8: 586 +DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8: 1 +DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8: 2 +DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8: 2 +DY2JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8: 4 +DY2JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8: 34 +DY3JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8: 6 +DY4JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8: 7 +DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8: 11 +W1JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8: 166 +W1JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8: 3 +W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8: 1 +W1JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8: 1 +W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8: 1 +W1JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8: 24 +W1JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8: 68 +W2JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8: 83 +W2JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8: 1 +W2JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8: 1 +W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8: 1 +W2JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8: 1 +W2JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8: 3 +W2JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8: 8 +W3JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8: 2 +W4JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8: 1 +Z1JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8: 16000 +Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8: 11250 +Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8: 4000 +Z1JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8: 64000 +Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8: 3482 +Z2JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8: 4572 +Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8: 867 +Z2JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8: 4000 +DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8: 405 +DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8: 15 +DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8: 3 +WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8: 948 +WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8: 20 +WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8: 2 diff --git a/python/Wlv2017config/paths.ini b/python/Wlv2017config/paths.ini index 4ae6652f0..08b0f656c 100644 --- a/python/Wlv2017config/paths.ini +++ b/python/Wlv2017config/paths.ini @@ -2,7 +2,7 @@ #!! List of the config you want to use #!! The list only support spaces between configs #List = paths.ini userpaths.ini ../VHbb2017commonconfig/general.ini general.ini cuts.ini training.ini datacards.ini ../VHbb2017commonconfig/systematics.ini plots.ini lhe_weights.ini ../VHbb2017commonconfig/samples_mc.ini ../VHbb2017commonconfig/stxs.ini hadd.ini data.ini fit.ini ../VHbb2017commonconfig/vhbbPlotDef.ini vhbbPlotDef.ini volatile.ini -List = paths.ini ../VHbb2017commonconfig/general.ini general.ini cuts.ini training.ini datacards.ini ../VHbb2017commonconfig/systematics.ini plots.ini lhe_weights.ini ../VHbb2017commonconfig/samples_mc.ini ../VHbb2017commonconfig/stxs.ini hadd.ini data.ini fit.ini ../VHbb2017commonconfig/vhbbPlotDef.ini vhbbPlotDef.ini volatile.ini +List = paths.ini ../VHbb2017commonconfig/general.ini general.ini cuts.ini training.ini datacards.ini ../VHbb2017commonconfig/systematics.ini plots.ini lhe_weights.ini ../VHbb2017commonconfig/samples_mc.ini ../VHbb2017commonconfig/stxs.ini hadd.ini data.ini fit.ini ../VHbb2017commonconfig/vhbbPlotDef.ini vhbbPlotDef.ini volatile.ini SRbinning_MVA_Wlv.txt # general config #whereToLaunch = PSI @@ -26,29 +26,42 @@ scratch = /scratch// Wdir = /src/ samplepath = -samplefiles = /mnt/t3nfs01/data01/shome/berger_p2/VHbb/CMSSW_10_1_0/src/Xbb/samples/VHbbPostNano2017_V11/merged_Wlv2017/ -samplefiles_split = /mnt/t3nfs01/data01/shome/berger_p2/VHbb/CMSSW_10_1_0/src/Xbb/samples/VHbbPostNano2017_V11/merged_Wlv2017/ +#samplefiles = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/samples/VHbbPostNano2017_V11/merged_Wlv2017/ +samplefiles = /work/acalandr/VHbb_Xbb_production_Oct2020/2017_Christina_Xbb_LOtoNLO_DEtaBBreweight/CMSSW_10_1_0/src/Xbb/samples/VHbbPostNano2017_V11/merged_Wlv2017/ +samplefiles_split = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/samples/VHbbPostNano2017_V11/ ;!! The directory with the code vhbbpath= /Xbb -trainingSamples = +trainingSamples = plottingSamples = dcSamples = # defined in userpaths.ini -tmpSamples = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/acalandr/VHbb/Wlv/VHbbPostNano2017_V11/tmp/v40/ - -PREPin = -PREPout = -HADDin = -HADDout = -SYSin = -SYSout = -TOPin = -TOPout = -#MVAin = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/berger_p2/VHbb/Wlv/VHbbPostNano2017_V11/Oct2020v1/eval_v2/ -#MVAout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/acalandr/VHbb/Wlv/VHbbPostNano2017_V11/Oct202/eval/v1/ -MVAin = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/acalandr/VHbb/Wlv/VHbbPostNano2017_V11/Oct202/eval/v3/ -MVAout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/acalandr/VHbb/Wlv/VHbbPostNano2017_V11/Oct202/eval/v4/ +tmpSamples = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2017_V11/tmp/2022_01_30/cachedc/ +PREPin = root://eoscms.cern.ch/ +PREPout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2017_V11/2021_05_20-v2/prep_step1/ +PREP2out = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2017_V11/2021_05_20-v2/prep_step2/ + +HADDin = +HADDout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2017_V11/2021_05_20-v2/hadd/ + +SYSin = +SYSout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2017_V11/2021_05_20-v2/sys/ + +BOOSTin = +#BOOSTout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2017_V11/2021_05_20-v2/boost/ +BOOSTout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/acalandr/VHbb/Wlv/VHbbPostNano2017_V11/jetIDfix/boost/ + +MVAin = +#MVAin = +#MVAout_v3 = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2017_V11/2021_10_12/eval/LOtoNLO-v2/ +#MVAout_v4 = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2017_V11/2021_11_23/eval_withBDT/ +#MVAout_v6 = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2017_V11/2021_12_08/HIG18016_DNNs/ + +MVAout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Wlv/VHbbPostNano2017_V11/2022_01_22/eval/ + + +MVAPIRMINout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/berger_p2/VHbb/Wlv/VHbbPostNano2017_V11/forShapes/NLOv7/ +MVAALESSANDROout = root://t3dcachedb03.psi.ch:1094///pnfs/psi.ch/cms/trivcat/store/user/acalandr/VHbb/Wlv/VHbbPostNano2017_V11/June2021/mva/ diff --git a/python/Wlv2017config/plots.ini b/python/Wlv2017config/plots.ini index f518de2c5..4a998af8f 100644 --- a/python/Wlv2017config/plots.ini +++ b/python/Wlv2017config/plots.ini @@ -20,8 +20,11 @@ WlnDnnBlinding = {'Hmass': 'H_mass<90||H_mass>150','WenDNN': '{var}<%%1.5f'%% allBKG = samples = [,] +#samples = [] +#samples = [] +#samples = [,,] # ------------------------------------------------------------------------------------------------------------------------------------------------------ # diboson signal/background definition @@ -55,7 +61,11 @@ VV_setup = VVHF,VVLF,ZJets_0b,ZJets_1b,ZJets_2b,WJets_0b,WJets_1b,WJets_2b,TT,ST # ------------------------------------------------------------------------------------------------------------------------------------------------------ # plot regions # ------------------------------------------------------------------------------------------------------------------------------------------------------ -List = +#List = SR_med_Wen,SR_med_Wmn,SR_high1_Wen,SR_high1_Wmn,SR_high2_Wen,SR_high2_Wmn,SR_high1_Wen_BOOST,SR_high1_Wmn_BOOST,SR_high2_Wen_BOOST,SR_high2_Wmn_BOOST +List = SR_med_Wen,SR_med_Wmn,SR_high1_Wen,SR_high1_Wmn,SR_high2_Wen,SR_high2_Wmn +#List = +#List = Whf_high_Wen,Whf_high_Wmn,Whf_med_Wen,Whf_med_Wmn,SR_med_Wen,SR_med_Wmn,SR_high1_Wen,SR_high1_Wmn,SR_high2_Wen,SR_high2_Wmn +#List = ttbar_medhigh_Wen,ttbar_medhigh_Wmn,Whf_medhigh_Wen,Whf_medhigh_Wmn,Wlf_medhigh_Wen,Wlf_medhigh_Wmn,SR_medhigh_Wen,SR_medhigh_Wmn ListVHLegacy = Wlf_med_Wen,Wlf_med_Wmn,Wlf_high_Wen,Wlf_high_Wmn,Whf_med_Wen,Whf_med_Wmn,Whf_high_Wen,Whf_high_Wmn,ttbar_med_Wen,ttbar_med_Wmn,ttbar_high_Wen,ttbar_high_Wmn,SR_med_Wen,SR_med_Wmn,SR_high1_Wen,SR_high1_Wmn,SR_high2_Wen,SR_high2_Wmn, @@ -92,7 +102,7 @@ vars_inputs = Hj0_btag,Hj1_btag,Hj0_btag_WP,Hj1_btag_WP,btagWP2D,Hmass_SR,Hpt vars_full = ,,,,,,,,,,,,,, -vars_reduced = ,Heta,Hphi,Hmass_0to500,rawMET,tkMET,dPhi_MET_tkMET,min_MET_MHT,tkmetphi,METphi +vars_reduced = ,Heta,Hphi,Hmass_0to500,rawMET,tkMET,dPhi_MET_tkMET,min_MET_MHT,tkmetphi,METphi,deltaRbb,deltaRbbWithFSR,deltaEtabb @@ -113,7 +123,10 @@ vars_reduced = ,Heta,Hphi,Hmass_0to500,rawMET,tkMET,dPhi_MET_ #var_Boost = Vpt,FatMass,FatPt,tau21,tau32,DoubleB,NaddJetsBoost,HVdPhiBoost,dRMMaxFatResolved,dRMinFatResolved,HT,Vpt #var: , -var = +#var = +#var = DNN,BDT +var = DNN +;var = deltaEtabb,deltaEtabbWithFSR,Vpt #!!_*_*_*_*_*_ diff --git a/python/Wlv2017config/training.ini b/python/Wlv2017config/training.ini index 4b350f95e..f618c382e 100644 --- a/python/Wlv2017config/training.ini +++ b/python/Wlv2017config/training.ini @@ -14,10 +14,12 @@ type = BDT [MVALists] ;List_for_submitscript = SR_medhigh_Wln,Whf_medhigh_Wln,VV_SR_medhigh_Wln,VV_Whf_medhigh_Wln -List_for_submitscript = +;List_for_submitscript = +;List_for_submitscript = SR_medhigh_Wln +List_for_submitscript = SR_medhigh_Wln,Whf_medhigh_Wln,Whf_med_Wln,Whf_high_Wln ;List = ,, -List = +;List = ;List_VH = SR_medhigh_Wln,Whf_medhigh_Wln ;List_VV = VV_SR_medhigh_Wln,VV_Whf_medhigh_Wln ;List_Multi = Multi_medhigh_Wln @@ -33,7 +35,8 @@ classes = [['WL',[,,] backgrounds = [] -treeVarSet = WlvBDTVarsWP +#treeVarSet = WlvBDTVarsWP +treeVarSet = WlvHIG18016Vars treeCut = SR_medhigh_Wen signalIndex = 0 bins = @@ -41,18 +44,28 @@ bins = [SR_medhigh_Wmn] signals = [] backgrounds = [] -treeVarSet = WlvBDTVarsWP +#treeVarSet = WlvBDTVarsWP +treeVarSet = WlvHIG18016Vars treeCut = SR_medhigh_Wmn signalIndex = 0 bins = [SR_medhigh_Wln] +#xml = weights/MVA_SR_medhigh_Wln.weights.xml signals = [] backgrounds = [] treeVarSet = WlvBDTVarsWP +#treeVarSet = WlvHIG18016Vars +MVAtype = +#MVAsettings = NTrees=100:nCuts=20 treeCut = SR_medhigh_Wln -branchName = DNN_200122_VHLegacyDNN2017V11_Wln_Jan2020OverlapToResolvedDeepCSVwp_SR_medhigh_Wln -checkpoint = DNN/200122_VHLegacyDNN2017V11_Wln_Jan2020OverlapToResolvedDeepCSVwp_SR_medhigh_Wln +branchName = DNN_220125_VHLegacyDNN2017V11_Wln_Jan2022jetIdCut1_SR_medhigh_Wln +#branchName = BDT_20211123_TL +#branchName = DNN_211208_HIG18016DNN2017V11_Wln_SR_medhigh_Wln +#branchName = DNN_200122_VHLegacyDNN2017V11_Wln_Jan2020OverlapToResolvedDeepCSVwp_SR_medhigh_Wln +#checkpoint = DNN/200122_VHLegacyDNN2017V11_Wln_Jan2020OverlapToResolvedDeepCSVwp_SR_medhigh_Wln +#checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/Wlv2017_SR/Wlv2017_SR_medhigh_Wln_211208_V11DeepCSV-final.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/1.000e+00/rnd_28817/checkpoints/model.ckpt +checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/jetIdCut1_220125/Wlv2017_SR_medhigh_Wln_220125_V11DeepCSV-final.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/1.000e+00/rnd_557447/checkpoints/model.ckpt signalIndex = 0 bins = [0.0000, 0.2243, 0.3615, 0.4692, 0.5533, 0.6305, 0.7010, 0.7597, 0.8109, 0.8536, 0.8904, 0.9202, 0.9444, 0.9648, 0.9810, 1.0001] @@ -150,7 +163,8 @@ signals = [] backgrounds = [] data = includeData = True -treeVarSet = WlvBDTVarsWP +#treeVarSet = WlvBDTVarsWP +treeVarSet = WlvHIG18016Vars treeCut = Whf_med_Wen classes = bins = [0, 1, 2, 3, 4, 5.0001] @@ -161,7 +175,8 @@ signals = [] backgrounds = [] data = includeData = True -treeVarSet = WlvBDTVarsWP +#treeVarSet = WlvBDTVarsWP +treeVarSet = WlvHIG18016Vars treeCut = Whf_med_Wmn classes = bins = [0, 1, 2, 3, 4, 5.0001] @@ -172,6 +187,7 @@ backgrounds = [] data = includeData = True treeVarSet = WlvBDTVarsWP +#treeVarSet = WlvHIG18016Vars treeCut = Whf_medhigh_Wln checkpoint = DNN/ branchName = DNN_ @@ -186,8 +202,12 @@ includeData = True treeVarSet = treeCut = Whf_med_Wln classes = -branchName = DNN_200713_VHLegacyDNN2017V11_Wln_Apr2020v6_July_5bin_Whf_med_Wln -checkpoint = DNN/200713_VHLegacyDNN2017V11_Wln_Apr2020v6_July_5bin_Whf_med_Wln +branchName = DNN_220125_VHLegacyDNN2017V11_Wln_Jan2022jetIdCut1_Whf_med_Wln +#branchName = DNN_200713_VHLegacyDNN2017V11_Wln_Apr2020v6_July_5bin_Whf_med_Wln +#branchName = DNN_211208_HIG18016DNN2017V11_Wln_5bin_Whf_med_Wln +#checkpoint = DNN/200713_VHLegacyDNN2017V11_Wln_Apr2020v6_July_5bin_Whf_med_Wln +#checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/Wlv2017_Whf_med/Wlv2017_Whf_med_Wln_211208_V11DeepCSV-final.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/5.000e-04/rnd_28829/checkpoints/model.ckpt +checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/jetIdCut1_220125/Wlv2017_Whf_med_Wln_220125_V11DeepCSV-final.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/5.000e-04/rnd_557449/checkpoints/model.ckpt bins = [0, 1, 2, 3, 4, 5.0001] bins_5 = [0.0, 0.3325173663962002, 0.3877651726795056, 0.42953100700991836, 0.4785044611190379, 1.0, 1.3379481950565038, 1.3939613524087509, 1.4404906379894762, 1.4917786438737684, 2.0, 2.3279142318935833, 2.382522604490993, 2.448301713323075, 2.563912778784162, 3.0, 3.3432537189357165, 3.3947785467670517, 3.442368300818536, 3.505559889129282, 4.0, 4.387338114785757, 4.464072574109338, 4.543650090505087, 4.645671630577687, 5.0001] @@ -199,8 +219,12 @@ includeData = True treeVarSet = treeCut = Whf_high_Wln classes = -branchName = DNN_200713_VHLegacyDNN2017V11_Wln_Apr2020v6_July_5bin_Whf_high_Wln -checkpoint = DNN/200713_VHLegacyDNN2017V11_Wln_Apr2020v6_July_5bin_Whf_high_Wln +branchName = DNN_220125_VHLegacyDNN2017V11_Wln_Jan2022jetIdCut1_Whf_high_Wln +#branchName = DNN_200713_VHLegacyDNN2017V11_Wln_Apr2020v6_July_5bin_Whf_high_Wln +#branchName = DNN_211208_HIG18016DNN2017V11_Wln_5bin_Whf_high_Wln +#checkpoint = DNN/200713_VHLegacyDNN2017V11_Wln_Apr2020v6_July_5bin_Whf_high_Wln +#checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/Wlv2017_Whf_high/Wlv2017_Whf_high_Wln_211208_V11DeepCSV-final.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/5.000e-04/rnd_28834/checkpoints/model.ckpt +checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/jetIdCut1_220125/Wlv2017_Whf_high_Wln_220125_V11DeepCSV-final.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/5.000e-04/rnd_557448/checkpoints/model.ckpt bins = [0, 1, 2, 3, 4, 5.0001] bins_5 = [0.0, 0.3406393710637065, 0.39842803215479927, 0.45146116773270506, 0.5201192266952743, 1.0, 1.3447334156495772, 1.4043459779519796, 1.4635016329781951, 1.5487298890858079, 2.0, 2.340309076438496, 2.3961153532337014, 2.458802761652924, 2.57104033319769, 3.0, 3.3534134156362523, 3.4055761794397053, 3.4513371214858375, 3.502270770101946, 4.0, 4.379375488572178, 4.448112200392372, 4.513904587309254, 4.603840916559541, 5.0001] @@ -293,11 +317,14 @@ bins = [0.0, 0.3950373337340116, 1.0, 1.2556262590021166, 2.0, 2.29525287 [WlvBDTVarsWP] -Nominal = H_mass H_pt V_mt V_pt V_pt/H_pt abs(TVector2::Phi_mpi_pi(V_phi-H_phi)) (>)+(>)+(>) (>)+(>)+(>) max(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) min(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) hJets_FSRrecovered_dEta MET_Pt dPhiLepMet top_mass2_05 SA5 Sum$(Jet_Pt>30&&abs(Jet_eta)<2.5&&(Jet_puId>6||Jet_Pt>50.0)&&Jet_jetId>4&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) +Nominal = H_mass H_pt V_mt V_pt V_pt/H_pt abs(TVector2::Phi_mpi_pi(V_phi-H_phi)) (>)+(>)+(>) (>)+(>)+(>) max(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) min(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) hJets_FSRrecovered_dEta MET_Pt dPhiLepMet top_mass2_05 SA5 Sum$(Jet_Pt>30&&abs(Jet_eta)<2.5&&(Jet_puId>6||Jet_Pt>50.0)&&Jet_jetId>1&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) +#Nominal = H_mass H_pt V_mt V_pt V_pt/H_pt abs(TVector2::Phi_mpi_pi(V_phi-H_phi)) (>)+(>)+(>) max(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) min(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) hJets_FSRrecovered_dEta MET_Pt dPhiLepMet top_mass2_05 SA5 Sum$(Jet_Pt>30&&abs(Jet_eta)<2.5&&(Jet_puId>6||Jet_Pt>50.0)&&Jet_jetId>4&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) [WlvBDTVars] Nominal = H_mass H_pt V_mt V_pt V_pt/H_pt abs(TVector2::Phi_mpi_pi(V_phi-H_phi)) max(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) min(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) hJets_FSRrecovered_dEta MET_Pt dPhiLepMet top_mass2_05 SA5 Sum$(Jet_Pt>30&&abs(Jet_eta)<2.5&&(Jet_puId>6||Jet_Pt>50.0)&&Jet_jetId>4&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) +[WlvHIG18016Vars] +Nominal = H_mass H_pt V_pt/H_pt V_pt top_mass2_05 abs(TVector2::Phi_mpi_pi(V_phi-H_phi)) Sum$(Jet_Pt>30&&abs(Jet_eta)<2.5&&(Jet_puId>6||Jet_Pt>50.0)&&Jet_jetId>4&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) SA5 dPhiLepMet V_mt MET_Pt max(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) min(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) hJets_FSRrecovered_dEta ;!! ------------------ ;!! Boosted MVA diff --git a/python/Wlv2017config/vhbbPlotDef.ini b/python/Wlv2017config/vhbbPlotDef.ini index 43545186a..e05b84284 100644 --- a/python/Wlv2017config/vhbbPlotDef.ini +++ b/python/Wlv2017config/vhbbPlotDef.ini @@ -115,7 +115,7 @@ max = 2 #----- BDT -----# -[plotDef:BDT_Wlv_BOOSTFinal_wdB] +[plotDef:BDT] xAxis = BDT_Wlv_BOOSTFinal_wdB relPath = BDT_Wlv_BOOSTFinal_wdB.Nominal nBins = 100000 @@ -162,6 +162,7 @@ relPath = .Nominal xAxis = DNN (final binning) nBins = 15 min = 0.0 +#min = -1.0 max = 1.0 log = True binList = diff --git a/python/Zll2016config/cuts.ini b/python/Zll2016config/cuts.ini index 41378666a..78d2bbac5 100644 --- a/python/Zll2016config/cuts.ini +++ b/python/Zll2016config/cuts.ini @@ -26,28 +26,40 @@ low75 = (V_pt>=75.0&&V_pt<150.0) low = med = (V_pt>=150.0&&V_pt<250.0) high = (V_pt>=250.0) +high1 = (V_pt>=250.0 && V_pt<400) +high2 = (V_pt>=400.0) medhigh = (V_pt>=150.0) lowmedhigh = (V_pt>50.0) # applied to all CR/SR -BasicCuts = (_mass > 50) +BasicCuts = (_mass > 50) && (_mass < 250) # base definitions # those definitions don't contain cuts on Vpt and nJet bin and resolved/boosted jets ttbar_base = ( && V_mass > 10 && (V_mass < 75 || V_mass > 120) && [] > && [] > ) -Zlf_base = ( && V_mass > 75. && V_mass < 105. && [] < && [] < && abs(TVector2::Phi_mpi_pi(_phi-V_phi)) > 2.5 && (_mass > 90 && _mass < 150)) -Zhf_base = ( && abs(TVector2::Phi_mpi_pi(_phi-V_phi)) > 2.5 && V_mass > 85. && V_mass < 97. && MET_Pt < 60 && [] > && [] > ) -SR_base = ( && V_mass > 75 && V_mass < 105 && [] > && [] > ) +Zlf_base = ( && V_mass > 75. && V_mass < 105. && [] < && [] < && (dPhiVH > 2.5) && (_mass > 90 && _mass < 150)) +Zhf_base = ( && (dPhiVH > 2.5) && V_mass > 85. && V_mass < 97. && [] > && [] > ) +SR_base = ((dPhiVH > 2.5) && V_mass > 75 && V_mass < 105 && [] > && [] > ) + +# flags for overlap treatment +# for one event, resolvedCR+resolvedSR+boostedCR+boostedSR in [0,1,2], resolvedCR+resolvedSR in [0,1], boostedCR+boostedSR in [0,1] +resolvedCR = (&&(||||(&&(_mass<90||_mass>150)))) +resolvedSR = (&&(&&(_mass>90&&_mass<150))) + +resolvedCR_VZ = (&&(||||(&&(_mass<60||_mass>120)))) +resolvedSR_VZ = (&&(&&(_mass>60&&_mass<120))) # RESOLVED control regions ttbar = ( && ) +VV_ttbar = ( && ) Zlf = ( && ) +VV_Zlf = ( && ) Zhf = ( && && (_mass < 90 || _mass > 150)) -VV_Zhf = ( && && (_mass < 60 || _mass > 120)) +VV_Zhf = ( && && (_mass < 60 || _mass > 120)) # RESOLVED signal region SR = ( && && (_mass > 90 && _mass < 150)) -VV_SR = ( && && (_mass > 60 && _mass < 120)) +VV_SR = ( && && (_mass > 60 && _mass < 120)) # event is in any of resolved CRs/SR all_RESOLVED = ( && ( || || ( && (_mass < 90 || _mass > 150)) || ( && (_mass > 90 && _mass < 150)))) @@ -76,6 +88,8 @@ SR_med_Zll = && && SR_med_Zll_0j = && && && SR_med_Zll_ge1j = && && && SR_high_Zll = && && +SR_high1_Zll = && && +SR_high2_Zll = && && ; e/u low/high pt (fit) SR_low_Zmm = && && @@ -88,6 +102,10 @@ SR_med_Zmm_ge1j = && && && SR_med_Zee_ge1j = && && && SR_high_Zmm = && && SR_high_Zee = && && +SR_high1_Zmm = && && +SR_high2_Zmm = && && +SR_high1_Zee = && && +SR_high2_Zee = && && Zlf_low_Zmm = && && Zlf_low_Zee = && && @@ -164,12 +182,21 @@ VV_SR_med_Zee_0j = && && && && && && VV_SR_med_Zee_ge1j = && && && VV_SR_high_Zmm = && && +VV_SR_high1_Zmm = && && +VV_SR_high2_Zmm = && && VV_SR_high_Zee = && && +VV_SR_high1_Zee = && && +VV_SR_high2_Zee = && && + VV_SR_medhigh_Zmm = && && VV_SR_medhigh_Zee = && && VV_SR_low_Zll = && && VV_SR_medhigh_Zll = && && +VV_SR_med_Zll = && && +VV_SR_high_Zll = && && +VV_SR_high1_Zll = && && +VV_SR_high2_Zll = && && VV_Zhf_low_Zll = && && VV_Zhf_med_Zll = && && @@ -178,6 +205,20 @@ VV_Zhf_med_Zll_ge1j = && && && && && VV_Zhf_medhigh_Zll = && && +VV_Zlf_low_Zmm = && && +VV_Zlf_low_Zee = && && +VV_Zlf_med_Zmm = && && +VV_Zlf_med_Zee = && && +VV_Zlf_high_Zmm = && && +VV_Zlf_high_Zee = && && + +VV_ttbar_low_Zmm = && && +VV_ttbar_low_Zee = && && +VV_ttbar_med_Zmm = && && +VV_ttbar_med_Zee = && && +VV_ttbar_high_Zmm = && && +VV_ttbar_high_Zee = && && + # multi DNN regions. Use same cut (for caching) and use subcut in plot regions definition @@ -269,27 +310,52 @@ Zee_lowpt = && #----- BOOST selection -----# - dijet_mass_BOOST = FatJet_Msoftdrop[Hbb_fjidx] # common selection to all boosted regions -BasicCuts_BOOST = (FatJet_Pt[Hbb_fjidx]>250 && abs(FatJet_eta[Hbb_fjidx])<2.5 && V_pt>250 && abs(TVector2::Phi_mpi_pi(V_phi-FatJet_phi[Hbb_fjidx]))>2.0) +BasicCuts_BOOST = (FatJet_Pt[Hbb_fjidx]>250 && abs(FatJet_eta[Hbb_fjidx])<2.5 && V_pt>250) +BasicCuts_BOOST1 = (FatJet_Pt[Hbb_fjidx]>250 && abs(FatJet_eta[Hbb_fjidx])<2.5 && V_pt>=250 && V_pt<400) +BasicCuts_BOOST2 = (FatJet_Pt[Hbb_fjidx]>250 && abs(FatJet_eta[Hbb_fjidx])<2.5 && V_pt>400) # boosted regions without overlap treatment + Zhf_BOOSTv2_base = ( && (V_mass>75 && V_mass<105) && FatJet_deepTagMD_bbvsLight[Hbb_fjidx]>0.8) + Signal_BOOSTv3_base = ( && (V_mass>75 && V_mass<105) && FatJet_deepTagMD_bbvsLight[Hbb_fjidx]>0.8) + +Signal_BOOSTv3_base_1 = ( && (V_mass>75 && V_mass<105) && FatJet_deepTagMD_bbvsLight[Hbb_fjidx]>0.8) +Signal_BOOSTv3_base_2 = ( && (V_mass>75 && V_mass<105) && FatJet_deepTagMD_bbvsLight[Hbb_fjidx]>0.8) + tt_BOOST_base = ( && > 50 && (V_mass<75 || V_mass>105) && FatJet_deepTagMD_bbvsLight[Hbb_fjidx]>0.8) + Zlf_BOOSTv11_base = ( && ( > 90 && < 150) && (V_mass>75 && V_mass<105) && FatJet_deepTagMD_bbvsLight[Hbb_fjidx]<0.8) +# flags for overlap treatment +# for one event, resolvedCR+resolvedSR+boostedCR+boostedSR in [0,1,2], resolvedCR+resolvedSR in [0,1], boostedCR+boostedSR in [0,1] +boostedCR = (&&(( && ( ( > 50 && < 90) || ( > 150) && < 250))||||)) +boostedSR = (&&(&&(>90&&<150))) + +boostedCR_VZ = (&&(( && ( ( > 50 && < 60) || ( > 120) && < 250))||||)) +boostedSR_VZ = (&&(&&(>60&&<120))) + # boosted regions with overlap treatment -Zhf_BOOSTv2 = ( && && ( ( > 50 && < 90) || ( > 150) && < 250)) +Zhf_BOOSTv2 = ( && && ( ( > 50 && < 90) || ( > 150) && < 250)) Signal_BOOSTv3 = ( && && ( > 90 && < 150)) + +Signal_BOOSTv3_1 = ( && && ( > 90 && < 150)) +Signal_BOOSTv3_2 = ( && && ( > 90 && < 150)) + tt_BOOST = ( && ) Zlf_BOOSTv11 = ( && ) +VZ_tt_BOOST = ( && ) +VZ_Zlf_BOOSTv11 = ( && ) + # boosted VZ -VZ_Zhf_BOOSTv2 = ( && && ( ( > 50 && < 60) || ( > 120 && < 250))) -VZ_Signal_BOOSTv3 = ( && && ( > 60 && < 120)) +VZ_Zhf_BOOSTv2 = ( && && ( ( > 50 && < 60) || ( > 120 && < 250))) +VZ_Signal_BOOSTv3 = ( && && ( > 60 && < 120)) +VZ_Signal_BOOSTv3_1 = ( && && ( > 60 && < 120)) +VZ_Signal_BOOSTv3_2 = ( && && ( > 60 && < 120)) # event is in any of the boosted CRs/SR all_BOOST = ( && ( ( && > 90 && < 150) || || ( && > 90 && < 150) || )) @@ -297,19 +363,43 @@ all_BOOST = ( && ( ( && && ( ( && > 60 && < 120) || || ( && > 60 && < 120) || )) SR_high_Zee_BOOST = && +VV_SR_high_Zee_BOOST = && +VV_SR_high1_Zee_BOOST = && +VV_SR_high2_Zee_BOOST = && +SR_high1_Zee_BOOST = && +SR_high2_Zee_BOOST = && + +VV_SR_high_Zmm_BOOST = && +VV_SR_high1_Zmm_BOOST = && +VV_SR_high2_Zmm_BOOST = && SR_high_Zmm_BOOST = && +SR_high1_Zmm_BOOST = && +SR_high2_Zmm_BOOST = && + ttbar_high_Zee_BOOST = && +VV_ttbar_high_Zee_BOOST = && ttbar_high_Zmm_BOOST = && +VV_ttbar_high_Zmm_BOOST = && Zlf_high_Zee_BOOST = && +VV_Zlf_high_Zee_BOOST = && Zlf_high_Zmm_BOOST = && +VV_Zlf_high_Zmm_BOOST = && Zhf_high_Zee_BOOST = && +VV_Zhf_high_Zmm_BOOST = && Zhf_high_Zmm_BOOST = && +VV_Zhf_high_Zee_BOOST = && SR_high_Zll_BOOST = +SR_high1_Zll_BOOST = +SR_high2_Zll_BOOST = ttbar_high_Zll_BOOST = Zlf_high_Zll_BOOST = Zhf_high_Zll_BOOST = +VV_SR_high_Zll_BOOST = +VV_SR_high1_Zll_BOOST = +VV_SR_high2_Zll_BOOST = + [mjjAnalysis] cut1_highpt = 0.49 cut2_highpt = 0.62 diff --git a/python/Zll2016config/datacards.ini b/python/Zll2016config/datacards.ini index 80ac65043..2166ffe7d 100644 --- a/python/Zll2016config/datacards.ini +++ b/python/Zll2016config/datacards.ini @@ -25,7 +25,7 @@ Mass = H_mass ; for V+HF control regions #bTagVar = [] #bTagVarRange = 2,0,1 -bTagVar = 2*(Jet_btagDeepB[]>0.8001)+(Jet_btagDeepB[]>0.4941)+(Jet_btagDeepB[]>0.8001) +bTagVar = 2*([]>)+([]>)+([]>) bTagVarRange = 5,0,5 ; for TT/V+LF CR: only 1 bin with normalization @@ -48,45 +48,36 @@ replace_cut_base_vector = [ ;!! -------------------------------------- ;!! Systematics ;!! -------------------------------------- + sys_cr = [ 'jer', - 'jerReg', - 'jesAbsoluteStat', - 'jesAbsoluteScale', - 'jesAbsoluteMPFBias', - 'jesFragmentation', - 'jesSinglePionECAL', - 'jesSinglePionHCAL', + 'jerRegSmear', + 'jerRegScale', + 'jesAbsolute', + 'jesAbsolute_2016', + 'jesBBEC1', + 'jesBBEC1_2016', + 'jesEC2', + 'jesEC2_2016', 'jesFlavorQCD', - 'jesRelativeJEREC1', - 'jesRelativeJEREC2', - 'jesRelativeJERHF', - 'jesRelativePtBB', - 'jesRelativePtEC1', - 'jesRelativePtEC2', - 'jesRelativePtHF', + 'jesHF', + 'jesHF_2016', 'jesRelativeBal', - 'jesRelativeFSR', - 'jesRelativeStatFSR', - 'jesRelativeStatEC', - 'jesRelativeStatHF', - 'jesPileUpDataMC', - 'jesPileUpPtRef', - 'jesPileUpPtBB', - 'jesPileUpPtEC1', - 'jesPileUpPtEC2', - 'jesPileUpPtHF', - 'jesPileUpMuZero', - 'jesPileUpEnvelope', + 'jesRelativeSample_2016', 'unclustEn', 'jmr', 'jms', - ] + ] sys_BDT = sys_Mjj = weightF_sys = [ + 'THU_ZH_acc', + 'THU_WH_acc', + 'THU_ggZH_acc', + 'CMS_vhbb_Vpt150_13TeV', + 'CMS_vhbb_Vpt250_13TeV', ; 'CMS_vhbb_DeepCSV_TT', ; 'CMS_vhbb_DeepCSV_TM', ; 'CMS_vhbb_DeepCSV_TL', @@ -118,7 +109,7 @@ weightF_sys = [ ; Jet PU ID 'CMS_vhbb_jetPUID', ; Prefire correction -; 'CMS_vhbb_PrefireWeight_13TeV', + 'CMS_vhbb_PrefireWeight_13TeV', ; LHE scale 'CMS_LHE_weights_scale_muR_ZH', 'CMS_LHE_weights_scale_muR_ggZH', @@ -155,10 +146,10 @@ weightF_sys = [ # 'CMS_vhbb_eff_e_MVAID_Zll_eta1_13TeV', ; muon SF ; broken somehow -; 'CMS_vhbb_eff_m_trigger_Zll_13TeV', -; 'CMS_vhbb_eff_m_ISO_Zll_13TeV', -; 'CMS_vhbb_eff_m_MVAID_Zll_13TeV', -; 'CMS_vhbb_eff_m_tracker_Zll_13TeV', +; 'CMS_vhbb_eff_m_trigger_Zll_13TeV', + 'CMS_vhbb_eff_m_ISO_Zll_13TeV', + 'CMS_vhbb_eff_m_MVAID_Zll_13TeV', +; 'CMS_vhbb_eff_m_tracker_Zll_13TeV', ; btag 'CMS_bTagWeightDeepBJES_13TeV_pt0_eta0', 'CMS_bTagWeightDeepBJES_13TeV_pt0_eta1', @@ -295,17 +286,16 @@ weightF_sys = [ 'CMS_bTagWeightDeepBcErr2_13TeV_pt4_eta0', 'CMS_bTagWeightDeepBcErr2_13TeV_pt4_eta1', 'CMS_bTagWeightDeepBcErr2_13TeV_pt4_eta2', -; -; 'bTagWeightDoubleB_mp_pt200to300', -; 'bTagWeightDoubleB_mp_pt300to400', -; 'bTagWeightDoubleB_mp_pt400to500', -; 'bTagWeightDoubleB_mp_pt500to600', -; 'bTagWeightDoubleB_mp_pt600toInf', -; 'bTagWeightDoubleB_hp_pt200to300', -; 'bTagWeightDoubleB_hp_pt300to400', -; 'bTagWeightDoubleB_hp_pt400to500', -; 'bTagWeightDoubleB_hp_pt500to600', -; 'bTagWeightDoubleB_hp_pt600toInf', + 'bTagWeightDoubleB_mp_pt200to300', + 'bTagWeightDoubleB_mp_pt300to400', + 'bTagWeightDoubleB_mp_pt400to500', + 'bTagWeightDoubleB_mp_pt500to600', + 'bTagWeightDoubleB_mp_pt600toInf', + 'bTagWeightDoubleB_hp_pt200to300', + 'bTagWeightDoubleB_hp_pt300to400', + 'bTagWeightDoubleB_hp_pt400to500', + 'bTagWeightDoubleB_hp_pt500to600', + 'bTagWeightDoubleB_hp_pt600toInf', ] @@ -348,16 +338,17 @@ Dict = systematicsnaming = removeWeightSystematics = {} +;List = , +#List = ,,, +List = , +;List = SR_high_Zee_BOOST,SR_high1_Zee_BOOST,SR_high2_Zee_BOOST,SR_high_Zmm_BOOST,SR_high1_Zmm_BOOST,SR_high2_Zmm_BOOST -List = , - -ListVHLegacy = SR_low_Zmm,SR_low_Zee,SR_med_Zmm_0j,SR_med_Zee_0j,SR_med_Zmm_ge1j,SR_med_Zee_ge1j,SR_high_Zmm,SR_high_Zee,Zlf_low_Zmm,Zlf_low_Zee,Zlf_med_Zmm,Zlf_med_Zee,Zlf_high_Zmm,Zlf_high_Zee,Zhf_low_Zmm,Zhf_low_Zee,Zhf_med_Zmm,Zhf_med_Zee,Zhf_high_Zmm,Zhf_high_Zee,ttbar_low_Zmm,ttbar_low_Zee,ttbar_med_Zmm,ttbar_med_Zee,ttbar_high_Zmm,ttbar_high_Zee -List_BOOSToverlap = SR_high_Zee_BOOST,SR_high_Zmm_BOOST,Zlf_high_Zee_BOOST,Zlf_high_Zmm_BOOST,Zhf_high_Zmm_BOOST,Zhf_high_Zee_BOOST,ttbar_high_Zmm_BOOST,ttbar_high_Zee_BOOST +ListVHLegacy = SR_low_Zmm,SR_low_Zee,SR_med_Zmm_0j,SR_med_Zee_0j,SR_med_Zmm_ge1j,SR_med_Zee_ge1j,SR_high_Zmm,SR_high1_Zmm,SR_high2_Zmm,SR_high_Zee,SR_high1_Zee,SR_high2_Zee,Zlf_low_Zmm,Zlf_low_Zee,Zlf_med_Zmm,Zlf_med_Zee,Zlf_high_Zmm,Zlf_high_Zee,Zhf_low_Zmm,Zhf_low_Zee,Zhf_med_Zmm,Zhf_med_Zee,Zhf_high_Zmm,Zhf_high_Zee,ttbar_low_Zmm,ttbar_low_Zee,ttbar_med_Zmm,ttbar_med_Zee,ttbar_high_Zmm,ttbar_high_Zee -ListVH = SR_low_Zmm,SR_low_Zee,SR_medhigh_Zmm,SR_medhigh_Zee,Zlf_low_Zmm,Zlf_low_Zee,Zlf_medhigh_Zmm,Zlf_medhigh_Zee,Zhf_low_Zmm,Zhf_low_Zee,Zhf_medhigh_Zmm,Zhf_medhigh_Zee,ttbar_low_Zmm,ttbar_low_Zee,ttbar_medhigh_Zmm,ttbar_medhigh_Zee -ListVHLegacyNjetCR = SR_low_Zmm,SR_low_Zee,SR_med_Zmm_0j,SR_med_Zee_0j,SR_med_Zmm_ge1j,SR_med_Zee_ge1j,SR_high_Zmm,SR_high_Zee,Zlf_low_Zmm,Zlf_low_Zee,Zlf_med_Zmm_0j,Zlf_med_Zee_0j,Zlf_med_Zmm_ge1j,Zlf_med_Zee_ge1j,Zlf_high_Zmm,Zlf_high_Zee,Zhf_low_Zmm,Zhf_low_Zee,Zhf_med_Zmm_0j,Zhf_med_Zee_0j,Zhf_med_Zmm_ge1j,Zhf_med_Zee_ge1j,Zhf_high_Zmm,Zhf_high_Zee,ttbar_low_Zmm,ttbar_low_Zee,ttbar_med_Zmm_0j,ttbar_med_Zee_0j,ttbar_med_Zmm_ge1j,ttbar_med_Zee_ge1j,ttbar_high_Zmm,ttbar_high_Zee +ListVHLegacy_VZ = VV_SR_low_Zmm,VV_SR_low_Zee,VV_SR_med_Zmm_0j,VV_SR_med_Zee_0j,VV_SR_med_Zmm_ge1j,VV_SR_med_Zee_ge1j,VV_SR_high_Zmm,VV_SR_high1_Zmm,VV_SR_high2_Zmm,VV_SR_high_Zee,VV_SR_high1_Zee,VV_SR_high2_Zee,VV_Zlf_low_Zmm,VV_Zlf_low_Zee,VV_Zlf_med_Zmm,VV_Zlf_med_Zee,VV_Zlf_high_Zmm,VV_Zlf_high_Zee,VV_Zhf_low_Zmm,VV_Zhf_low_Zee,VV_Zhf_med_Zmm,VV_Zhf_med_Zee,VV_Zhf_high_Zmm,VV_Zhf_high_Zee,VV_ttbar_low_Zmm,VV_ttbar_low_Zee,VV_ttbar_med_Zmm,VV_ttbar_med_Zee,VV_ttbar_high_Zmm,VV_ttbar_high_Zee -ListMjj = Mjj_SR_low_Zee_0,Mjj_SR_low_Zee_1,Mjj_SR_low_Zee_2,Mjj_SR_low_Zee_3,Mjj_SR_low_Zmm_0,Mjj_SR_low_Zmm_1,Mjj_SR_low_Zmm_2,Mjj_SR_low_Zmm_3,Mjj_SR_medhigh_Zee_0,Mjj_SR_medhigh_Zee_1,Mjj_SR_medhigh_Zee_2,Mjj_SR_medhigh_Zee_3,Mjj_SR_medhigh_Zmm_0,Mjj_SR_medhigh_Zmm_1,Mjj_SR_medhigh_Zmm_2,Mjj_SR_medhigh_Zmm_3 +List_BOOSToverlap = SR_high_Zee_BOOST,SR_high1_Zee_BOOST,SR_high2_Zee_BOOST,SR_high_Zmm_BOOST,SR_high1_Zmm_BOOST,SR_high2_Zmm_BOOST,Zlf_high_Zee_BOOST,Zlf_high_Zmm_BOOST,Zhf_high_Zmm_BOOST,Zhf_high_Zee_BOOST,ttbar_high_Zmm_BOOST,ttbar_high_Zee_BOOST +List_BOOSToverlap_VZ = VV_SR_high_Zee_BOOST,VV_SR_high1_Zee_BOOST,VV_SR_high2_Zee_BOOST,VV_SR_high_Zmm_BOOST,VV_SR_high1_Zmm_BOOST,VV_SR_high2_Zmm_BOOST,VV_Zlf_high_Zee_BOOST,VV_Zlf_high_Zmm_BOOST,VV_Zhf_high_Zmm_BOOST,VV_Zhf_high_Zee_BOOST,VV_ttbar_high_Zmm_BOOST,VV_ttbar_high_Zee_BOOST ; Multi-classifier analysis @@ -384,15 +375,25 @@ VVbackgrounds = [] #!! DNN binning #!! ------------------------- -bins_low = -bins_med = -bins_high = -bins_medhigh = - -VV_bins_low = -VV_bins_med = -VV_bins_high = -VV_bins_medhigh = +bins_low = [0.00000, 0.29858, 0.41659, 0.50297, 0.57041, 0.63439, 0.69006, 0.74006, 0.78282, 0.82044, 0.85327, 0.88228, 0.90859, 0.93282, 0.95730, 1.00001] +bins_med = [0.00000, 0.28029, 0.40821, 0.50536, 0.58206, 0.65627, 0.72542, 0.77625, 0.81572, 0.84784, 0.87596, 0.89920, 0.91885, 0.93730, 0.95630, 1.00001] +bins_high = [0.00000, 0.52232, 0.72000, 0.83890, 0.90239, 0.93744, 0.95997, 0.97576, 1.00001] +bins_high1 = [0.00000, 0.54610, 0.75543, 0.86237, 0.91856, 0.95088, 0.97135, 1.00001] +bins_high2 = [0.00000, 0.71599, 0.89852, 0.95222, 0.97790, 1.00001] +bins_high_BOOST = [-1.00000, -0.06310, 0.07470, 0.18596, 0.29922, 1.00001] +bins_high1_BOOST = [-1.00000, -0.09012, 0.03488, 0.14182, 0.25338, 1.00001] +bins_high2_BOOST = [-1.00000, 0.00734, 0.13636, 0.26092, 0.36762, 1.00001] +bins_medhigh = [] + +VV_bins_low = [0.00000, 0.28826, 0.39329, 0.46946, 0.54580, 0.61448, 0.68082, 0.73107, 0.77369, 0.80482, 0.83235, 0.85753, 0.88100, 0.90294, 0.92576, 1.00001] +VV_bins_med = [0.00000, 0.20438, 0.38828, 0.52003, 0.62585, 0.69632, 0.74092, 0.78422, 0.81221, 0.83985, 0.86351, 0.88429, 0.90402, 0.92162, 0.94090, 1.00001] +VV_bins_high = [0.00000, 0.22517, 0.52493, 0.64166, 0.72925, 0.77702, 0.82411, 0.86009, 0.88545, 0.90245, 0.92018, 0.93364, 0.94831, 0.95796, 0.97122, 1.00001] +VV_bins_high1 = [0.00000, 0.20563, 0.51108, 0.64144, 0.73254, 0.77355, 0.82149, 0.85906, 0.88311, 0.90221, 0.91991, 0.93071, 0.94675, 0.95652, 0.97122, 1.00001] +VV_bins_high2 = [0.00000, 0.65717, 0.85443, 0.91942, 0.95448, 1.00001] +VV_bins_high_BOOST = [-1.00000, -0.04112, 0.14158, 0.29404, 0.50728, 1.00001] +VV_bins_high1_BOOST = [-1.00000, -0.07168, 0.12616, 0.26548, 0.49372, 1.00001] +VV_bins_high2_BOOST = [-1.00000, 0.02438, 0.23134, 0.35236, 0.57682, 1.00001] +VV_bins_medhigh = [] #!! ------------------------- #!! DNN variable @@ -430,8 +431,26 @@ BDToutname_BOOST = BDT_Zll_BOOSTFinal_wdB_2016.Nominal [dc:SR_high_Zmm_BOOST] var = BDT_Zll_BOOSTFinal_wdB_2016.Nominal +rebin_method = list +rebin_list = +signal = +background = +data = +type = BDT + +[dc:SR_high1_Zmm_BOOST] +var = BDT_Zll_BOOSTFinal_wdB_2016.Nominal +rebin_method = list +rebin_list = +signal = +background = +data = +type = BDT + +[dc:SR_high2_Zmm_BOOST] +var = BDT_Zll_BOOSTFinal_wdB_2016.Nominal rebin_method = list -rebin_list = +rebin_list = signal = background = data = @@ -440,12 +459,84 @@ type = BDT [dc:SR_high_Zee_BOOST] var = BDT_Zll_BOOSTFinal_wdB_2016.Nominal rebin_method = list -rebin_list = +rebin_list = signal = background = data = type = BDT +[dc:SR_high1_Zee_BOOST] +var = BDT_Zll_BOOSTFinal_wdB_2016.Nominal +rebin_method = list +rebin_list = +signal = +background = +data = +type = BDT + +[dc:SR_high2_Zee_BOOST] +var = BDT_Zll_BOOSTFinal_wdB_2016.Nominal +rebin_method = list +rebin_list = +signal = +background = +data = +type = BDT + +[dc:VV_SR_high_Zmm_BOOST] +var = BDT_VZ_Zll_BOOSTFinal_wdB_2016.Nominal +rebin_method = list +rebin_list = +signal = +background = +data = +type = BDT + +[dc:VV_SR_high1_Zmm_BOOST] +var = BDT_VZ_Zll_BOOSTFinal_wdB_2016.Nominal +rebin_method = list +rebin_list = +signal = +background = +data = +type = BDT + +[dc:VV_SR_high2_Zmm_BOOST] +var = BDT_VZ_Zll_BOOSTFinal_wdB_2016.Nominal +rebin_method = list +rebin_list = +signal = +background = +data = +type = BDT + +[dc:VV_SR_high_Zee_BOOST] +var = BDT_VZ_Zll_BOOSTFinal_wdB_2016.Nominal +rebin_method = list +rebin_list = +signal = +background = +data = +type = BDT + +[dc:VV_SR_high1_Zee_BOOST] +var = BDT_VZ_Zll_BOOSTFinal_wdB_2016.Nominal +rebin_method = list +rebin_list = +signal = +background = +data = +type = BDT + +[dc:VV_SR_high2_Zee_BOOST] +var = BDT_VZ_Zll_BOOSTFinal_wdB_2016.Nominal +rebin_method = list +rebin_list = +signal = +background = +data = +type = BDT + [dc:Zlf_high_Zmm_BOOST] var = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] signal = @@ -455,6 +546,15 @@ type = cr rebin_method = list rebin_list = [0.0,0.4,0.8] +[dc:VV_Zlf_high_Zmm_BOOST] +var = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] +signal = +background = +data = +type = cr +rebin_method = list +rebin_list = [0.0,0.4,0.8] + [dc:Zlf_high_Zee_BOOST] var = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] signal = @@ -464,6 +564,15 @@ type = cr rebin_method = list rebin_list = [0.0,0.4,0.8] +[dc:VV_Zlf_high_Zee_BOOST] +var = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] +signal = +background = +data = +type = cr +rebin_method = list +rebin_list = [0.0,0.4,0.8] + [dc:Zhf_high_Zmm_BOOST] var = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] signal = @@ -473,6 +582,15 @@ type = cr rebin_method = list rebin_list = [0.8,0.97,1.00001] +[dc:VV_Zhf_high_Zmm_BOOST] +var = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] +signal = +background = +data = +type = cr +rebin_method = list +rebin_list = [0.8,0.97,1.00001] + [dc:Zhf_high_Zee_BOOST] var = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] signal = @@ -482,6 +600,15 @@ type = cr rebin_method = list rebin_list = [0.8,0.97,1.00001] +[dc:VV_Zhf_high_Zee_BOOST] +var = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] +signal = +background = +data = +type = cr +rebin_method = list +rebin_list = [0.8,0.97,1.00001] + [dc:ttbar_high_Zmm_BOOST] var = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] signal = @@ -491,6 +618,15 @@ type = cr rebin_method = list rebin_list = [0.8,0.97,1.00001] +[dc:VV_ttbar_high_Zmm_BOOST] +var = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] +signal = +background = +data = +type = cr +rebin_method = list +rebin_list = [0.8,0.97,1.00001] + [dc:ttbar_high_Zee_BOOST] var = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] signal = @@ -500,18 +636,34 @@ type = cr rebin_method = list rebin_list = [0.8,0.97,1.00001] +[dc:VV_ttbar_high_Zee_BOOST] +var = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] +signal = +background = +data = +type = cr +rebin_method = list +rebin_list = [0.8,0.97,1.00001] ;ELECTRON REGION ;low pt [dc:Zlf_low_Zee] -var = -range = +var = V_pt +range = 15,75.0,150.0 signal = background = data = type = cr +[dc:VV_Zlf_low_Zee] +var = V_pt +range = 15,75.0,150.0 +signal = +background = +data = +type = cr + [dc:Zhf_low_Zee] var = range = @@ -521,13 +673,21 @@ data = type = cr [dc:ttbar_low_Zee] -var = -range = +var = V_pt +range = 15,75.0,150.0 signal = background = data = type = cr +[dc:VV_ttbar_low_Zee] +var = V_pt +range = 15,75.0,150.0 +signal = +background = +data = +type = cr + [dc:SR_low_Zee] var = range = @@ -535,19 +695,27 @@ signal = background = data = type = BDT -rebin_method = fixed +rebin_method = list rebin_list = ;med pt [dc:Zlf_med_Zee] -var = -range = +var = V_pt +range = 10,150.0,250.0 signal = background = data = type = cr +[dc:VV_Zlf_med_Zee] +var = V_pt +range = 10,150.0,250.0 +signal = +background = +data = +type = cr + [dc:Zhf_med_Zee] var = range = @@ -557,13 +725,21 @@ data = type = cr [dc:ttbar_med_Zee] -var = -range = +var = V_pt +range = 10,150.0,250.0 signal = background = data = type = cr +[dc:VV_ttbar_med_Zee] +var = V_pt +range = 10,150.0,250.0 +signal = +background = +data = +type = cr + [dc:SR_med_Zee] var = range = @@ -575,8 +751,8 @@ rebin_method = fixed rebin_list = [dc:Zlf_med_Zee_0j] -var = -range = +var = V_pt +range = 10,150.0,250.0 signal = background = data = @@ -610,8 +786,8 @@ rebin_list = [dc:Zlf_med_Zee_ge1j] -var = -range = +var = V_pt +range = 10,150.0,250.0 signal = background = data = @@ -626,8 +802,8 @@ data = type = cr [dc:ttbar_med_Zee_ge1j] -var = -range = +var = V_pt +range = 10,150.0,250.0 signal = background = data = @@ -643,17 +819,34 @@ type = BDT rebin_method = fixed rebin_list = +[dc:VV_SR_med_Zee_ge1j] +var = +range = +signal = +background = +data = +type = BDT +rebin_method = list +rebin_list = ;high pt [dc:Zlf_high_Zee] -var = -range = +var = V_pt +range = 35,250.0,2000.0 signal = background = data = type = cr +[dc:VV_Zlf_high_Zee] +var = V_pt +range = 35,250.0,2000.0 +signal = +background = +data = +type = cr + [dc:Zhf_high_Zee] var = range = @@ -662,9 +855,17 @@ background = data = type = cr +[dc:VV_Zhf_high_Zee] +var = +range = +signal = +background = +data = +type = cr + [dc:ttbar_high_Zee] -var = -range = +var = V_pt +range = 35,250.0,2000.0 signal = background = data = @@ -680,10 +881,30 @@ type = BDT rebin_method = fixed rebin_list = +[dc:SR_high1_Zee] +var = +range = +signal = +background = +data = +type = BDT +rebin_method = list +rebin_list = + +[dc:SR_high2_Zee] +var = +range = +signal = +background = +data = +type = BDT +rebin_method = list +rebin_list = + # medhigh = >150 [dc:Zlf_medhigh_Zee] -var = -range = +var = V_pt +range = 10,150.0,250.0 signal = background = data = @@ -698,8 +919,8 @@ data = type = cr [dc:ttbar_medhigh_Zee] -var = -range = +var = V_pt +range = 10,150.0,250.0 signal = background = data = @@ -720,13 +941,21 @@ rebin_list = ;low pt [dc:Zlf_low_Zmm] -var = -range = +var = V_pt +range = 15,75.0,150.0 signal = background = data = type = cr +[dc:VV_Zlf_low_Zmm] +var = V_pt +range = 15,75.0,150.0 +signal = +background = +data = +type = cr + [dc:Zhf_low_Zmm] var = range = @@ -736,13 +965,21 @@ data = type = cr [dc:ttbar_low_Zmm] -var = -range = +var = V_pt +range = 15,75.0,150.0 signal = background = data = type = cr +[dc:VV_ttbar_low_Zmm] +var = V_pt +range = 15,75.0,150.0 +signal = +background = +data = +type = cr + [dc:SR_low_Zmm] var = range = @@ -756,13 +993,21 @@ rebin_list = ;med pt [dc:Zlf_med_Zmm] -var = -range = +var = V_pt +range = 10,150.0,250.0 signal = background = data = type = cr +[dc:VV_Zlf_med_Zmm] +var = V_pt +range = 10,150.0,250.0 +signal = +background = +data = +type = cr + [dc:Zhf_med_Zmm] var = range = @@ -772,13 +1017,21 @@ data = type = cr [dc:ttbar_med_Zmm] -var = -range = +var = V_pt +range = 10,150.0,250.0 signal = background = data = type = cr +[dc:VV_ttbar_med_Zmm] +var = V_pt +range = 10,150.0,250.0 +signal = +background = +data = +type = cr + [dc:SR_med_Zmm] var = range = @@ -790,8 +1043,8 @@ rebin_method = fixed rebin_list = [dc:Zlf_med_Zmm_0j] -var = -range = +var = V_pt +range = 10,150.0,250.0 signal = background = data = @@ -806,8 +1059,8 @@ data = type = cr [dc:ttbar_med_Zmm_0j] -var = -range = +var = V_pt +range = 10,150.0,250.0 signal = background = data = @@ -823,9 +1076,29 @@ type = BDT rebin_method = fixed rebin_list = +[dc:VV_SR_med_Zmm_0j] +var = +range = +signal = +background = +data = +type = BDT +rebin_method = list +rebin_list = + +[dc:VV_SR_med_Zee_0j] +var = +range = +signal = +background = +data = +type = BDT +rebin_method = list +rebin_list = + [dc:Zlf_med_Zmm_ge1j] -var = -range = +var = V_pt +range = 10,150.0,250.0 signal = background = data = @@ -840,8 +1113,8 @@ data = type = cr [dc:ttbar_med_Zmm_ge1j] -var = -range = +var = V_pt +range = 10,150.0,250.0 signal = background = data = @@ -857,16 +1130,34 @@ type = BDT rebin_method = fixed rebin_list = +[dc:VV_SR_med_Zmm_ge1j] +var = +range = +signal = +background = +data = +type = BDT +rebin_method = list +rebin_list = + ;high pt [dc:Zlf_high_Zmm] -var = -range = +var = V_pt +range = 35,250.0,2000.0 signal = background = data = type = cr +[dc:VV_Zlf_high_Zmm] +var = V_pt +range = 35,250.0,2000.0 +signal = +background = +data = +type = cr + [dc:Zhf_high_Zmm] var = range = @@ -875,14 +1166,38 @@ background = data = type = cr +[dc:VV_Zhf_high_Zmm] +var = +range = +signal = +background = +data = +type = cr + [dc:ttbar_high_Zmm] -var = -range = +var = V_pt +range = 35,250.0,2000.0 signal = background = data = type = cr +[dc:VV_ttbar_high_Zmm] +var = V_pt +range = 35,250.0,2000.0 +signal = +background = +data = +type = cr + +[dc:VV_ttbar_high_Zee] +var = V_pt +range = 35,250.0,2000.0 +signal = +background = +data = +type = cr + [dc:SR_high_Zmm] var = range = @@ -893,6 +1208,88 @@ type = BDT rebin_method = fixed rebin_list = +[dc:VV_SR_high_Zmm] +var = +range = +signal = +background = +data = +type = BDT +rebin_method = list +rebin_list = + +[dc:VV_SR_high_Zee] +var = +range = +signal = +background = +data = +type = BDT +rebin_method = list +rebin_list = + +[dc:VV_SR_high1_Zee] +var = +range = +signal = +background = +data = +type = BDT +rebin_method = list +rebin_list = + +[dc:VV_SR_high2_Zee] +var = +range = +signal = +background = +data = +type = BDT +rebin_method = list +rebin_list = + +[dc:VV_SR_high1_Zmm] +var = +range = +signal = +background = +data = +type = BDT +rebin_method = list +rebin_list = + +[dc:VV_SR_high2_Zmm] +var = +range = +signal = +background = +data = +type = BDT +rebin_method = list +rebin_list = + +[dc:SR_high1_Zmm] +var = +range = +signal = +background = +data = +type = BDT +rebin_method = list +rebin_list = + + +[dc:SR_high2_Zmm] +var = +range = +signal = +background = +data = +type = BDT +rebin_method = list +rebin_list = + + # medhigh [dc:Zlf_medhigh_Zmm] @@ -998,6 +1395,14 @@ background = data = type = cr +[dc:VV_Zhf_med_Zee] +var = +range = +signal = +background = +data = +type = cr + [dc:VV_Zhf_medhigh_Zmm] var = range = @@ -1006,6 +1411,13 @@ background = data = type = cr +[dc:VV_Zhf_med_Zmm] +var = +range = +signal = +background = +data = +type = cr [Multi] diff --git a/python/Zll2016config/event_counts.dat b/python/Zll2016config/event_counts.dat index c18766012..8b7e0f6f7 100644 --- a/python/Zll2016config/event_counts.dat +++ b/python/Zll2016config/event_counts.dat @@ -1 +1 @@ -{'WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_3_f39b1a7e6b19108158a1dab16d6cc7ba6f6b11c7a43494f3ce455cdd.root': 27L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_6_39ed70afe620c623ab432a8ccdd7b8daeed6d8acd42b5574e821ef32.root': 173L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_4_b151668b210a36e10fcf95766aec18b672b1ca93718fd9650568c72c.root': 56L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_5_cce185cd536619fc069319b09fcc9ab5272a4f97d9f16d9975d81c3a.root': 68L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_7_d384b65ee9bce463ab24eed9ea7252cb803814636f5839d5dc99b00d.root': 184L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_8_94ab1960aacfe6b658ba463d0aaed78413e5fc3a6214e4ca22057dfe.root': 207L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_1_2297a171dca388374479109f72227c75ea4504f7d03679df75e29ba0.root': 86L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_1_5703ea0985fffe6031512fc73068adab2dc3e1cf90f37774266f6bd3.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_6_245eaf27d2db6caaf2d7183d03f683a905d4400407c2b4283544281a.root': 80L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_2_81d86dff59c75bb2d615efc87ea961ff23cd1974cd585456c0d56ffe.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_5_69ed48716128bb69855a0df09a0c9fd7f62f8b034a941790b40e7628.root': 157L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_2_4fed1ad070c8d6700782fdccaa88b260af5b979908a20b1b3872ad4e.root': 104L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_4_ba8b00fc25e0199db465d8c1b1ec364c7ec3b305eb8165240c529aff.root': 139L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_3_d09146b0688f6c5f45e4d47b61ada2396cc79ab0eab700d3ccb71b5a.root': 120L}, 'ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213326_0000_2_7023135e9d95ea61207e1e762e7f8c276392a5fc3049cd9178f5a19a.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213326_0000_4_0b8d8d3f90a73743ecda13fc2e1f41c1cb5f094326c0ab5d7e35ad2a.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213326_0000_1_fd4c805670bae0e9c48f1a1372fd797efdc0a5f5b2245728bd87b842.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213326_0000_3_754e4352422617dd448bda021f6ced2fa9fbde2bf46fa7e7e0b92526.root': 2L}, 'ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_12_94bf14ca0fec2b78d49da1053287b43104394927730452fd3ddaf0b8.root': 44L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_1_7a23df555b6b9c2bb5122a03bbb9074d915ab13f38d03294ab93b3ee.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_7_6bcf9287f8c3f5b6e5d0117035797c0b9f11ae813b6bba35dff7c6a7.root': 740L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_9_52ff02a99df9011b089bf9cadb3478ffaa3edcb1a08ff994a9393fa4.root': 806L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_4_4c79ecbd89ce843c7b123d9dd65de6cf2a3cb11acbecf6c7c4f71c7f.root': 633L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_27_591f4a98c1ae36fe4cd86e301ca183c24d8a81d90cf555fb406f2283.root': 556L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_10_84de7463877e81227fa2cc53556b85ba3ca301188e740724a025cc9a.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_18_e87784187e4bc9f6e88f8b46d7850985e94ac9af7f9358723acc7f54.root': 234L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_17_2b399af008288719eb99bcc22b9596cd8ba663f49d6bbd8f6788f89b.root': 197L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_6_ff47515da767a7237fe5871c6915e4f055feff6c3c7e6a857fd5c298.root': 702L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_11_369b9dd4a437c449a2c14f2e244ee1ca2133f34af2892a821c6b605c.root': 17L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_8_a25b65e5bc633bdea490cfc20d537d0ae62282bcc0675d49db56ba45.root': 773L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_5_012a89bf4807ff81aba3a68725608d8f45e9f620533e50b93e394530.root': 663L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_20_887baa35015d03ef587660a31350515ad92dbb75b009afe92dd284a3.root': 329L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_13_7fefb1c9cf4cb8b4ac51bcc394ffd8f2e4ba0ed3ad1f00f82aacb2f3.root': 73L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_26_bc29161c0491a4b503ab35b6758b683e512593825c0fc77c3bfe1556.root': 514L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_14_672f8086dc50fb0029dc4f02df56aca1adb50c00034b56118ec64d14.root': 79L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_3_7a2bdf3b7de543f63d40b52eebe357840986015c418671e8f6261d31.root': 591L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_25_afde4bedf79491c9b119642ddfba1470382bc14565c491893b2c2b8e.root': 490L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_16_1334d7799c7e9a3fac4307851a622e720a1f8ff0caff42322703eb72.root': 165L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_23_990db23757085eb1ed027894f8f5a8496c62c2dafaa462ad3c8c07ba.root': 432L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_24_298070d06c5f2a42933222df0b9f850a51ee1e0998156d920c5c0a71.root': 461L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_19_2e926d5dfe9a9f65691e3b43a533d75f9be6ee5fbecb3469acfb4b83.root': 256L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_22_0bc75b37b0f149c6bafd3c13595efd484043857a33969260e76976d3.root': 397L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_15_536ef1861670ecdbc094d8e13f545b11cb1e0ecda4e98282910e6357.root': 118L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_2_7e63633bd4f37a3b46ea9662ab164745d725b5f3c97d1bb29e4e6309.root': 305L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_21_97bd350cb9805a47aab8f76e9f4dae4eb8b847aba7fe698c46fec162.root': 363L}, 'DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210344_0000_1_02264589f0a5d3d0a92745868847023a90a4c165f95d7ad88b495d2f.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_4_c999f19905aa2d7e9c6cffc6e6bac01ace1a6cef80b000d2721c216d.root': 288361L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210344_0000_2_b5bf65130886e798f4420c596f0672a3be1d4312bdf9d3bf7eca5847.root': 163L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210344_0000_6_50b723c3d902b438d948b131144418ba6e2b58f14bebf8fa1682fe49.root': 246228L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_5_c715c6e822f84fd191d510c7e2c995d3796d085202c3d73d5f0018b7.root': 430848L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_6_ffd6252191f23d603a3a28301690f2046188e981aa3e221baac33fe0.root': 616585L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210344_0000_4_ec3fc34495e3ec3280c7828e2b83677a1c2449ec690ac1ad0b99f880.root': 108331L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_7_5d7aacfbfdedac486d4c55aeb7717fd961f201d763c22ffce55bc9f0.root': 770587L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_1_995e2e9a6e1bc1b68075980eb8e895f52cf8f73f2506849e3ed90962.root': 250333L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_2_8802ac19928cd2d5794b527d7b2899779122fdcc7a2c1c6698b0912c.root': 250917L}, 'WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_31_ccae5be5dfd9b9a45fe23bf411a8d47d1e0d1579951558aac41206f3.root': 353L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_1_dc7e7925433735645d4a9eb90fe508e5537310ba87021cb86edf158e.root': 43L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_19_32e3a90d88aa085f2d645d39d0a173533631eda3fea7a384043fa15b.root': 127L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_22_104ab16b8d8e9afc9631304b2914842968066be032f48b33a92752f8.root': 297L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_6_8331abbf7be15ec62365921ca1b6ea4e0b88830b92a1302537c2658c.root': 379L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_5_642ceed03b6f61173fd5848f2e89d64dfaa446331a212348e74e4905.root': 22L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_7_a10d068b82e31813ca68a19ac185b21a5d74be8949529356c2bddf28.root': 175L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_19_c0e7263d7b100af324938bce8ae659c3f93d34f2222d8a016ef1e7c3.root': 266L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_16_a97f5d4e9366c5b616183f7d2eb8d0ecb9f7935d8dc33aea3d93229c.root': 111L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_29_78c6114a2f1e5b08532633742f3a5d336955a61b08cd3b688747b5bb.root': 337L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_16_906e0dc5e9eaf82077afd083dce861732db5e770ce92aa524e0b7192.root': 248L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_27_19da015892e2e4d8924b817305ffa3cbfdd9d7cc2f5b03ce0b8a4c54.root': 332L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_3_83da6a1659f06129bd2544d7f536ef73f4aff30c03ff2597c05d2922.root': 138L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_12_363fcc6ff2b7aca3a1cf23c74e37942bbeeba35f890e28285c0e8d91.root': 218L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_1_cf6f6b1a4a7a3be80c42f1c9975642d1ccd8dff74429a09605b3fb67.root': 201L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_17_09549b25b1774b5ee5a08fc75a5426df6bb10d237dda845357f5e191.root': 122L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_14_62ac9ed8d0feaa35ec75a190fe7b1c3e1356b49ec4bfc3d8c037f883.root': 235L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_13_f066e111a8ddea976865e7a4de33c221941021cfd3af8630a4586c1e.root': 88L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_15_f1023e3b080bd190b05d48b48ddc7cbed8a9a3e8dc44cbc2f5106b58.root': 243L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_28_96067d128d1a56094601d2658ae2f86a0d4ef09982b1c76863478651.root': 334L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_2_7fe63e57be4268786b1fa2f3ace82cabfd16ef26e66ca70752899df1.root': 277L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_24_3fb43d2af42dbe31be7eec0f1775921237891f2376740a6ff4086b15.root': 314L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_18_77c33d117108643be369cff59815229ac6c884e053db2f0f42a5d617.root': 126L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_8_447ae9ca3b1822ac4fc6b62955d7949717014c4c8856b1dac87ef6c5.root': 394L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_3_f411a10929ac9ed284af9a97e251244e86d267c2ebc0ac2f48e58950.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_21_162c18755901325e173ec94f9687854d952793eba2565d1998206388.root': 286L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_12_30fdc8911cc56f8bf1efab527a64a8352f6d2f3061230de2412ecdd5.root': 77L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_23_e5a9f51b6d8df005edfedfa0c06b967c4f5c033b878b1dc9f15ea8ce.root': 304L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_25_e83e58baecfb8b733567592207a083b8763b4453373808da8b328001.root': 318L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_7_d6fa153422bec782a92e00cfb82391e9d4770f3a5992be29d266ce1e.root': 388L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_11_56e1e4b8a410f0cddf03f34a4257adc11e098ffc06f5140a805b7bfd.root': 213L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_13_45cdc6c5c9e17fae76e93c0b7b11492cca1403b1639b0b4abcb9e527.root': 225L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_15_ecec0c9b31234e6225ee05876d2a83e8415e578fb5a264a6225bc6d7.root': 102L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_3_70274aab22c341157555628e22b2981ec7c01c7243680767edb65b2a.root': 342L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_8_80c6e3375039f15c64281277ecb16f747afda3dcb94253685d25d913.root': 35L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_2_86c9888d8907c1022086c7dc75a75fdbe425258ec995a65187aaae31.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_9_74d53e9272a5905eb55d6e1e52c097e41b08b1870e54d4496ed03f4e.root': 399L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_11_a24241db62f4e4026c9c1df8f6d703cafb3df631ff548bbbb96f5d7b.root': 61L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_4_4b36f4184ddb8ee3ae488e5555a6771643df4addf07fa709d941b1ac.root': 12L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_18_756f8493d7ddcfd7d93a029e59c92d7717e86e1f2bc9d6a951a1043d.root': 262L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_9_fc037da09fb16828e56d76e429cc48ece6745793c98e07a736988793.root': 188L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_2_dd9d773bf8307e2385f503d27094df42008b42d1e78b5b7df85a9da8.root': 132L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_26_e86fdb8ece0f41b67fec416e7d8324cf02892a6b0fd9353cf0c6a1d2.root': 325L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_7_dfbd27fb75e9e7f70817643cc01b7a7e17107826afd19e613f3c1104.root': 31L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_1_8f93135d825c756445812d2b176dc43359291cb08c4f42543af638cb.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_5_1e0a009f95712c711787974319722e0cb44b8a73d0aa5b9cd18601ea.root': 148L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_14_0cbce65fbaea2fadfa6374f04f9f7b934f6ae522dfbbcf89a1930505.root': 92L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_4_4d7ecc169b13e56f24894406d9c793edcd5fd650355fe4ed5ce808bd.root': 357L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_6_d4fa32172fa13429748a6b15e6ff2d5ff165d3158a33bac8e6034dfb.root': 160L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_10_913ee14aaebceae4768395a94fdfc1bb2b0532fb664e9357716e13dd.root': 49L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_17_87a2a8b081bf9d31015d2b464e05a28de66e9e4496a8c9f8a9309ae0.root': 260L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_6_622a8b7cecf2dcf9ddde31cb43cc48c800e6b8c32ec81bbafb341f67.root': 27L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_30_e0731860c3ff7c6b350a0c409e743f7e99fa59cc0a93a7ade63b6772.root': 345L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_4_dfa005f30f8f7ca334fbb115563183c4f4a3fd29880a4b380a5caa30.root': 148L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_10_312a5500ddb1e2c03a94a9d35a311f1be68e0fc127b59a18cf716a9f.root': 201L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_5_fc38df7ef22610b5dc171a68b55d8212f1252f139eea6fc9d8a2369c.root': 368L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_8_02cf444dbdd80dfe482f862f05efd4e7a2a2354a828664eb64b16395.root': 183L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_20_7742a1200de409bc4976c653e006dabb2bc4aa108e8cf72dad6a46b2.root': 277L}, 'DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211140_0000_7_e118a64b3dc15378b2709ef3f623d8e66fe71ac832dd6903650165c9.root': 281149L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211140_0000_10_ee16bf61015a30d0156a6ae665080023348a37124fc11bee37da9b12.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211140_0000_4_731bda1dcd206f60f12404212f7027b071ebe93c47190c020170bd46.root': 95342L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211140_0000_8_5dc49ec5c1e2964b7b97c79d88f315e99d2029f01fb7dc33683f9ff7.root': 438061L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211140_0000_2_a2d71bfdb579d4a2c6a4d97f069edd82ef07eeccbbc750c8ca8f44e0.root': 5488L}, 'DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211306_0000_1_d3b503927ac6c2bbaefa0f0ab9b7412783042ea3983f97d643f9d3b4.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211306_0000_3_fe1cb50a461995a5a835afd7ce7e73cc24d9ae0d848d23c35113983e.root': 29042L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211306_0000_5_d47a3964ab6a4918eec60959ca7666e7c2d02a95194a6c54676bb690.root': 184797L}, 'ZZ_TuneCUETP8M1_13TeV-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZZ_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_201411_0000_1_0f962b8b1f6fcb13921cef189e78fc0e67b720847825335314c24e11.root': 13061L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZZ_TuneCUETP8M1_13TeV-pythia8/tree_-v1_190523_201334_0000_1_47ef03dfa2a610ce7c2d842d90ce6068fc5b55f15b791b62c4638378.root': 0}, 'DoubleMuon': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_5_f3b1d52fc6a29e4746f15bcfc63786786be8a44ba59f1e938c858b3b.root': 381749L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016F-Nano14Dec2018-v193_190426_094202_0000_4_254183cc93cdd311a907cc5f7eb924169b9e93d5f36a04552f1a0ef2.root': 589676L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_9_151c3f2a5a951252cff4ed9f4b3c8005aaef84449809e810f7be2478.root': 1223694L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016E-Nano14Dec2018-v192_190426_094115_0000_3_d56b6e15427989ad5a5f47043cfce96f6ecfb32d2ccd1d46ccb9a7cd.root': 482238L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_20_22a2d6535df7c65b6ee18c10e1678c26277be871392685c071cec7cb.root': 789273L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016E-Nano14Dec2018-v192_190426_094115_0000_7_5d9e29651615f4656a3a6804bba6474fb070bc847e3193ad8738412f.root': 522401L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_3_57d9cc01f7cb319109049b6f952992a684a7a156bf8d258e34d33715.root': 364597L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_14_afad473958bf3eaf7e1af8fbaa33354ee300ce3345441c32cda3907d.root': 999161L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_18_e254cf1c6875cfa2b9030df90520f6ef61b8b9f237bd08ae09b75302.root': 44429L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_18_246b4a68f70a973713a656d0f3e0e80415dad226b86b171f4d3b00d6.root': 1051875L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_8_0cbe96084392463c5eabacbf9b5c7c7a246e8d1fcd29c5f565ab9ee4.root': 905433L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016C-Nano14Dec2018-v190_190426_093945_0000_6_140016113a4bca53674be66e91b3677bf2ec3abc245194cbc52ab3d5.root': 255396L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016F-Nano14Dec2018-v193_190426_094202_0000_1_5eca5113ad1f8c334a2807393d477d47d21494cdc79caefa7b6e1234.root': 551274L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_16_dc990bc5486dd9246af839302d9f58aea4430de42fbe94b6df9349d4.root': 32435L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_25_6ed510fd7cffd91ffff7b7589d2751eade7c4991cd2d3e4088480618.root': 1136737L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_4_132e9592b773eb686b44a229cf6d0d7d11c29268b932133d99c398c6.root': 853552L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_39_bba5d5cc8d5b822d7f98317dc58153ea26ba0953b5c64301664d4d31.root': 164555L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_17_dd88fe26789e0b8f7798499a1d8cd628ec834ecf671056c9d4d6505f.root': 350664L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_17_533bbd55d2a174b47e8a27b372ea3f29e00eee4187b7570e0dea6314.root': 1038350L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016F-Nano14Dec2018-v193_190426_094202_0000_11_8c1620a1fa9811d738e6750855de1f40fe2c8e102b292f963f537c0e.root': 561605L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_29_ff6e4037b49d1adcba00d8ce74c51dc4b3b93739e5faf32902c9c885.root': 103966L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_6_810f38e1e1735cae7663d0e8f4e8c65e0f7b7f0f4d1a32f82e523bbf.root': 178613L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016F-Nano14Dec2018-v193_190426_094202_0000_5_0053e9b135410f5d640324441ccf63e5181093f36510f286cda62967.root': 601237L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_12_63f6b91b7dac723582e5f20876975981ffbc86223d9be35eefea07a1.root': 973458L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_7_1203681403ba10a4c288ef03c90249befaf101d3b8d88d81d8d7f3d9.root': 183061L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_22_09c3f54c5e5b3124e6541fc9b37b96c5648fa7b831f7af07658f8773.root': 815360L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_19_37bb91eb94386fb0eade2bb37128b3bf1304ff9bdbe6021a82c6abaf.root': 1065119L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_19_4c90ec4e9fdca3a80422598a776ff1ed13abcad56ef0a40303ca13b6.root': 47615L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016E-Nano14Dec2018-v192_190426_094115_0000_2_44a9fdc2bdf053c7678de8502ca9dc47234e9123371cc1ef9543dc14.root': 471383L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_24_25490cc8962104214724b298713284c2cc256c515c4df4b4f0a119cb.root': 1135235L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_11_e272f79d643d2b6d72a77acfa4bf98f4d113a485468d669153d357ca.root': 6536L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_22_63faa84a7d2ffee11cd44c8bea9ea1a2aee191efd1ddb4553a5d410d.root': 1116208L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_23_714b2d479690aa77fbfb3e25c2c2f261ed84d8bd9812e58a11e986fa.root': 828816L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016F-Nano14Dec2018-v193_190426_094202_0000_7_35b5e0e2f48e348ea402c7efe5ef125910cda7d481c0922da5f70223.root': 622893L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_30_60af3bbb96c6fd3d2599e3a17bb30002c11b054f6976ef70e3f79bd7.root': 114384L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_10_79364948f913a3408122d29aa750b656d9aafe09161486aabc5e5bdc.root': 288016L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_13_f97ae123e2203a2c2c3b7798d0e6f6d4ae203cb8629a351f16b66965.root': 986065L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_15_d04dc2dbbe0b27fe89503867f1203428034450b9f9c16c4f186368e1.root': 1012096L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_23_ec845096085ef0c4ce82d4d79349dcd00af785ec67b9e26584740884.root': 71645L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016C-Nano14Dec2018-v190_190426_093945_0000_11_623639fb0cc22094d222eeb1608493b205654025bde2334580221c0c.root': 204258L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016E-Nano14Dec2018-v192_190426_094115_0000_4_d0083c934f1c67360e6e7b51c55e89f01b40e62084c13c65e147c414.root': 493275L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_24_0f5ec2ad825e68c65ac7d086be03035041d5116fee463ee9ea52cd3f.root': 77008L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_13_9b1c7244a923fd211bb20f0cad71b7a0cc4f5cf5566c88aae1dc590d.root': 315604L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_40_1706a03a7791af6e1d2d9779fcfa71eabab0f5dc67c7c338ae545e14.root': 176769L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_27_8440ae417e0e2071151bdc2c0cd87c2706e6660ae9ff16e06e7f78bb.root': 93089L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_12_9bfc8619fb0c8484b0a6aa6bfa9cf98c4c3afc5e283def900d6f56f5.root': 306280L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_11_42068cf33e5e666289f84315c5e49b61794ee61869dd139877aea9a1.root': 669539L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016F-Nano14Dec2018-v193_190426_094202_0000_10_c3bbb322657a37e1b392c384fb6cde0f9faaafd388ff1d799a2f092c.root': 551310L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016E-Nano14Dec2018-v192_190426_094115_0000_10_b4edb14906fcec4fe3e640267fbea8ec2d165824737113e97895c2a5.root': 431410L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_9_898ad45173ce3840491205cae8036d723e7de40e100ea6c41eb77a0d.root': 192578L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_14_0e848c7e5849b5dcb6b76e7810128ecce0828547237ec3ee86f5fc74.root': 324395L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_1_ec9c8d6bc977b7d6a39f934a667de9c56246cbe87a749984fd30292b.root': 281300L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016F-Nano14Dec2018-v193_190426_094202_0000_2_2e82fc1403d540425fa01eccaf61615e713fdfb8d73941199cb226cb.root': 568047L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_23_167398f66caf33a11a381a29f9a6537338a1b1d4897019e3d578de05.root': 1130125L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_9_474326b626b97553c00249adb73bd1c5f99c49fae1851d8510741c6d.root': 917566L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016E-Nano14Dec2018-v192_190426_094115_0000_5_5b02006e9273f8536368817505d2ae959c8c16e311ea6ea150869b95.root': 502752L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_17_7ca3874e31dfb4d96cb1c64565d6eebc1630c5162e29d2070f6e0b8d.root': 747405L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_2_44218a7cbd53ace0d3fc7356f0c8dc04c4f1c72f526afdb51866f1c4.root': 1078609L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_8_ff1d84b37dcd3c43e55bbfa913c5c5849b5ad0e941f5faa1b10aba9c.root': 1210644L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_5_a65ded3ef44e381aad38d15c1e1bf88111d9bf2bc8f266e97302c509.root': 866570L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016E-Nano14Dec2018-v192_190426_094115_0000_1_169fc1841ccb9e10f55621fbc192cf60f31c2331d336c2fc5cb4adbe.root': 421602L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_16_07b55fc63302b457ed53931096e98827018c707a40ac1d528ab5f850.root': 734003L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_2_ccd36321beff2072b11d9a42d6e7baaa0a453c940dae477568a0e12e.root': 51933L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016C-Nano14Dec2018-v190_190426_093945_0000_12_ebab15598843171d4ff0bdaa51d0b9b8b213b6d3c67dade3132e9919.root': 210758L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_36_e8592c8522291c95143037b7c1191b8b56081a4e7dcaefedca6e5fa0.root': 147097L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_37_fecc0512bb40fdf6c6d29ca3d9babb9f963c5666a19c4a330deaccbe.root': 153241L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_12_725c827e54cc49af4de557d0f371a43b658fbf4e68a62214f09dd929.root': 12505L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_11_014c22bbb52f87c2e4dbba7448708196f642c41cd17439c088d63322.root': 297391L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_14_9fe85aba144e47bf0da33273c3999f0d357d2f20bb7b89fe2fce1d75.root': 707659L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016C-Nano14Dec2018-v190_190426_093945_0000_10_c19ea5bf8057eee1c251b0239e0f58cd209f019249a28ad0f6ce8c27.root': 198168L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016F-Nano14Dec2018-v193_190426_094202_0000_3_59cf7642cf818d31d329e2dff1ecc80135325f54f9e151960d5ae623.root': 579368L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_2_c72a1793b30c3d4d9a97486c715ed539efb89ddff037ddd7810c9af6.root': 787659L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_20_c502a9a8d218bfa876c48bf43d496601b9daac5f525a5bee405c9b81.root': 56281L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_11_a33aab727bbf44d877bc176a3fe38fecd2761717a402d151463f76c0.root': 959049L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016C-Nano14Dec2018-v190_190426_093945_0000_13_f0a57bb7210f60df23cf84da5cedb95382f045534b4833dd8b1c868c.root': 216871L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_16_11daad238329e1e260298a10bfee7e230118cb49d5991f0453c7d11d.root': 1025430L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_9_d4d4e7a64225b053d83103eff318115d33594cb45524d5df6a738229.root': 413466L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_32_f893a00bc504eae38331e0cc1af08dc992521ee8ed8fe76eee707cfa.root': 124223L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016E-Nano14Dec2018-v192_190426_094115_0000_14_2338ab111bd9b9459fd0a948591f0a7f92a8a287c1c3b3a42ec56abb.root': 467760L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_15_e78e4451821c051a95ac3775307fca273b8f8c30d49d62313b2a726a.root': 721000L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_26_029c70795cc6c9dcdb6fbed876d8a3bb36b5dcd0a7056a293626c994.root': 87580L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016E-Nano14Dec2018-v192_190426_094115_0000_11_92eb36ffea08b5ab8c3c64b9c4cb64445ec3b30680f4a6c2139f95c2.root': 441527L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_1_916a8d5c1b52f90226c95d6f4cfdf2b24beb74ba26eac59e7066a5c7.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_7_fa4b10f2ebb3d14100ab558270b6ba88506edd110f8b0216e7b38998.root': 1196042L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_15_8719fda3b98bddb837a98e89f468433ca257517dcd5d6f6c1bb97ab4.root': 26643L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016C-Nano14Dec2018-v190_190426_093945_0000_5_092e152825438072fc79a672f2bfac958f23f7a81ba0e8a8e683b781.root': 249161L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_8_8eba59add9ec677f8da9a6e00182c95b94c46e57f8be2fb3fea852ef.root': 187598L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_21_593f12e03bd15c47ab167d3122fd662d50f04077d9407ba0fd33b91d.root': 1102534L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_8_e24402bd2f319420d04fb5baa83233526318b628a82aa8a3a705668e.root': 405078L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_6_5285f0576803d20ba5c9709829c5ed136769a7558397d9301b965b4d.root': 1182249L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_13_4095429f5fccfa9ff24cb8b42946cf3b61f9b5e0cf81f093eabf2aad.root': 18770L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_14_664c21c9413b0ea515f18ae228a92e85424af52a4e6f796681cf0247.root': 22103L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_28_fd66f0308bf0b7b0d8abbb2f7ce1961ffa4604549699f3b2dca0e9b0.root': 97952L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_4_d0f12e1b68d52cf6742c2e1b05cffcd7734bfd104333b90d575a40cf.root': 1151694L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_13_e5548e24bbdea5e11e62504b4c7988d30b9a375c98409c7e43b79af2.root': 694442L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_3_65a58f2bc7f60cfb2fa3d54198cfaa441ea12bd73f38a0a9ca30cf5e.root': 109472L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016C-Nano14Dec2018-v190_190426_093945_0000_9_a49638ee6388514c901f28531974f4c9726d7a14922f29915c1e5fd0.root': 274348L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_17_e146d442ca324c8c0025a2d86c352b791246e2bc70e1b26115a0653f.root': 39723L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016E-Nano14Dec2018-v192_190426_094115_0000_6_2a3e4c118ca0c0f6c07ce7da8695f84f4dc9c8f3fdafbfa6960c6446.root': 512768L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_33_2e333af324ba783d048aa2e7585f29195324782367dea7767c66d187.root': 129846L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016E-Nano14Dec2018-v192_190426_094115_0000_15_99af3fc049ab9bf845cc2579bcf0ec7fd5eca33f90c2be95e40c4ef2.root': 467795L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_15_1982d8a59a46b5c2b8f59817baf0c6887191f43538188555d5d50d62.root': 333145L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_35_cdb64bf23ae255f8936f25c0fd665cf3eb92bab0f508b2c7a7fc11cb.root': 141341L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016C-Nano14Dec2018-v190_190426_093945_0000_7_3d3236090990d0a6369f78fe67daa7c7e75742ac5f6ff9c93acbdced.root': 261780L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_10_c635d553e600b4e19b0b83e0a998658f616ea529e1b3505016425201.root': 945044L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_25_98271232ac85270fc50880e168f62fe1185549f79d0774535f506e87.root': 82435L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_18_445ea5edf20ab257925a04ecbb874097c7de49518efa60f57c1fa4dc.root': 762247L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_3_7aaa264dd0253a9d1b8ce4ee243ab18ef897b87b28b8ef131b2af029.root': 1137530L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_4_057e33cd76e1d68de2afe24cdefcd76e656293ec496457d401d6a8d1.root': 170886L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_7_aaee09843b02c45509c6cfa75aa0bae5740491f451fdd24ceaa067b1.root': 892352L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_20_eea16a92773daa3b298fcc46eba5f137046703963d7c588d89895d45.root': 1090354L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_18_88a57104b6742ffffb6c7c6faf65bf1251e45b2adfd53674ebe44499.root': 358797L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016C-Nano14Dec2018-v190_190426_093945_0000_1_4b6a4931dd7c6cb341e984d69350ac0bb38102df01f0fa6722aaeac2.root': 197354L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_24_8377cfa1eb01dc7683a07ac576ec6b2087aec3ce9ad1c4e417d5a4ea.root': 841726L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_31_90ac92c24242b936ade08d110275e1c104303b04e47dcb2863e0cd66.root': 119234L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_1_0e9d1aded79313f3714c4eeab53238c4abf3102a5fef0b55334a2c37.root': 931501L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016F-Nano14Dec2018-v193_190426_094202_0000_8_af1fd9eafcb6030b35df06650d2f4fe7a9c37a71a6323aff79862ddd.root': 634164L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016C-Nano14Dec2018-v190_190426_093945_0000_14_a25cb4450d676757bf434e1520a8313c1f80993e8d4008a622c0d3ee.root': 223539L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_19_0a7d630017cb2740aad57c6d4169a181590e47376792b81908173a05.root': 774561L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_7_ed22df9b681ef00e3dd15879f7bcdd8378a624260e6ed7d1842d91b9.root': 397269L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_5_6c26838665892d55680641ba2bd1317c221a3da99fb9bca7d08dccf6.root': 177767L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_5_a598a75867555a105b5b08ca11ab4b1cc103139b8aeba09313188cac.root': 1166909L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_6_775b3b8ada98b929c72973dd0da2487e31038fa072a47e50e3e8fc91.root': 879304L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016F-Nano14Dec2018-v193_190426_094202_0000_9_08c2749185428ffe1f5c0e35b495f67fcd2648ae037d7eb21e41b7c6.root': 645258L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_10_f5a72c301468a8e15346af47beddc3ce798b30f44d0dbaaf92585e34.root': 656633L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_16_93058222d1e7dbd3b26dda1442b63a037f7001a7a7f931177f269bfa.root': 342236L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_12_04fe6a5672103fa667fce935df1fe3a614f53a3c92a81d5c8b884ec6.root': 681965L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_10_089330852a16ef4dbd1593034c6ca3b558b7df8a4fd53515bb58d1c4.root': 2049L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_2_92d253a2ae17a219776393b608a81208bd59f560f71c12b0564f037b.root': 363806L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016E-Nano14Dec2018-v192_190426_094115_0000_13_197ab860dd34e1a640027db3ed98c435a19205809a38774806026292.root': 460458L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016E-Nano14Dec2018-v192_190426_094115_0000_12_fb4169ee1224a8e6576a8b777ac5110ed53ea302a29b2bb6b5bcb0a9.root': 450405L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_4_7ed5b275199a908d0aa8a8259e241e9a01d9c2162831da86666dea42.root': 372832L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_6_fab030cd0ddcd3d8400e7cca222a7cbf1e4fe56fa6e869a8bad9ecb3.root': 389875L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_34_9d0c3708a44072c5bb31e49dcef669442f82ac6309b478beee6b8d68.root': 135290L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016F-Nano14Dec2018-v193_190426_094202_0000_6_92c235428b434f07824f6bb6a44480d73c19caaa0f4819fa12f2baac.root': 612063L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_21_c0bdcca7aec38858565491affe4c63aaed2869f8ba10aa16ec43380f.root': 802101L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_3_46752248c8041735df05242622f5fd52ea2df6540937c3d48ee01da3.root': 850098L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016E-Nano14Dec2018-v192_190426_094115_0000_8_a547c581518dd6c8ac7ef1f0af956f688b24a4a8d7d4471f72c43cbb.root': 532626L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016C-Nano14Dec2018-v190_190426_093945_0000_4_61d0378fe02afc2b32ccd4ba9b31ba1dabf7ef0e1f4222795a40c88b.root': 242708L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016C-Nano14Dec2018-v190_190426_093945_0000_2_9a950fb4ed12f1d3b15b1e37f2a5ee2c0839f1e29802cdbc8010196e.root': 229897L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016C-Nano14Dec2018-v190_190426_093945_0000_8_99189439bb5828215ce5a65f443b8daf13344640623664df41a35c7d.root': 268007L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_1_c74ad0b969e30581cd041ed7ad111aca0b4bcfeecfabac5e5cf1892c.root': 655549L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_22_f74652dce3eecf3c913f13b434cc02fae2dd58ca96afdf8df7baf487.root': 67672L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_38_924834da86058d6ebb687176405d26ec86ca543a6188e830079e518c.root': 158713L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016E-Nano14Dec2018-v192_190426_094115_0000_9_a12f4f2cec3f603544cc261f2fbeedc96733751403305544b53cb941.root': 541938L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016C-Nano14Dec2018-v190_190426_093945_0000_3_c0e78d5649587c502f9bcdacd9d58444fbd163fd26672b59b351ed69.root': 236481L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_21_21e4d003922d8882f2166f55ac42e21e5865fb09e02e7d4e7ece3c7f.root': 61401L}, 'WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_16_a2beaa5a4d37028fa7ee6760c27021ed27c5ff9b84eee06550899b2a.root': 347L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_7_f5a6c5d7c63b23b769236494de3509c71527db20d5cc766364b6345e.root': 704L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_5_dedfaa6b5be6b3d0239506d37badef4506d3c551cc44367c71dbcea0.root': 618L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_8_880b7d81c67b42b195dd81527b10dcec33f35ac0f4f30b74af5aadea.root': 760L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_2_1e8dc5ac73d430ce7fb2b1960b8ed1e746fb57afba5fe7f2f53188a9.root': 458L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_11_05b8cffd88b3aa6576a7fb085da88aea8ce68a5a0b598ccb0155d29b.root': 86L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_6_7c318d301739a10129eca4bbf67b317a9113db70ad083e30e441f161.root': 652L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_1_50871ddcfa285dd48fb0350a6ae37dcfa4dc6bfb68e5cac7d2c4dc4b.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_10_eb07493e825c01e66c9c8592ce330eb21ba9f00f422f4500e37c20ea.root': 18L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_15_7b593288a0d347502c5eab0589a3b27a22c60d096b8b5ca58031f989.root': 303L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_14_c197454559d43fe1ffecd80543d5cd332ba9ac3702a8ad17c906ea38.root': 240L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_3_29ed3d3d80a3f1b10e89d782ba4f7a443873901d1001a29ce38e31bd.root': 515L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_9_9268e809a234e778d82d1a9b2e4d64f9bd730037a2b94fc81f44f8c5.root': 786L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_13_f3a8c29dc4f74dcf8b64461a76afdb3ecc113882790270cb749697cb.root': 189L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_4_035e8c0eb934d25383a8da98fc85ebea548f5354dd01fa0c6fd8b780.root': 585L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_12_d65360165deaaf3cd634610e3a6d81aa6f3629b16fa9af0eba3b5cdd.root': 147L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_17_d5c8adc8ef01186c4d74d7d14b7fab9e039748427ffe70c698b2dd84.root': 408L}, 'DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211102_0000_2_c1c733a5575b22b40476441ced55d7db44a1597a012907db1df636a4.root': 231189L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211021_0000_1_cbf3c204aa47f28861ad420564e6806d624424773c35d168dad4013e.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211102_0000_11_4616f9baff5739cb0cc9e7bb19e69442c3e1e32a7bbd755f93182f9d.root': 215456L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211102_0000_6_d67f81a28adb72bbca1302747cad29f3d10aab9714f53b4992a8a2b7.root': 424403L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211102_0000_3_4991ed259afb0aabae4aad04f512e18b398204dcd0b90c3baf4d68e2.root': 393023L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211021_0000_2_21564f60b5a0967c13290febdb3411b266413dd68a01e23ad58a427c.root': 42004L}, 'DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_26_246c06463cb9bdedd25ce8c3deb075ec4d9fdace4c2e3899d8cd2017.root': 159111L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_3_4d66b871a3fc8cecbdd8b1e06c825c5eda2fcdbcd1b347e5604e2bb8.root': 500314L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_59_ebc74305a873b1ec5954b3fdce085276620d8020bcafb3696164d0b5.root': 814754L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_3_0e427aa5afe590b241e155cc539e280c312e7559bc2aefa9eee0d143.root': 188305L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_65_4bc5c01b57e6c56b63a183b31edae3ef993711ec4c6f5e968d093993.root': 860146L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_48_cab8ca704554ff58a742844ff7ef93e5894d15732bce9b177533d638.root': 701236L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_52_136086862d8ea7e644a6dbdc8101b1c2cbaa6aca65b888940cb6009b.root': 746664L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_19_41337a331e1785bd78dae350286b9f7eb1758b78163eaad51e0b15d3.root': 84840L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_4_c63ac7cf84b200a24e81d3c142dada589de8774c55843522122c542c.root': 603834L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_2_5b93b6639e5d01082f3b213f6484abad4bf92bc81e07dbdf2ae7a1af.root': 412551L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_60_d3aa9e1afda9897b33ae29e6954c9976ee8bf555b833d84e9dfe0c5d.root': 824152L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_21_1e6dd6abc9dd63028ed19be76dee0284e191559bea4b89cc1a56df6b.root': 115931L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_2_d5ebf9eee8bd0e5000981f911150bd601e54032ec0bb4dad5c7f5f73.root': 94105L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_14_4b50efd8edb47621d19de3c5cd4548fb4ed169fd7953bbaa562b209c.root': 49680L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_24_a14cdab27960d900997faf51d47f4c8b40904fb2e40ca763d9ed95e3.root': 144232L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_67_c708d2aedc17a754a27474cfcef979ef259c453b03593eb00c754be1.root': 876431L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_36_6b911aeb8fad80df4270b9707b2fbf6311cae5a7f033a4d11f37b82f.root': 565414L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_27_d89d721aab0fd087dd64739d5b7881f763510187a0bf5fba53ac362c.root': 472149L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_20_2d902ff20485a7e3ed80b95b1919cbc952520ba8927857ee839f888a.root': 419585L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_23_16510534ccd366018c68357ea6b1db9437d8451743cfa8bf9adf1e84.root': 136553L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_25_c70ed3f5898cb3da5da445bfd24a83e932ae00cc797184a8e5b803f8.root': 151722L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_50_e571f13def547fb138dba89f83aaa7799b7c8943cb75594562665465.root': 727524L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_23_38bcec6d8f6c5cdc7b60cfe1bb0a57838e3980dac5e26a7f05491d25.root': 441392L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_56_a4661fb91d6df0ee09494b8951bf290f10a449d50ae2ac3170d6886b.root': 795190L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_29_f56db0d673728b4c57655397001296df7fe98b3a3e0a77acdeeb93e8.root': 184959L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_31_b4f7f247fb78dcee6e63583632823cf1012529fb207f5cafe42acee3.root': 205530L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_57_ca5501bb21cae5aef9860e16692819cca11c5b8bc289429d070b0854.root': 804678L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_32_8d70aa391d5125e37eb5a4e4ca49e359a98a4aecced9734e11a88413.root': 213501L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_34_0921b077d00c0cae0d73d7a220631ff72f01b174ec5c8b455505badc.root': 545752L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_18_381efa4f9fd2b47a217166d37cc4095c11c9175320141029bb550167.root': 80026L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_10_42a93afaa37eb8bde4f76378748e2cab39c478a642bcf895592d85f1.root': 317051L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_8_7ba9b7dc0db2eaac4ea50399c7a83c6abd23228cf0ef2fd5f04b1e6a.root': 897866L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_34_cf3e86f46559f15a25da2aa7bd57dbe4aa9cc927dfe65ac991a2c93b.root': 233489L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_17_7f079e829cca4fc28367312b6c327f4341bcf0a95fb5b68c2dc80938.root': 382222L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_4_bcf5e81af0b72c7700673b14fb9846c139dff5291e2df2cd45b60403.root': 249998L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_35_ef289447ab4499b0bdabb18a747143d661a9993c27f310c5d69350a2.root': 557371L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_6_d9688e0f8377e37d7fd31b96471a9f096644b0a64a7d72bf21331a50.root': 816519L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_55_7af19982a846a0a9700d9904524ffe22387a35695e749c2443c0542f.root': 787191L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_22_d6cab1f853cfb70cef11cb58c4ad9cc76e9932c2dca5da0fb36dbf9e.root': 433404L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_45_1918420756fba9ae2116df46f82aa428d852f1ac5dcc0a455073fb01.root': 667458L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_6_036f22e2163c33373fa1cd9e65f45f10a6842822ec4ea05bd6ca9248.root': 272373L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_49_8496a3b8216898d3265ad847e5e9e66dcb2efc38ebc4482db14d56e4.root': 710004L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_13_70087c6d17bba152e4f1f565bbdd4962920626ecb04fb3c4993f097c.root': 41472L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_20_01104fda5fcc90e2ae065234e590ffa4947e5d2c7ba30597762261b6.root': 107659L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_35_7c3e5cdc7a4ec270249ac0b90a3c3715a8568b903181b71e5e81d6a3.root': 242097L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_41_455b0d2afcc68d6b572b8b6b3a753b81abe1befa6c19aba12f2de81e.root': 624747L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_5_84a5b90c92cd59276acb3582b8072ac2b66f33281e83abdc7ffed98b.root': 717004L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_66_d59803fb855b899f78bdbe3a5edfdea8a13774b8effc82205435f76a.root': 868024L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_29_738694c569dd3aeea39d73a719b4f79189d6f6b39e00932599959feb.root': 486931L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_9_1d299474d185674d89beaeae1067b7e67de6c4e3feda4754e88b59aa.root': 302243L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_37_212d984e1284d0bc154b36c3fb622b384cb980424a74f9514a466d81.root': 575401L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_15_e64422c2f72fa19c87de5e689ecf6db7adb0d98ce795dcaedeaa06a9.root': 356424L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_61_b4255a356ab41bae1dcbda6801bec8733fef2e43b5c3c1f1df086726.root': 831168L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_7_194a2755a20f05a30c983b46e3e552f5711be0b5f823625a7c677bf6.root': 884143L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_10_2b811c6b10cc9d20060967548e7cff06c8dbcdd4eddcaaabb51f95e8.root': 6772L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_17_dbf0f323bdb7e5cd8097d3f2becf2daa06dc4a203948c62aafa5f6a4.root': 73042L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_64_128aa618a3241f2a5f3219dd16b65e9a24570e7d26c0654dd84a8c03.root': 852920L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_44_cb72bdd9040cc44219bedc7af7057e1d6046ed251a252347d75ca7e3.root': 653898L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_43_a17f8bdecf3402d3aac144095d3629d1b2d1ac8f22b13bc23609fca0.root': 640305L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_33_e35ed21567f3f6bd17dc0957d56219e1a57c32f8c92e090279f60789.root': 536407L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_12_7e4ce2c49dc19a7e2e09c7ffca21d69b479963a738e812b1480b3dec.root': 27912L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_12_57c27fdbba20be53099cbc6b50b28d001a17d4e93752d7585f6a5db8.root': 331392L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_39_979bbcbefdce41765169e5f1f44eb573dc826aa0eab1dc0c8a557cf5.root': 596968L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_21_5922b472ab5f723c09b9f232ef79d9fdc271b7c460e5a05362a64bc8.root': 426519L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_5_7f86d3cbaba332414c8cd481c8e88442ead90cc5086944cba88dadc8.root': 259004L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_47_483fb4457bfc4f977050fa29189b25057b207a781fa84afd917f151a.root': 689701L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_40_4278e76ae88cddb57c8e35e6cc89aab8e4c513a61bcf46af0897bc9b.root': 617461L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_24_e7f3f4f1af3c517c003ce1643f6f82e9100b5f713732ba1a333466cc.root': 448469L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_58_3fe3fa606aaf326532f8324a0d115249c7ee834c612be126098a049b.root': 814070L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_31_49526fc5afcc40a71a9ba78b0d81f5b3626ecd7f008e67f7b4969235.root': 514220L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_22_ef50ae4fd8b4c90578a050fd06b45b89d3c2962ee84921a4f325d5f5.root': 127733L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_25_8bb3eab71f8b6c7d8293e42d0e7d8b7a2f7fe44716f9f46c52f30b87.root': 455477L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_46_679b24244479d39135fb5294d36756c2db2f4159aa1a500861d0ec8e.root': 676109L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_19_1260e1af10745e4b887a5584c063ae969debe151a41be23334a48b80.root': 398931L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_16_549433e3373271efbfe2bbdfe0f872e3dc4b7c9f52891ac391e7a83a.root': 65110L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_33_b21c0ac9f3d8dcdd0584502f547c660f697b85132cd03da07c25d9ab.root': 221476L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_11_5e49fe4057af8cc9d66422bc14d212aecdc2d78c23c69574152eafd3.root': 20340L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_18_53812e3a819afef3527f25734493471bf8685ab370352098d27467c4.root': 390795L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_51_c66e57f50122116c955ed5df929db28e2b1321fe099e2d9455ede95f.root': 740225L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_7_945591357e8be529b4bad1b2d46850c7c89a1659b6865bf666621df3.root': 280373L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_42_c4fca61a5ebb886f27d1fc198f0698c0050454f47cb897b6e6698f87.root': 632502L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_27_614cf652499f5535b5da944fee7335236c8e2a33eee2df1ccdd077d4.root': 167064L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_30_8bf216e032868800544a4e63972cd3f1fc97eb1c602eaf66d99eada4.root': 196754L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_15_647387b73452c3c6da3856e96ae77025140f715709bb85b8fa2c7c36.root': 57069L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_26_35fbca5e3dbc5eb3e661b626d77a5a55d2fe59e5a19904c42c734334.root': 463201L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_1_3df224fd7c891a27acc8605edb01fb1cfda756267a76b996d11aef0d.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_62_5076561ca65a5357f91a8ff037137ab889e65039b2ceb876516361fa.root': 839578L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_53_22d311721ab1937e2ec12511f33cd39f9e9dcd90c75ff2bddad1ce75.root': 759931L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_8_981a1f48456e20c19a4d9b93960377a12614b91e634b61584953fb9b.root': 292651L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_14_d35f25027517379e1395dfef798b74d01eef420f55a2b0dd3bd85948.root': 349564L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_16_936fdc2fb12f5c86ec600a4676385309b48aea9d697fbe62da59c27d.root': 368756L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_30_c0f620da9a106e70e4540643b455bb08af74ecfec722e0babfdc84a1.root': 500716L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_28_4094824f99c2a18a11a8f535f9500ef8190c34dadbe1bd806f0fa55f.root': 485951L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_28_40e2ab01188d8fdb2875b0a6876d00ad97636cd5e89809350b00c880.root': 176867L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_54_a6f44b48bb56f16d0197b97be48b8b5ecae63e35f2b887671e6de780.root': 773386L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_38_684a6bdf5f4bba1470f0e5b534c4d635429887d83de5bb396d387039.root': 584331L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_1_4ab817926851993d24f8a7705de18bafcaf37d51463d3f39312fc17d.root': 311033L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_9_44ab91268449df9c25abe5ecfb5380fde9e0a85aa17ae13936c4124f.root': 905758L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_11_e16621dd11825c1f553fd506e5ed8ffe0b72b0314fc19d269291a9c8.root': 317921L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_63_2c6f50346511c59bb42d5b9d8bb66031fa1c867ff4f7caa8b35add54.root': 842481L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_32_71cf3a41caf263c96b56efa726f54549d76f48360599d382b5681fa5.root': 526312L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_13_03d69c8176d38257e5191951b1248e8b427ec571aab8f3e7164c8ac0.root': 338315L}, 'ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_3_1514ae0e729223ca0d5abb08c78c2f3c6ab1c2de81035227600855e5.root': 11602L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_1_55f2fa102e7811e0003a6dc040eecff53f36fa4cf1985dd9fae1907a.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_4_be8aecc3cb062ffb93229b555253a0200332be3ef8a0e628a50a75ad.root': 18258L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_5_758ae4a0eaa5f141bb52ac6ae5fc3e35b1b8b60cf900c0b81da3d215.root': 24494L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_2_a5f0e1dfc7c89c583d851a2fbb9199e81126db321eb4a920ca8e3072.root': 7464L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_6_e95cdf3b5dd45f77b6c8378e7911104cb1fb5c2b76bf62537a32f65f.root': 27284L}, 'DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_202422_0000_5_be2fac3c0822de7b9bd7ef5a87540ce6ae04c074ad3e646b952b8aca.root': 391875L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210103_0000_5_9e2598d90f84e1025c5cf800dfd9502a423e926450c75ca1b07a4c64.root': 1393849L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_202422_0000_3_4d8585376a1d2ca1f537f9ceae091e6290792a8007b930b9ed4daf08.root': 34448L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_202422_0000_1_99b1c841a4aafd62779a593beb3ef83802eba96c509ad9d3d1e2ecdc.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210023_0000_5_78fa5a91f3bee8812ceae0f6df01b866b778a0434824a18137745ff8.root': 911258L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210023_0000_3_5e2b04820593450679ada0c26435c0971c445ff92bcc5391b0861a05.root': 553831L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210103_0000_1_dc1b6c24d69dcd59eca271c3de974dd8a2ebcbc9186d2763a0500488.root': 1038766L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210023_0000_1_6c0b0f2045e1714485ed104d81b64a5fd8e80559e2b55a191f3fd10f.root': 519383L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210023_0000_4_8dd796558b0760ec56ad4198381e6a851a183527592c385d9b7a7cd3.root': 740921L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210103_0000_3_6165606c66b1615401794d4414d197a77c5b4066880a28f0b310f5cd.root': 1059489L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_202422_0000_4_336e259b79437ccc48e060532bbddc108b8c66895576481e5cc65311.root': 221538L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210103_0000_4_0514eb5d6f9f5f90517d2412181503404e619930694dc0e37462bb83.root': 1221849L}, 'WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_6_b583a5fd4bc275f462480887ce6e802e3a5acc5d93e30fd11e272886.root': 222L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_4_6c277a5d177187f7789c0ee3ec6cbb15c479854153e471438ed1c758.root': 105L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_7_e9e89cc28c78bfeb8285760f2d0fec8b54ee1e44c42fda4b1fddd139.root': 267L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_1_9b76c123c9efde240814b14faaefa9767f199d3e665a22129e40239d.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212835_0000_1_cecb7e3b3e0e37e71e48012341a03d7cb1f07a48df064a6b22156a0c.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_3_b5f271c9c6e3440ad5569c2b86692a97016c731ac93bab91325a8d9c.root': 60L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_2_0cdc3dc6e381f0c5bbc06e0fd55a11dabb9b6de53f88ea01764028d1.root': 34L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_8_4dad18d6d6dd6baa245e6b6c831c3e9ae42b2ddf34f9d33a0d43d0bd.root': 313L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_5_e5b15f06e878cf8ea151b1adf3673f6ef0510d1fcb6aa0da490c64d1.root': 158L}, 'DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_5_20f66b29d027751709d04c6a55cc67f7f1525795c804ef098231199d.root': 510162L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_6_e3d360a656e6beba39e614f41e14c0874367a3467613607d23998f13.root': 588341L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_2_e4c27a13c3432f6be934a02ed4a2da92823ef85d379c5f266102045c.root': 327275L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_8_5a60d024219d2e29f4146d456b2a39dd571378cea195f2123812c4a8.root': 717869L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_7_7947f167d9a40b9c3185625e07ce1984c1ad43316c9500c125d3a4c7.root': 628780L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210624_0000_2_ca94b6b0cd1a2ea2833aaeedee2e8a5002c00f5db8fa89c55ab62118.root': 91789L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_4_e55490dc565ca486a46ede6df9147a9b7f3ac62f44b8d3a4dfe33350.root': 424701L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210624_0000_1_c10a9a95110507af23b76fe1715dc3b5a3fb60ba9df65265fe36abb4.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_10_d5431c95b3e88eedb6dfe28ad8fb3df4386a30636be14f8804849387.root': 241741L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210624_0000_4_4f08cbd178bcd78a391bd29be81f393b82f1277e2e7f9c19af2b20da.root': 193655L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210624_0000_3_1ae9fc1ee481cb6a08383da4c5a84497ef3dd3bad573b72d1a0cdd50.root': 96347L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_3_b2f1f5537629eb715b18d56686e28081c76239050f1892f8b1370f4c.root': 340183L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_1_a15e0541aa7e7e610eba81f75cc847306859eaf2b3ce5350739aaf91.root': 236330L}, 'WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_7_025c415cdbd53a12f738c464e9babc1407cd7f07905ed0ea936b1b59.root': 216L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_6_40817ae7447da5473b1c2baa03bc055020c5d640ea46f2fb24d15fa3.root': 161L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212516_0000_1_062e22ea9a53a29d86a6d1941b8a7a342d3129690d98ea6b839a658f.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_5_91aa8cdb431325e1640b54d68eb30dd5f8af1f54f1447a0da9fc6ade.root': 121L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_1_2c55dc415af61d018f1ab1908b15eecf3fd05ad11f819a33fd76f27d.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_3_ccef1906a85fb19604226a247129518892b119b1a66bd4f795f1bfe8.root': 38L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_2_a612b25c795803879d758954e6b53759a4992016c4fb5e869744f074.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_4_49eb569d21499bf06da73877fe05f8b7c5502acff9db7c82fe98b9f1.root': 62L}, 'ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8/tree_-v1_190523_195606_0000_2_c7e8149cda04204e04da5ef82492b7e33932dcea3f32c856cff8962d.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8/tree_-v1_190523_195606_0000_3_f7e4b65e48dd7b487b0303f9c46d31cee8938c666547b5b5b520c1cf.root': 37L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8/tree_-v1_190523_195606_0000_1_f51220c89576b2e9d9110b48cc9632bdb568eb1d52922730022f5a88.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8/tree_-v1_190523_195606_0000_4_1accb772e8a95cf219c2bda139b57610ce3d54748989769160d2dcd5.root': 63L}, 'QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_6_3fd3a6d559b7a7c02dde501637f31e6703c192f937a4383c1001ae68.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_39_8142dffd92e170e30ee28d4b4d6ca1363b8794f3734cf5fa835e41e8.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_54_10aaff71f798b59c379420e588958314a970988390529ff02fc41cda.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_34_e25d9fc074090a6b6e58dbc1d1bdf752b0baefb01d18d480fc91f861.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_57_7b5d38bd2bbac48cf25717cd416f3dbab782b93156cf1fffad06190b.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_27_d2ab40604fce9a7aea3e6181c2be8090188d279289dcab7553802dfd.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_40_c0d4f2c6accddbcbb3dd8a162b02175e9f7efd1fc8d41dc08f6ffee1.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_53_98222173431b8da3bebb92365640ff8b79cd42a20fd4490036d0c22a.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_23_651b92618f932cedde3fa5e267b0e565e778c3a62fa3d840ba7e927d.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_29_124a5f8c0953b7ca3fc67a0d96283af32faed0e64580868a45c3b366.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_16_5b4af9c4c68056a2c370151180af36188f354d293dd67360a3f6d698.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_37_fcdd951c73e44c0cebd08e52cd5a4481603e2e9292bcad74a9da5320.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_21_3626909b3da9e0728f2746ad9c0e7ff7e1e7607b32f52c6918bf4197.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_42_97b10e7582df207d68ae93a00929215c01bfda5b281c1b737fdceb54.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_20_95cfcfe3018024d1922cc341fb069e04470e432d21a8ef3f1604b8a9.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_5_29cc00a99fd99091332003358a8e12276ed184fc1775ff3dcbc53680.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_8_04794e26c37d27e6886db54f87c9c4899f5367221e65d038fad43376.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_58_64351be9de667e1027abdd3948f8c784d93ff23019dec771db7117c2.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_11_48deb95e6a76919ac6f5205d8e7dd1285b79eec6572f6f03df4d9e75.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_24_14ed0c9749242262e1b7ac0365333d7867c64447f2d8b28a4e1b496b.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_15_e8cd0cd2a11c29a091e787bcd5030ecad0f5cfbdd2ddd84c02b3e84c.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_44_da4c537ebf82715070a0a701b517391dee17d64e1cc0da01d1f5240e.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_59_754541388aca98d7115014994e8bd1fcd08ab0978edd733399932d79.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_13_b4bf028b2c6d2da24ad6cc6fbcc121c3525b5ae07009196af8b30ac7.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_35_2a8a47a9bc93e8e86c0535d8e284d0dc25e631464a2db064eda0d755.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_28_f33b94b24fa8801a84ebbb5236163ad1624c6102f4c095d7bb4823d9.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_48_9a9d4d0ac0be1a8e51ff6a74cd4ffae4eff2c900e2dc2a028715d398.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_55_5ecf3abca8333038e911f43f527132ee685a214cab789d283fa0632a.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_14_2d9b212a8fd8d766319830bd248d8a8446528f33be13c226bc3d6078.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_17_5be07b7e057c472a57817c203c20d21ef670ca0b13a4ef4720489cc0.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_46_74ca8aab9a274d495b31d1aaddde646865ab16bcbcc064044d6555e3.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_9_9a54e29ec6115f4a8e948ec6a319c5888a33d91250051e315ce5ab78.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_3_537b68051997da16e0eae28b21a7d43022092400a0ef0dd2b05e483a.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_31_6221f763ff3d726b1f6c14da0a83442dacc15f8071186da49b252de4.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_26_f59c83872fea4f1f0b4a2dcade5ee7deface7eec0560f7c93568d4d4.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_30_88cf4128a3bbd262543d95b3be2d1b7da43860425569599a50283f3d.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_41_d64aaa6a2e16578a9f0e5731a6ae017917a66d05fbfd4c8aac47b3ba.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_43_ca08fcd9f0f562119134604c2a4a47115b360c80c4ef00147baa0c74.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_52_9c5752d4de3b1bdb073847cbd9c712ad93d94affc6740a9b178072f0.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_36_697bcee493d7d7384ac3678b105737acfef0d97254a14d5d19a98ea2.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_12_98c885a96d45fce1a36b0107e80216e6c6f4e3b63c49acf89a1fb9de.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_47_9654a4a8b5c87df84e1cd1e5d68cdaca3ccefa7eb754f7bcef74b82b.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_18_978d1cd881116b04faed9e40cac9bac7eba5d3cec39f93291452f916.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_49_8fe1f30771587a79ae1095a5d38851d3a24222d239a6028b16d2729a.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_1_2a770a9b36c3ac5113f8fa2f16dbafba5d23f642ebc19df783a3ab6a.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_22_866e4f3475793d6614765f76ebbdc2420c8dd680a3dead10c9523a6b.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_50_76f5b7f40eec30d347747a8d002a7783f3e3240196d273079d355189.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_10_c65a5c8247462db8076a5973fc120c7d93833031539d51b78de9c3fc.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_33_70822c9c796db889c6eb9881a57a23e55d47630a0c1ffff5fc2b884d.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_19_6c9a1dfe7de633cacd67cb680f8f8f3533a8a8c3ddfd821f72f6bd2a.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_4_858c42ed246119dd7d3676625d9b372c15d13db6b67df53ce7a5805a.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_45_dbc3bf153ad8565e4dc9229a9a79df7c3c45bf560b4b906e8b4475a6.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_51_d18692fec4039e41dafe17ff983c31161deea17668629dcae0c57996.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_25_cfcfb28f2130dec6402293a8ea61157b39498be80e22c5237cfc6d59.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_38_f3d688e92ad8c07010734a99e243c403ffc1fed8c6113439ed0e4cf1.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_2_40e3e6644932bd7350fe472e6d464189d34b2b117a9630f486eb9a9c.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_7_c964a989205268a18bbcff46a1dc3ca0b5383f32d3c3dd3a47434d3e.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_56_17f6da5cee0b12e6da6e5054acf8e193ed388046759612b9b456f264.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_32_5041771f8d1b8c5094efc2a2807b5fa83c014104df08e7dfbc074ec0.root': 1L}, 'DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210903_0000_10_cdff6bbe073161520f8d59bef600aa571c90530f42e27561b8a8bd50.root': 149529L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210903_0000_2_73ff6e7c9e9a225cfcf31a46c4b7662f97a7de29a2741db0cdd51148.root': 153558L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210824_0000_2_05d8c6ac27aec613232aa7879b178412b75f42de897a6a30ba53d00a.root': 140779L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210903_0000_5_d0592668d15a67867619c603055d228aab5a799d01f66030933e6ad0.root': 291066L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210824_0000_1_c87377c4871090472072bbd5be852e76c45956bf30a5dae1a3a3b4bc.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210903_0000_1_080015323e046f2139453164e19dc5f51405c9cfeee0a871b391c227.root': 148938L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210903_0000_9_59ede02de1258d16232e81ea486cf3d3e7e16ef54ecb9328ec4df7cb.root': 351673L}, 'ZJetsToNuNu_HT-600To800_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_2_c3310da000eca94cf6cdd8b23b6d0c54b7ca1323cf74d682c14cc40c.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_4_ebb39da605f0ff5c46e7b8816187efa350e4ea1786cadad748d190d5.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_3_859df791734b881b5224f40d7e17c3db8c84b4e4a93e378fc3e3e2e2.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_1_e47616a62e80bd19ef87089bd4fdbe0d3da40fe08c83386a09fb9cea.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_6_2e35356f1f6a49b3f56d3c6354c645e307ca4c3ac5dc05c8d622dcb1.root': 19L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_5_76ed071403ecc7f84fe352ad31cbe0574c452ec897e88ad5fcd0e095.root': 13L}, 'QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_6_9cbe97669edf95a85e504c6c4c199cfd56fe434d1dd92699fef46a08.root': 57L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_2_83708d1d697f2044d5d4f36cf9cb880f17b70ea1441fcaf93009b3d4.root': 36L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_5_c06ebe40669724a467c69efc64e3c7653f9085636050a9ac581fcb3c.root': 57L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_7_43ff34f506eef707e76356f2aa2e45c2a4618f0a5dab24aa58b53b2a.root': 68L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_8_f1640796668213e6f817af3c7c0f9fb745db3850ba80f4615fc51892.root': 76L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_3_a96240be0e219c54fdd220bdd07d943cc2783e7c6e3e92b157f77fd9.root': 45L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194813_0000_1_85586474339eb89a78654d14ff8ba72a7b1a89f3999550a26ecfe992.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194813_0000_2_098872408bd4e8566ff267a2d1be761b2821784429a879a1a26d5b62.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194813_0000_3_f36b3fb1209248069e4cc4da1c6141ab4d38198507d88c0dd8a04def.root': 19L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_1_a9c3ad048f6d50c95755f34626da57274080d02fdab2d7a3b408c37a.root': 28L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_4_f20644e4fd0a1b17380920c66a7b5bf362a68c062786a3320aaa5b8e.root': 53L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194813_0000_4_5797e8d4f60fbda2ed39c80d9424005f06bc87d844de807dbb195fd8.root': 25L}, 'ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph/tree_-v1_190523_213825_0000_1_7ffd8ce623a12a400294d64ed4ee938bd776f2d94a65462d086e18fb.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph/tree_-v1_190523_213825_0000_2_75981b5915b13a9aac69e3bb3509fd21366b3ded7b1aa61aa7c617a9.root': 4L}, 'ZJetsToNuNu_HT-400To600_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_2_b3aebe6503ab575975a3b4f91342dba5e15232c6094bebaa926a2fa0.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_4_7d06d0f72497457d312cf842eec26fdebbae7c68f1a3698cda01ea30.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_3_517b5c3261e54b0fd11c819ddac32baae6876c98aa30ca09f9c7e95f.root': 9L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_6_43bf66462bde076a9aa905b92d752ea94b5401d5409d4ae656a75037.root': 15L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_11_e644e71255f2cd08f254e6160d4f8729bd6149edcba9939c450fa704.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree_-v1_190523_213905_0000_1_a5434bac81a9b053443411496bc8066165d1a93a36d770f45fdd04b4.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_10_4445a70a90a28c467e28e81829a1e655016f5473ceabcd6a5e7f3374.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_5_8b2870f6e7dc2cddc73996a71365d2042ad30b44591dcd7ef509bf14.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_9_b85cfa283586a53f82563cde26354cd3d06160fb78b027d63e0f3605.root': 17L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_7_737832fe4c9bd4ea87501137cc41b237dc7f7f45ac5718c9ac677cc0.root': 15L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_8_b600e0537a6de7a76e8388fbe63ba6f4383bc9f3b928bd5c67b948f3.root': 16L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_1_0f900dea914859f6467aede26df22b7187887ecd81730fa666c8932b.root': 0L}, 'QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_31_d0023c6fdca27197dcd68a8324e34adee4c27079b186140380130058.root': 16L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_24_93af7e3086c3f71cae4c3b59e33f35012e379dd5cd19cf4efe9acdac.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_4_1352d97436937a5be1eb8a54e27ea17e24ecac235fd0e8076c7f0b8d.root': 16L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_19_bf0644f8636b399ad13fada6476f4e275af65365906b922939945bf8.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_12_0f286fef695d8f3b424d9113bf016528a679b182cc3b07a65a797a60.root': 9L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_17_308b2e78d882c0ba66c21780e221a6a096182a244b5e352c26254708.root': 12L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_28_e2661ce0d50fc330f5ef2deab045d6c04771475e2b8286a263e8d2ce.root': 16L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_6_fbce6e1d9725450a0615d4014ce5927eff387007eb38ecd268cf22cc.root': 19L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_15_708817bbaf52fdc9f1a06414e5445973642d39ec9316aa842e424082.root': 11L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_29_f7020c1b11a2cca43b9fa5a3385e5db814f83928974fc7b018c88861.root': 16L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_34_d2599d4f11a84c0ca6e4100c1723190da6f5e078d22d094eca415595.root': 16L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_7_d596074ee238eee857328f336aef145d2079d6ac669f05bcf0848784.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_4_267bae5f3d55c1250d3c9fa5b5febc6ad944d13a208ea99e8c65f63c.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_14_2a4d626fa3f6ca47fc67852d08578281f2f5801cc908e64ca061d400.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_16_e87bf763ba63f3817dfc84ba5e567178708926d248d6566fc039423e.root': 12L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_27_6c18614b8dcebd0dba0ab4a5365aa6ee2e395722a28e9f1c5ef780d6.root': 16L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_5_f5154dad0fdb8234be55d79d65bb9004077519c272c56bf5ccdcd661.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_7_48902f084da259e72adac5079e9045e19a830ed20486293d294c8849.root': 19L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_20_ef5a4f03650d75387025af0c3eaf909cfb8df223d2a7d361a7aa3975.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_8_1bad0970f625841609fbeb3a0578053eea08bf3a0c3ccf865af1bca1.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_21_49b788fa3bece595ab957808dbfe21010aa5264b8dc627f0aeccf4c8.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_3_b2fb0fbbb6d67a4d16027490f0bf98ea21d6bd552439758dbc125dc8.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_9_168c86b90e1eed4f168bd199477e0310355b6dbc745523df66cca1a8.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_22_555873da715567c375e9cf559e5e8b7d10383f202d987b993f6ad070.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_32_2254eb1125b4698b4ffe6a1159aef93cc2b5b48a97ed694b67c96a43.root': 16L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_18_3c16ad06a07c048f3e9ee932209af59f35f2413b4835aa5f1241f729.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_10_8eab575882f79486217c951958e89ddc285bc0ccca83158b4b1c2744.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_13_dd0b920a533311e162483e388b1660c74b02d482381a44a275994b88.root': 11L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_6_9c78f5611510faeadd79ba57202c64d91f58f1f4ba4482b28e5970fa.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_8_f349bf044b69aafee33f883c39ea4de5cdf3ddcc107e217a2c58a37e.root': 19L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_13_d75e97f6f97f5f753bdd21c50439971acc67dba791caaed6639ba8ed.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_23_2f31e1da185cc69c5219917b67deba06c8c6d17ad53e51192c7f0288.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_1_399b1ac2357478aeca326859a410911cb198c09e935890968161703b.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_15_6ce14a3d3e2b5a221a92f9f99d1b61586f13281829473d557da8ea13.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_26_c3feb4f7ad1879c8159b2bbf3fa6792bff9b659dd29213588b47013d.root': 16L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_12_fba3d26e155745a43664c73a79fddac84ecd6b1f3ba292c8cecb9eea.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_2_c756197a7e36255a92c22b9cd0f68dc077822af8875d411f5edada4a.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_3_da5ad961268d3ed283beb0b09982e770b4cdbdd169aafcd0e61fa297.root': 16L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_33_0244e8708aa25234242b3c23fb42a5a5ca570166e50dfa31c4d565ea.root': 16L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_9_8defa3b14040a02a4f32bacb70bc6bfc42bb07701e982501cf88cbc6.root': 19L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_5_07934e48339455675401414dd946ef1988639eb3e779ae3dc2287476.root': 18L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_30_148d01f52bbe9e1bbdb98ddc8822b7ef2df8159c8e6ba227fd4c8237.root': 16L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_14_0412184d61b13da4d941e007454e851369b159f46b365a9d67af4329.root': 11L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_11_b3d38c829a87c799cfc8b788468dadbfb1b14f4512d510913323d5ea.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_11_f2661bc4d1bbe96d10f99c847e42c2761e37348e33e4765c02796778.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_10_5c599e3cf965c665bf81a417bbcebf799e21a02b0eec89cd0ddf4f42.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_2_575f59a47e2ab527af22ae7bad47c951f5852943a963621f71b359c5.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_25_6f7375c48487c777c40606090c5797dab0f74ab8dedd05feccee45e2.root': 15L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_1_ecf8a65e1996e2b78401622ba2c2548b5ac78c50e89f6e81e10bd6a6.root': 8L}, 'WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H80_190606_071404_0000_3_f6366fd1b9a371fd2b49401825aa9ef7e6ab469a16a2b0c21a43e494.root': 37L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H80_190606_071404_0000_2_148bbbf3af94636f33fcbf1451afd3739679a876ed933683b377a302.root': 20L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_4_036f2dd5382e999385c5944dac3614cf1245ffc1f8c4cc17e57b2aac.root': 159L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_5_be532c1c555ad615933fcd749096a6eae823649237ed1f9153434dc9.root': 177L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H80_190606_071404_0000_1_54c6e3b93fcf17d3b75d8241f75abb295199c6dc6932c860e0c21636.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_2_522e806587d3f1cb9ef0124b19f231ef08c748d5270844ca4fd15580.root': 116L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_3_d0e393afbd7f72931b20a9ad8c21e23c168b2acfcaaa1fd21d96927b.root': 133L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H80_190606_071404_0000_4_922ce1c72f25497e01c86f10b785c1d03d31f4e929d41cbde9a6d089.root': 56L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H80_190606_071404_0000_5_5a9787b6603fdb776589d0a78e84f664c717baa76e70ac99fead5f75.root': 74L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_8_92d2b2a1e75aa3347bfc4edd1bae3808b3742d960126a4b633f6b521.root': 223L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_7_2be8163c188bcfd00af6064a347cc55f323f90dc50d907b555aa1f70.root': 206L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_6_514b7d7676de5af8c32c662c39c525cbd88e5a43be19c352f58822ad.root': 189L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_1_48c6848bdbe43fb32c1f2015233b95813ea60beb688d03d71236720b.root': 95L}, 'WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_16_20d9fc7ba412d53f5af2b28bec0ef17e3ae4d795a21c9e9066a299c9.root': 463L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_17_ebb258887dbc90990e10e8738b44d68c6f8158c15c91e32fa93cc1a5.root': 498L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_14_95a58a93ba2462cf966d8db5ae679c610ab6e8b71a9b1aae9405d5ad.root': 373L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_9_8fbebf48c3c9c06507e6e57a1d45f6d60c60e627acf3c6f57ec53e39.root': 856L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_2_f4543ceea4826470bd7c5ab254b65dc6fb6cca8d2a5a6619f677a201.root': 498L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_5_2ffb4a6156e76808ca671591ad5a8776ca70de276dced0c2fd9f5ac0.root': 135L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_3_06f748a420834f05e3deba19caa1d91508e640e77fa56a1b883d1396.root': 564L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_4_729c617a1ae56fe6e8f3e4ff2e2c5c58a977bdd147eddf671dd1c4b1.root': 74L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_2_27804605938813f93aa16e903dc494e5cc2d31214cb78660f6239ea8.root': 11L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_1_0661433d63311d67fa93ef58cbdb32d917e8b34ef6d37af7825c44cc.root': 163L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_6_18d3d08776bb23ae32ec34cf3c12c96e677c113c9a5e3965d82763c3.root': 716L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_11_d048e7d0e779b4f9bad0f75315288ac5995d57bf0b1bc9436c38f621.root': 262L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_1_24e03ef54bc3ee626073b5172d33d9c0192114711f4d79c549b1069c.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_12_0432d73c8960d1eb142aaf970bd6a4173ea27b72fc800ba0f208c1e0.root': 289L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_4_91f5a58b84be708a53818289b9bdeca27f1bac9b484c45dc2654e426.root': 607L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_15_3f4fd668df0c46cf8366c13929b1ec05a6413df8c2d5a6fabba101ab.root': 423L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_5_d216814a1080981644e1d1c393c81fc5bac8af337b83890403c875cc.root': 673L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_3_9d6ca49b6974d7030080c6732ef9553ad0d606ffb8218f04d4e8fae0.root': 15L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_7_74a09cdab1f1b8ad0d18127b04499ccd11b842df3b02592102d72e85.root': 782L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_10_1eaef293964e12f978204d8a7a7ed03f2be7bb0becacdd30b298da2c.root': 211L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_6_40583eb75d74c43707dfa860ad2d012abfb0a43dd9c8703b37c6470c.root': 163L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_8_e3b9f1d607aadbdd6655211897ea9606eb40a531d70e557aa413d425.root': 826L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_13_35aaf1f88ed83a0799fb08e0d4e42c16eafdf84808146a8e6b6e16c0.root': 322L}, 'ZJetsToNuNu_HT-800To1200_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-800To1200_13TeV-madgraph/tree_-v1_190523_214109_0000_3_0c16a462d14ff76281a76b6b265b9a7ebfa45bb9a6995e923706d592.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-800To1200_13TeV-madgraph/tree_-v1_190523_214109_0000_2_bfc00671d3008fa55d6c581eaf6d70cd6f974565b69c067f9826de75.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-800To1200_13TeV-madgraph/tree_-v1_190523_214109_0000_1_4fb88ccc6b5edbfe8a6dd2326f159b45601c52e16f196d2bbdb10841.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-800To1200_13TeV-madgraph/tree_-v1_190523_214109_0000_4_a82f827947187dc26dffbc5043ea11eea67ea50c2ee34b03852bb9d8.root': 8L}, 'DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210225_0000_1_b54bb92c17e058aefc2878957ab947dd0c32ddf0d8929ff5e4884fe0.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210225_0000_2_c0196d16f5d22cbdc43e85c27e5e3be89f7aa8ac320b79dda6ca82fa.root': 201665L}, 'ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_214150_0000_1_f3b7ace6f6ab80552c75a5722141f61abbc33e3fb9a7c9829029b3b5.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_214150_0000_4_e91f513377fb7abf9cf84eb0339ed468c8a5a89b75d54efab4b75647.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_214150_0000_5_2655e47e7b031064111944ddef9806b37080df49bdd60f561950c6c7.root': 0L}, 'QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_10_3e319cb9bf4441de6f94504a28cf8244bc22f3e16250e68b5b50307f.root': 20L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_3_425eb6e21735bd76a7a6d4753953043210416cf30d2bb8add77a0239.root': 37L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_6_b5207de1a09b20e7fbdda068b580d0a3e3bde3c1ae441a62e908128c.root': 50L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_1_2888a55492b095cc2fe1005a3c3de4d055b208e390b4dea860028536.root': 19L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_2_a3dd8c98ebf9c998f6b62f093ddcb9ec0a03eb4ec8d2d87bf656d424.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_12_3c3648c619a65b6cd4a80b5bda7e01ac9880160c698e5fab09b9266f.root': 23L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_11_021f24fa5983a26fc97a59483dd09cdc411ef5bdb6567cf9aaae0e64.root': 20L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_4_fa96cc70de4793dde3fe4600fa9c05d4d02bebbc6d8ea62fce9a2c81.root': 38L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_7_49eda309a8a3b3d4d0d7b5adaca262dc3427a5ce31ade42179c6b1e6.root': 19L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_6_3c545dba73a359bd3733cd01de01641e6e501a3bc1490d8e53af8c97.root': 17L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_5_b8b019ddea47e3ba90faa885ab0dd9cc32e909abdd1e971497bcf02e.root': 48L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_8_5f9c12e80f2e4a8a334f8d5f3b5ce03b9b8b8af9059d8c14f2e0b472.root': 70L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_1_f930d83c0e65c6c4b8f76c2b1f0c8da9123e8f1910c93e4d72caf772.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_4_3f959fc47d79897a6fac0d72e1a7fbd9fc744c1d0bd21e05170a3c1b.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_2_2ca4e1ad91d003cf68655ba3277b63c6cfacda81b9370e4185d40153.root': 29L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_7_be748ce6611c00efb080c806d6fefe682f507c85f13f5a2233568937.root': 56L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_3_7e44207c763263ee65d342bea8cbb9c5e43dba495794d783daece5a5.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_9_ac89e2ad505192153e035b269c93b4cdf6f2d1cc02ca20f5919eaeec.root': 74L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_5_871428d5e716296c6c3f2e587758698bdb2add3a215b288d1a5405e9.root': 15L}, 'QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194924_0000_2_021d46e5341b643a462a88d292598530b56805cd90fc9bcf012900e3.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_5_f7ad6e98373c778e602e543601a4a61d640a50493df0d6b1e777a831.root': 45L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_6_144faa829ebd2220d0d017776939683be1b7fd1fc42bf24e23f505de.root': 56L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_1_9c70af842a14291b1a340f8e4cb9bed9628b9d8b3ed3ec5590bed198.root': 27L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194924_0000_1_7d5263175cd3a9edb96d9ac41993aa051d54aa02f034285065db2aa5.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_3_f22465168e6d104a516281bd0833e7f05484cc8431a06091a99547e0.root': 36L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_2_c64e7d98d971369f9bfcaaa7f06212a425eb175ae25edb295dbfd809.root': 34L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_4_740766ec7030b9582fb3eff673cdf2df26236e5823df7cbb6b05afa7.root': 36L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_8_d368cf36d997ac9470acb29d0732863dd6c294d5ac03bbeecaae0cc6.root': 58L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194924_0000_3_9a88ef677c1dad8cbf12debbf46dae0fa6e896b43a2f10144e356105.root': 19L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_7_ab7ea7a8520aff6470f8ca25411988a61568231ee91a9b9e966d756d.root': 58L}, 'ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_14_80ffa96e4b6e6630f964348748fc94961b5283a8df420948546b3b06.root': 87L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_21_253bc2afa4786b14f2dc6a37fec89187e03d12bb1340035f385d4632.root': 333L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_8_f2dcc70b8507f165d4361d9b045a377e8ea188639b343514b2b8ba52.root': 1219L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_39_d9a691f303fe56fe9955c2ea76a685333eb383e4baab1992e7b961fb.root': 913L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_13_0884c6766ea671ecb95ea75565fcfbffdd4b3125c47a4830c4e0c6ef.root': 70L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_20_abebb60b2141c6a8eac7d5958c1008772e61f6fd098a4c9f704e8528.root': 296L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_24_afe097fbdb930b73a05a90fada1733cef8d42fca61e5fa346d357c7a.root': 410L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_28_466465dca502ce10f260b8e9e00834a244fe361b464eb7063892567b.root': 554L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_9_eb1a789e0a8513ffa35e57e8688ee1b0e7797588f01ec7924f077071.root': 1236L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_18_df691b59cca7b2bb9e7f7052377ef07f934b20198e1f81d10a032f7a.root': 219L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_37_24aa9e6962eb461c3925b749b2e3ef087e73529bef5a18a7022ac5e3.root': 849L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_15_c26273252a4ab9ecf25b59b8a573d22b1983f657d5256dc6628763d6.root': 127L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_25_f23dc736084f1ec20dde022ef92666ec5c07d74ccf1ab0ddfb44ca4b.root': 457L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_26_33d8eb4da86da2662649d24e6546b56f7e61ed308d65a1f94ef4ccd0.root': 486L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_12_8ee2286404a0edfbb1c2efd6eae6a469f7bc618d28ecf996d74f40c4.root': 69L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_44_0028d3d1a1f59c6c9b1b48f5c1b8d3bbcc42fe7574e5452d9754b278.root': 1093L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_31_81baeb037151c7aad75a2fdcebfa0423da8182b3a02626d44db9583c.root': 660L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_38_464e12f3453f0961115633538e373cd97e1748b60efe828b1b8a0e64.root': 887L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_2_010aec19d36bd1072e2e32f4332fb9ece0cb91cd4aa43187e6c46685.root': 283L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_33_b0083338db1595347f0ce3d4d3de874d6737a93a19d02e5082342bfd.root': 725L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_1_1b4afbc353e2645158d61cc56020b30bb151e6c9fac46897164d6272.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_16_bd0821bca3e2d8e7ed0ba7b80e1126d4bc626aba13dc814772772c4a.root': 147L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_41_5408ed70d6bc73fedfe5edd6a679f078f4385fd44d7788f08a072dc3.root': 986L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_3_d5c3c4a6e12fb3cd1862807c40351bd6f6affcac03419f12623c65f4.root': 626L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_43_4f36190bd44955ea8df29eec0f5fe6230094b31f99aea887fb4be358.root': 1054L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_5_98dda8a1c0e503929bc95ca0c8b2a2e8451669d633d5ec638c3858bb.root': 1118L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_30_0db26f4f138938d4889477e09d8cf112551078ea7147db2b08cf0f39.root': 627L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_4_8b429679dc0fbdf7705ffe047d9bfac200b306358e4bec31dc8637f7.root': 946L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_17_c5d8dca961c5a5d6774b94c33187a810d44384b7e15489ec95f20bac.root': 182L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_29_281334fe76ce6746113b93e7d4133ec11d3da9fc948620c59e9362cd.root': 597L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_10_382bba6fe507ddb7dbcb46769802058fc3c32c25991ef39a05ee1b26.root': 15L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_42_e11e4ac95dd75175dc2a626f32950dd0a6f67197e7597ccde21af37c.root': 1017L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_35_f0daa86c29e61548f7c4a889827a7618da312917f1ef3d949a3ef358.root': 802L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_23_8a84e27ea335c543063e9be88dfe68495831e230019ec62791368d3c.root': 387L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_32_d654a26e5e94744f9be18aa986b96e93fe2ee9e8dadcfd51d7b360b7.root': 686L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_19_8781df695f4be4953d418798b7b51a0acd0c7c2e62bc28a8dd9ae467.root': 246L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_22_c6c2d20afccebc5856a6db8132518e58abcb480a2d7165f20f78f9ab.root': 365L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_11_e0a30c2ad0bda8aabc2a18f50434ce513047745f345bc273a6c50bf7.root': 44L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_40_80ab45a38169ba78911b54dfb3e2dbe5e7584a20756bcca11f26267c.root': 969L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_27_66cddaf270b017026744cb967f74fc6a7df85596fe589c12c6373444.root': 520L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_34_9a90993d35a48326e445b4ae1c4b1ea5520b9128bf0d1f9dcfe725fd.root': 765L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_36_a83895999634a148cd70707c38c2fb7c3661e251ce8559d1518924f5.root': 830L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_7_08bbb82e6d806a198beeca875c521e5809738f2fc5a18efb962d129d.root': 1188L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_6_12bddc00e2fa293fb5637ca2155a78d0b9cdd13a8e35ca0782d6116a.root': 1154L}, 'DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210505_0000_2_e67ef328daf49dbeec8a464ed5aed3bd0b978b8646469ff1171199fd.root': 107064L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210505_0000_5_f5b191dfeccd98b09f48b4de02d557ac1a804c62f06a87b6364e0e15.root': 314608L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210545_0000_3_b253e9339b57e45de862bd4a2dcc2c335a244df6d9c1f3ac3cd68686.root': 508489L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210505_0000_1_f3c749cbd9d90fa5e684891cb0fb82128ecb316b9027ce1f3f3ab9c5.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210545_0000_1_0beca7cc27b53669db27986b08ed2fb0970456ebcce0d369c329f469.root': 315520L}, 'QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_13_f887dbc840a042998d4421d15581b19921d6c88661087e3a918a67fa.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_22_2130315709e215295a7c52048086bafab590abd28ba42aeb4908725a.root': 29L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_15_20423f83dfe6f46bbe07dea71cc15d31e105c79e8f9d331da816a090.root': 18L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_26_fbc28e167618b290cb05413234352c90806bc2f6846a4ba523c73e64.root': 35L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_2_5c106ac8811c74dd4917db348adb4d092d15770c40122c78c82bb198.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_5_ad3847b1d54be3a88632fc71ab08da17949a4f5c85e091c16014fb93.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_4_eecf06d7e104a7480eb23185bfa7643dbe70c149e5a2d6c8eec8475d.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_15_9e2d6fc76fbc8e4c9d65c52d76128bd00b4887c70a42f609a53efde1.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_37_fb1caa3b003e5bd16e03b43603f5809d1ed1f68e9d863dfb4fb887f1.root': 46L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_6_1b4b91016bf77ba4f73a4e07098cbbf55cb4b01cd38fa2c0f7640daa.root': 12L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_28_a0a5677232ea96aabe77233eca243a7adc7fc0797d0a88f9f07f2cd6.root': 38L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_16_7f32bf1dc12a21ae70c715c052f4f72ce5b1af8a3ac0a412abc1447a.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_25_a613d0488e00bbe2a04d84e0249a41a0e39ab778ca9f8482a955c3bd.root': 33L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_18_f9eaa81ad7e3900fc76bdd14db0ea392fea033e5fe2a5e0aa0cb869d.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_8_bc3701a89bf6a0e9abb1adb191fb5d56f9caabe7d6834fc7004b4714.root': 48L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_17_d113a167a1f7f526d75efa2a756463fcc1833cac7b8a02157da761ac.root': 22L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_1_005aa1ab4aa37b8d627a4b3c6784d442c2e51ca6a50f339414f91816.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_11_e63803d5ac01b626b94cc4f6c5cef4a48f51eb198b26886c798dd3a2.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_35_501a1b113c801ce826dcbfb4c291cb47074199e7e147b890baab860a.root': 45L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_6_c0a9f23fdcb577f587831a0d7ea9faf2d19156a95b77837feee32963.root': 47L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_34_f6f6213475706c67d1a4ab973589822b4af95900ab1edae8ce72cafa.root': 45L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_12_b7bea85fe3deec3c1534aeda148b009104a71e3b27b51fbb8cbc57a2.root': 17L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_29_ac4afd73845660e2eda498a0b68855abaceaf1bbe5a535965b656046.root': 39L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_1_7341fd77d20e3003580d0268682ff0689fb3cdcf6d8aa948f601861b.root': 15L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_9_ee3bdc02ea5e3e05834fcea3091b256ad16471494a6dee1790e5ed63.root': 48L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_7_b58793dd5f6f79eb2876a79edb883a6152d334a455c3023a2240ac46.root': 12L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_18_285e4e573017e9af3490bf6332df9329b2f110d299de799c3d1cd9bc.root': 24L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_16_25a2da486a793173fa5ec334f73fd3b52a21f7da519d7b5ce56fb683.root': 20L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_36_e39d3c842d16fa01773402d478c51798ce357a4e45641a56379cfe82.root': 46L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_32_7b5c075225d29468e47fb83f43d4143d96eb18642b0ae20177fb2865.root': 43L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_8_6c5352e94564f312ffdb9dee05490c6c2427fd6d91ce701cf38439de.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_21_ce691c7a62533f34ea18a02a131c41a9b6f2feb23a4ddb24401d1adb.root': 29L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_14_6524c76f9140205cd23d92134e72c874451b82666b67b47072e333ea.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_13_1016fd887929a505f6be2e703f545c2ebf63893bc62c7b86afcca897.root': 17L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_10_3d8bee55eb6219d9b5cb4a62e0eee0776316abd5fc83bf794f27e5e8.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_38_c8a4c19313334881dff4b603be9372701b818b56f944bbbde6507263.root': 46L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_5_cfe3064251f071e3149ae8736998a398079272213efb52f4d63124ea.root': 46L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_19_6dc9d58f008b1972c07b7b7ca896d48c2e55bb8a45cdc49e341cf042.root': 27L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_24_f7afa4f7a824ec7e44c99acb9c00dbca027ec72ccab321519415b70c.root': 31L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_10_9fe6c025a4da51c4b7d435e6c47276eff67855f7204fc274ffcfc83d.root': 15L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_11_1e0fd6a9e6087d0e273592b7d0299a37e986196e0db4288b506424f2.root': 17L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_9_c4aaa240e4bf07ec1e76cef9434087491153a25431d2509cede69876.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_17_3069ef8152e3c4cf048821bce7aa2a73a8a220915df74ce734e468b9.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_31_f79a5e0309b984df6dbafe19a59e1f44bba508d96571d7fcb8942902.root': 43L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_33_1f11dedb840f8a82a8b0ad58efdc1752ccec8657aa640152330f4df9.root': 43L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_3_0a4fd3a42d48f6e95afa7c0818cf69aa907f475d959bea04705bc28c.root': 40L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_14_57b6c923b646a233943d35bd818a9eafd0aaa8c49a78c651cfc74a63.root': 17L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_7_2940ce54852b26e0c1b4697a8178187814439d2b5e45316e2e034840.root': 47L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_12_b7131072747208e39eefb09a41575158ffb3f2bdb8a3a6c122a1a2ab.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_4_abf17321a1add79b866514320cedc3ebf47f8d7c21f65c6a8c6569e6.root': 46L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_30_033a5c48613c940e91087cf17f74c4eb38937db0ef8232fd539a1605.root': 40L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_20_40b673cde63aa599398b06135ed99bf0ed5deb2fade2c10b4faa5674.root': 29L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_2_cb481e4a57e01dc3ee6405563ad7251e32a71f2723005b48f88f93b0.root': 27L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_23_cef3118c1d0489064d2ce3efb0d8b8ec8e0d6a8b1971e3f14708987c.root': 31L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_27_c30e40b7ced7df6dc650656a25b5b4284a0b92b3d43254241230e697.root': 37L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_3_02d1378614741099a12f03bb5fc8d695ff631b04726e16c7144fd10e.root': 8L}, 'ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201112_0000_10_0335bc03c26981342427b7c9fc6fded0a2f8f4d2d6d5eda3f3a77d33.root': 97982L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201112_0000_8_8cc727a19fe71d9921fa981b2d152fde38b8fd5ce38838526186aa56.root': 574712L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201112_0000_4_1ccf7dfd4aab60a0ada3efc94c5044c4b6f8fce4705e12a9611ec010.root': 271296L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201112_0000_6_526901a84f643a8ab0d0cad346e5a29b5cc92326ab88ec0f7c32e140.root': 350751L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201112_0000_5_baa60738fa218b6bd65636631b440a5d30b12bc310188ec2112b2a56.root': 343075L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201112_0000_7_5d311a82c58c9056a9cbc1fe4291d2da7bb52487f6e89514e30e5d16.root': 451824L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201112_0000_12_cf9a84cb70412b63b189ca5f5bcd9010000196a5e5a73d82110cb75e.root': 189787L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201112_0000_9_0bb95e93094b6f0807e593ca797baced4c6b8ea65c1da53211e0e2df.root': 671532L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201112_0000_1_ef961048e8969db684615a1f0605ff730f231dd0b0792e5c36e08521.root': 0}, 'QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_17_a1a0d237c41cfc369cc944c584b34a43459d52746896bffa950de887.root': 70L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_3_bf89fe89d1ea21a18bf067da61a310558a076f43bad3ee568f7fd2fd.root': 18L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_23_8387dba763d06593e0440ec7596077b67d58c83f64c53681c8150e1a.root': 82L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_10_78ba4c3b9ab3c0ac403d7d1badc51819af449ce0ddf65c624c13d808.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_2_809a05de77b68ada965ca86967595e167a4b511d222c438ac508f725.root': 17L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_6_1a912b49a527d02c6c849a52e536176e38a626b412ea82ac661e1241.root': 34L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_12_1002487dfec2b57232ab8da70473c14998770106df927ab66715f978.root': 51L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_5_a0d4a628544c3013fb3ac6696ef6da01cce689d85acacce16f087761.root': 89L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_12_ebbd8b9e206755b3ddc3afe28bd00288df1c9c1b5a4f0bcf3147f9b5.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_4_737472e64d7734f886878cbb548bc46f168477eb10116ecfd87b9435.root': 88L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_7_8153865d0412e7e6f0867ed0524137690864b3be693b327e9dc3e89f.root': 37L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_2_34a664691eb4665376a74258a0bb2a46c6572970c7c5aa54d3dc0abc.root': 77L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_8_b77d6035ce5739ff8f505918c0bd50d93a4f32ed7fda2259ee6f348d.root': 39L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_24_43504b72b7fa87683a733a1d98a3a4a50c951866e00af009e6113fd4.root': 86L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_10_413c3bbe11a26dfa11cbb1c69bdd0eac475cf52eb0444dbf323ed80e.root': 46L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_14_8bf45bbad7e6ea6d223af0a934d134ce02be270cd0368bdbea5cf80a.root': 16L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_4_bd4e2de673047ac058504ae5cfa8a59701eb05d2353ea4cb1b441cfc.root': 21L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_19_e05eb46a6b04472f8acadb7242da1c9832cc5f5d46f21b79ca8f0a37.root': 74L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_3_ab918d33558c4517cb192f94044ad56ec3f84ad3148d2d57917775a9.root': 87L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_22_619e374419cc22ccb63e97d09e4a545a612d78c12a2b7a41d5b4d1db.root': 80L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_9_724a64470569f242267a848db3ce450fbae6e4592994ac91bcc0bf47.root': 42L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_5_63600ca1210f5e668efddfec111b422a43db2a2cc895aa35cafda9c8.root': 27L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_1_327a0f32a598d38b2100d210b79ec391026368f183ae19dad4eede3b.root': 46L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_11_788a00101ead1e2b6eac13b2ae59cfa639c991ef8ccea5c9a54a4a66.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_16_853d9132146eade84956ff941eba0c51b1ab6ac6d71d20e83c0e6e8a.root': 65L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_14_32ce22eb3c7e9a6c3309bfcaa764b1fba08d587fca8f2cb6c9e44ed1.root': 59L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_13_42d064e600a11663836a314ad7d39258b3b0c381f26ef068d556ab8f.root': 57L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_13_a8fe6e53ccebde99f43115ae3d150837cb030096874fadded1e786a9.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_18_054343c09315130bc55f009b461c8193dea0cbf1cfa42121bd9b1e0c.root': 70L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_25_c4368badc4daf5713b40c2433ded24fa0c34714e7d0c4bf1baa52991.root': 86L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_7_fb7bd803ccabb62a97aace0066bfda8e0b2aa1dd908bbfb6e35acfdc.root': 92L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_11_860e75e4251ecf0dacddc419f4ab7e6703679f9519d1b1e8d1a06617.root': 46L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_15_88e6c3c98c3f5a8847e830a803169e54c08c4904dc39a3458ad03ed8.root': 62L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_8_6d522c20be2845799c751bb83e275328423f9bfd42cbc9188a76d9ab.root': 95L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_9_f23f8dc4a350d427368bd3d715e1b2206de005c8dc8bab2cac1ebfcb.root': 101L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_20_25b805a75ebb47812f608b196ce0d5f669c9feb6165db5b64044885e.root': 77L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_6_8f37b9ee98509b29590e767448342828a0b11d2e0b96ee05d54531e1.root': 89L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_21_122508a6c4ecaf2ec559beeb1df94b0b39404bba868cc18e671e3188.root': 79L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_1_ccf0b7cc494793cdb030f399670de5819891d62b53e2128fc7c11026.root': 0}, 'ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_3_6d7756240da785cd73162ef8d44fa4d4732d631d58b903f6a7bb56ea.root': 10606L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_8_312f90fed942188af163aad143709da50e6299b471b2976bf7cb190c.root': 26985L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_1_014220020e362bd0ff4187731b1e98affdba25824ac4b0aa4b781b4c.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_7_8a82f15c79fc40d4434f001b278c52a3f61e26af753010aea05bec85.root': 24881L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_4_e5f2437c5fca3cc793943491d294628e757d191b97a50f2ef1a4d90d.root': 11762L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_2_8e605f2d7931c86c29aa00e6ef7c3a1ab22ee25ccaabeea633350183.root': 4916L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_6_56f7cd1ca949aeaa3f6b78a2065c5c7275779ce681121fb5af9bfb6d.root': 20726L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_5_da32d1cddf3c421ad9b288181c8ef1280b638d61086a5ebc5869b87b.root': 16284L}, 'WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212113_0000_6_3e8ed993d75402295b73130d213fd49e9fd8d1a4d0c367223cc25b67.root': 87L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212113_0000_7_edc72d7728a38cc9de938cef84f8aa1b787823072673a62baf23ef5a.root': 166L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212113_0000_1_9a4de8edd97ebfad89b62b6deeb9243788e664a3fa8176ff8a93eff5.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212032_0000_1_65b849db80ee209901b9c9cf01d21216cb61e448154e4913260d7ad3.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212113_0000_5_9cb10619c0a963534709d75f0c28557b7d6d528557b526d8b05a76de.root': 32L}, 'WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212436_0000_3_cd1a96d67cbe5ad6704c4fa869162dfe0a96312fc56a9c7cd94f55a5.root': 124L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212436_0000_4_84ce3a5d63cc8ed1ee5c9f790c86ab0d36f4f39343869a19d0419805.root': 139L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212436_0000_1_0e9e5da246edeaea8761e0a15c86c9d1c682e1a4bc958ccddb940506.root': 20L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212436_0000_2_e01d71ff60c8fcec959997d7230aa9894aea7bbf45e548612e0296ce.root': 84L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212356_0000_1_90ffb0f57386e4b096febf370f8cc916a94182817d2c7c816bd4bf2e.root': 0}, 'ZJetsToNuNu_HT-1200To2500_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-1200To2500_13TeV-madgraph/tree_-v1_190523_213536_0000_2_779962a3fb891837d8969fea9baa9c1051c7c8ec0b0df1fa16e166fd.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-1200To2500_13TeV-madgraph/tree__ext1-v1_190523_213617_0000_1_0b38f6dae265d36ab081e46754c61808b373e2f0a03d16f0455c28a3.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-1200To2500_13TeV-madgraph/tree_-v1_190523_213536_0000_1_63f63ad0bb269bd628c24ae47f5242d131c40d47e323bfe1190ec4b3.root': 0}, 'ZJetsToNuNu_HT-100To200_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree_-v1_190523_213408_0000_1_804b8a8689af098c1d2210c54c6c047a3679f5a6f4f4295fb5261b7c.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree_-v1_190523_213408_0000_5_0d7c6abe3754b71b073a4b72bd180ec22095e5b225347878b080f99e.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_6_f95bd5cd9abcb884356c32ea54cc926cc92c1b828956cf917981c4c2.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_8_3d19006ad3ee1247965a790beab12a41cc41a3f03feb7921cfb9d8a8.root': 9L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_12_26015ef8aff0c32d6e2caea0d5df6fc7443b4956faa6847695ebdb7b.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_4_f2f4b8f217a34df394f6b6dde9227db16bc6076f811028bdd2f9573e.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_2_0bf68f3cbd730c14167a3346759382cd1106f8d1f4da01d2f1167b2c.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree_-v1_190523_213408_0000_3_7d5cd1c42c822fa2c11fe4251d6e286ba5f52ae886640a0a32d74e85.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree_-v1_190523_213408_0000_2_44b186babdb12597211c507469b8d8ebca55ce1560084fa89a17c0d2.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_3_99726b62febf45c53ef007f44c2c761841bbd935e482019aabaed45f.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_11_3c054fb443778508a03be877b95d3fe6adf5ac68422fdaa2c3ad4983.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_10_73f09f51eb6bca90c6a87c17c4c88181d301f4a8400f41dad7434bfe.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_1_5987421b9c3faa548d00e069200bd8023fa5f09ddc0cdb41cbc60182.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_9_8c143baf32d16ef41da309a644228c24fb8a862c07d1e8fa384230d9.root': 9L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree_-v1_190523_213408_0000_4_cab4c0b3a6abe2cde677044cbcce5d566845bcf82226e7bb685b445c.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_5_2c8cc4c5243102e6ca7acbe27e433f4acdb0876b9924de7bba13e91a.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_7_6d3e8bad8bc294a7ccb31afe8d0fe4ef64ea05ce7f6790eb054e4021.root': 9L}, 'WZ_TuneCUETP8M1_13TeV-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WZ_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200359_0000_2_98a9540280182f1c9c7ff30dcd9e141e35734290571c973775bbe2af.root': 14176L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WZ_TuneCUETP8M1_13TeV-pythia8/tree_-v1_190523_200322_0000_2_7b80cf493a97a7274ab97677461a6e9e2d66146023fb0f32a565f867.root': 178L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WZ_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200359_0000_1_eca201aef14a9d572aa6e9f4461f68cabfb76cfbeae457500f81cecf.root': 6620L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WZ_TuneCUETP8M1_13TeV-pythia8/tree_-v1_190523_200322_0000_1_87a920afb3203936a73f36f195cc99ccf22f9d486b2a6437e903ea6f.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WZ_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200359_0000_4_8b8b29c62a43e64bcce8d5d1f30db8960848bedfb0cda05e8355d798.root': 25840L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WZ_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200359_0000_3_dc9dc2dfb2c87b94ec8940ff1d3326301a5329444823779957a6c1a5.root': 22129L}, 'ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_13_1dadcac7c0d7a47d39f8885b83d504b1d4da69af8bceca765f8fe8f1.root': 118835L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_15_09a6f825f8202d27f78692080dfd017f16f767e2aebaddd53f0ceba6.root': 178450L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_9_2945929d81b1cf11ff4175882415e850e98137e8855807c67aebec48.root': 411483L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_12_3fbf475d83db08f836f405b52f319ecb81b4b2169a418a21d9dcecee.root': 89109L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_2_edfedbf2edee77531fbb74eee8117660ffd9bbf1b362005cd1cea2ff.root': 204340L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_10_31b0442013d874ef417066d82f0cce82bcde99bdde15a9a1ad4cc4c2.root': 29743L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_8_bd5a4e5b1e9307116a4e8e80c6ddff7c6182340ccdb4b7946a9c32ad.root': 381904L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_5_90c2c4d2f5a4a6bb400b55bfbb6f2959c3a5db935b0a5eef47737937.root': 293065L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_4_a537ab7193d122c20ea938e2b8bcfdeb13de0edf8414c1c772bdbec7.root': 263463L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_14_44087b48de6928ce66610b1b22ee65351fa2e092595c6ac8af34a495.root': 148576L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_11_5adec9bbd4785442dcf8950e27658e218e40e0a5852e62296b2ead0e.root': 59588L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_7_b8ab7e9997962301f9151250c2e2d9f17724ae50f10b02c00ce02eb0.root': 352215L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_3_b253a0a8f4700151a3493333e789fea381eba1b4b337724465a59649.root': 233861L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_1_e4cc7a03f799620872ab87b0608a4606c740f777c4ef8ce2fd367699.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_6_86b42d9613f70d73a9c15e4d182fd7cab49210f2e14e9b98bbe50b61.root': 322656L}, 'ZJetsToNuNu_HT-200To400_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_3_a564bcac5b4014faabcb47a850993f6df085d78eb7649f0599d73132.root': 16L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_15_fe0e99f5a5d324192ae3be67537f088130ef4bb2c0ec40bc5ec7a2a8.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_2_e50fd00c197f2ac98fcf734119a5d538d3fc205b3869a93cdc76f3ef.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_11_c49bb93797b9dd484e7a75e20543a8aefa863a0b52643327a8ba3bee.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_2_1fb9a1359d634d35031542adee5657e6fe5753d875870f3a6e9031c0.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_1_0435bb76bed7ae6501f9a2e48b6529898462f12d0b1d036b7f405c0f.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_14_10b8b87976961ae60ce04a4bba4021bc3722a556a1f1fb48ae5e27e7.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_16_60baf19ed4bf76541635d5e7a481b402531a5ee5b600bf95a8d68b96.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_5_0ffece49ea51bb3814fe908e66f7bf87b8d66532443c090d25be72cc.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_12_d7ed5c0a9c6bd894ef90114e5b66bc4011f72235bfce48935da9755b.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_4_86b55da5f932b3f757d2da71eb85bcec800ef4d7419ff7813c14ea0a.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_6_4e89e06c49e1f88e74327eb4f3df9a9574b4f8f2fe97ba23481da265.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_7_eb0defe37e1c5df597ff2501c37e513797d8c0e30555d0bdcb9161cd.root': 21L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_3_be358bcf6659b6673afadf0562c75e18922e60a487e807a00806ac05.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_13_2004e9c540383402669faa23dad493225fd732acc1286ab2aaf207b6.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_10_752c957db4c36ec7b1590e4e50c6e5dbe158f0ef6b5490c2130a28a5.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_5_770d80d75ea47d18b403b94a1f907a1f4995c78f6153d9b221300851.root': 19L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_9_3896283b464d806e59d89f5cbb3ffd2a47f129df43673b9d26bb152e.root': 25L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_1_cea0c143d23200ecaa8fa22d3ca513025a475e7ae8d1a87b3bfa4e1f.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_4_b70c6d4b5ac7d1892cd3cf25597855a331e903c9981b749df4586e0f.root': 16L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_6_9d15a9d6fe3a65d37ee33a0e6c27d6a84c0f948777e7906c7bdf95d5.root': 19L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_8_49e879ec13e7a05848438b25ddae05865a8a55c191757d91001fb318.root': 22L}, 'ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_213246_0000_2_0ee1c25daf4e57056006de9262b2bed40f5dd35bff37a329beb99943.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_213246_0000_5_7430d32f81bd390941c36f5f08a0b780ae887d2a7830a49cdb730358.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_213246_0000_1_7604280dca0cdf5413412b221817a7398338a3c8eb9a086322bf6ad8.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_213246_0000_3_7c57ae2a25738ad7e7dcdd852c97305860fa0f37e1ff1ec392f1f87e.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_213246_0000_4_43469ab07499bab7fd2629f0e728db1bddaccf5a6740395af24c557d.root': 1L}, 'WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_19_4c65dbf8576d2096222ade9f52827fe313a4aaa163a4140b3e491191.root': 17L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_9_db01e108ceca029cb4adfb2cb9ed11e62d6ea7592c5973fe1932bf49.root': 9L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_24_1860422e336cd345a8081a5bb3696cea983c6641dc23e0630dbc3f9e.root': 21L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_20_5804b11c9cf9d9289b79465645a03551c153c92b05e5b8902ab50eb2.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_6_cf4e50a2c08496e1e814f3825d02851dceae8b359205ca83aef7e66f.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_10_ffc0d91b5463f90b5e8f42fbcf81322cabc69d4d12c7adcac9481774.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_5_674a97ac6c514e1a37c3a0dc4dd2e57e68e5c03741f3e65e05485ee6.root': 31L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_28_02052eaddc14f5aa3a9652a3179d03ac39d9742ba10220e207f70974.root': 24L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_13_1a7aaf03ae64261e994cb65716aa99d5e268284745d448a613f1b38a.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_6_bc6796553d685d329f22d25ca399b476e38c8fe1ef7cdc56fe1de926.root': 32L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_30_a1a9b12c2f3463152a40d171f5c7f7f499f45bbfdf4cda26e274e66c.root': 26L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_3_75416bb5bec7cdbbdbdf60a5861de29dcbc5b9bb129cad5561f75315.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_11_aff05db59fbf2558baf882204a764d679dd9bb31c4c744e54050c869.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_25_9e07f1f10d77757ba7997eba8bcdbbe959472da8bbb752468e270535.root': 21L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_17_e7d1ed63a6dd4ae57ef338fd3c7651aeca1faffe2c1be2ec9ee75390.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_27_ec5990b45d45b40f696468028483e3407f44a962d0c265f7e25a99c5.root': 23L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_16_348cc5fbae55bbab1e2dc56562837a3e3a68bd5f8c6b9e728d0a290b.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_1_1c08a244074dc05e8b233799ceca774a75b3d03b37481ff3997fcce3.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_15_9f9308074723013ab8481e74e4c729a42db94bdb7848c24398e72f83.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_12_544eb11d16fd27e965ab3939f6ee560adc3ddf5a62de053b7e88984e.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_31_3574dbedc0b64ecb6e8505eca3a6c4519ac263252d51955faac0de9d.root': 27L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_17_da9d6160d93258a19d050d5162e6127df8aff60d3415950d0dbcea4a.root': 16L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_32_c21d491eff13bed8139cad12af66e7dc46730cfc205c7a9d8afd142f.root': 28L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_33_ef24f522da7dd147f94c08f3db0a44695bf2434af80ffc3a4cc9d306.root': 29L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_1_49c962be49442003f331830071ccf1cc76ed1985fabafec0bedf5757.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_14_33e242879e0c08eda9a794ee3b74799d5ede98e6502b7a1a60f4e442.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_36_4d6ab2b7c7dc5947c254e5af575270c8e9f84e9c366487c0524b0ec9.root': 30L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_16_e7802bc4be91ee1ad57df576df6645d72d2a301f6998a382d3dab8c9.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_34_59dd3b51da5915e3678dad406bcbea6561ab1464f843f68728b98176.root': 29L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_13_4f57b18dd363077be66f3a6cf9ea8ba0466b168748ce204bc5a483fe.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_7_5414e5555e3c9bc6cc729379c8b01b4ed1a95895f08e2bd668c01758.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_7_f983a20112ee48be0a5777e7030fb8166e56222ac8480a851c3b5c65.root': 33L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_23_82ba02dedf5585200105657feac023c64d8a029dff800f044f387687.root': 21L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_19_30626b7699ba155b19965009f98eac47d827f834f530a466d2e47ddb.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_10_0af07cb55ae98bf60b95cdb22a964c5d535e5df58b0bd26cb6b5e0d2.root': 11L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_11_c29f01aadff4aa84a610979f3425a5e6d9ba3a6e7eb78a4a9faab039.root': 11L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_8_92db9fee0d1a4567128721684a163f43b5a5348dc5af529401fc1843.root': 33L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_12_30fc66238b9629db6e7af09ecf9144e12ac5948eeb50333cb1d01743.root': 12L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_5_bc241948f3c7d707cfdd7003bda0e47757f7f3728c208cc3b9b1aa03.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_26_09fe39fcc8166cecf063a746c790003c2f3b3c8b5515e8cf6c655460.root': 22L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_4_1ac02a011e997e50d33f39e05bc68fd6fdee7f2aee34f89eb5bcc883.root': 31L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_18_c5c211f071ea6173c306031f9cd6be409ff7d8f7b0afc92626050e2b.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_2_981685b98435c553452526dd9cb8db50e4228dadc529b66f45cd2902.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_3_53ac432d384ab206fdd726a4157d88bc0e0d8dbcc903d0f393b9484a.root': 25L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_4_4b264ed05077d83cfe104263b32cd7b84544541e6f0f79f23fac9d37.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_9_d131cf56e21fd99ace1036eb86007d6981a27fb13a85e26131f76f46.root': 34L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_8_deb1484ba38b23f800ccb4d9376352229b87f0b08c67b909187cbeb5.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_29_9f8a505a254731743e456b0936d2b0c43a0afbcd9316772500dd9481.root': 25L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_14_dc45794608b0152a54d1eb52aa71c14f6f6598e7f42616a223bf500f.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_22_92ba8a3c2855854a3cdca7e1552824be6540ac6b928193545fae9c41.root': 20L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_35_164ccb5c17dbee7ed2126670a98ddbb692ca4d3d3b2f60adb8898b7f.root': 29L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_15_cd904f4784a3b609752d64e889d569bf443f10ba093c6862b39bb4ac.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_18_cd53622ad5883dcdd91af4b17841cdefc3cb51ec829b12577f88938e.root': 17L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_2_a59b2d6dbc0515c2511a384e2d4f974b27a7b96a794229265f57024a.root': 17L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_21_05ed3bdcea11f4f088c5a7f0790a6caa655c4f6f669f3453b64acc19.root': 19L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_20_3e3377cba271853f5837340c312dead9ada1c8ab912e5ab51084c8fa.root': 19L}, 'QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_7_0d95186f8d2e50e124bcdf221738471ff04d480eac1b3382b02a205e.root': 30L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_16_89f8c3016b3c1d9df82415a67d54edc47d18864751e00a892fffca0f.root': 53L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_14_702c1040afe9cae0cc11462482f052804e107086ef1c71c282c25db7.root': 47L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_35_e0be799f3bc4e48245b54c8a4316ca4580f684eba6e39116a2d48b1e.root': 102L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_12_521d12ebf301b417a7d4395e93052c4b47d7e346b66d69d4bc59c0f7.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_16_068705413dd5d25816e8bd310f67ce6b888c7bb74171cbad6f65a129.root': 16L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_23_55adc6f8b886a0cac6563c98cde4e56472f9c03f8fee6f4554c7e5a3.root': 65L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_14_1ef80c222a3fcde83dc07d77f76aefb6a9327e8f077d27849b583ec4.root': 11L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_10_cdca0399e3b3a7638281f39ea2d94599fd532a7b7f605b30ebdf8854.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_21_8eeb4f86deb34f5788a45614c09a7bb257e683bb6f32ebfcd644c7b3.root': 63L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_27_eb99f8e350b0ad2a6255c557eb16b62c0949fd2dc3b86ee4c35588d5.root': 75L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_33_b3709bdc49412b86c2b26ef1b38c8b82d94360ba7dacd4450540e5d2.root': 95L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_25_72f58168f2d982f08860898c47a8495a756a2138694f593e0588cbce.root': 71L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_6_56016cc5963f6724ca881328f487f5129e3bb234dfe8289900482b95.root': 124L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_13_012f5693f8d45e266d26e6c9168db532765359a79a574f403cac45dc.root': 46L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_42_2dbec05c9c99e9b2513a51f039875a0583b1b6506bde4f1c0832116e.root': 114L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_11_244782c3b32767378da69b722ab4957af4627f323bae3f7fc4051f6a.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_8_ac56a28bb528f6248f992725fd19386ad777efa807818834414be937.root': 128L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_18_880635dc013dc746350d859d43fff07a98775384442bf0f6abb3549e.root': 54L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_38_8c00113f05f063d0f9c3daacce387e2900986027e23cd9196b74424d.root': 109L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_7_d888d4045946e7f30ed713d05e69ffdd6024e0a70b8f548f624fa01d.root': 126L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_9_281c4e19db536d44f60a23512ac8f2c4d68288934685b45b1a782910.root': 130L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_39_10821500b4ba46a2dfded07f45a8bcc6695803077c7e684c4a032ab0.root': 109L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_26_9a33ba985db2c733b3274e08e43b67fae1962b43bd445c1d1b6b8d75.root': 72L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_34_605f5b29d44ac7fc90435f5ab9bfa55006605fb22d0a611787739a41.root': 96L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_29_6dc7281ee50bf6c82e77e4cd7670b16d6e07708247037548564142ea.root': 81L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_17_3b4bcfe3322be62724697c1851e20ee3c734c8ade055776211fe8e78.root': 54L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_22_02bbb4e8d99063adc38a1bdb90087e6a2040ac1be7943078460d2db7.root': 65L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_20_2008c8d0e3df08a825cc0e92bae9f0f8df6f2dc8fad50b52c7e0cf33.root': 59L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_40_7f10bf5fd6e05fa98f5b955d7bad391bd8dec32afbc84053548e89c4.root': 112L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_43_ec2069f541c0d2b9490ebe60e82b32d85430821f36eba2ffdd7df710.root': 115L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_37_db741c29e7d15549375346de076bad6413a539ff93bdbba989c4c501.root': 107L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_5_30ca4922f2ff821f93a65777171d6bd9da7bafffb79dfed557c39dcf.root': 122L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_15_bf7f11f7a32bed828ccbc9faf09023b20c32de43014aec2d590abcca.root': 15L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_15_a95838869212694216540733316963597d5a6e2deb08f30573ccd4b2.root': 48L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_10_476a6ba5c85b354c8b166a686d94388b7496e6f5b0ec0699febcfdd2.root': 33L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_8_323b6501ecfc8721e0b46f9287022b76cdeddd97676fba3b0f43d4ef.root': 31L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_6_767b6fe3a8b66ce4e65dcd8d561b25269d338e89ff5a49c93002aba9.root': 28L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_3_ce3f56964d21900985e06a85c72e5708aa0b21428365b9708a070a5f.root': 84L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_11_f51070ce55369627d3b297731e4633f2fb91fa793f89a93d94b4e8cd.root': 40L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_24_ad10de2f7bb18b57238b629cc25c665429ac7e62a783e3c546882b47.root': 67L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_47_cde740f448b81c6e8a8cfe097d9cd046fa7cf28fa06c66bacbd54266.root': 121L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_36_8fac23ef88e4a975970135376e51afb4d548dad0240994339ae99019.root': 103L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_1_18ca6b45f3659cba744ae794d3e915c573e16a32d718231653c129eb.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_46_e59a30ef5079a648b7dc78ec47a9ca7bf59bae2669ccce4ad272e9f4.root': 120L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_45_8b9de30f4d19dd1307215bf88b28ab3a4da97c7ff72b36e1e51ca0d2.root': 118L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_4_4e91522d791bdd30257eb2f9c7a5ea01d1773e1891daa25fb1129a73.root': 110L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_32_1ab3b6c7a988456129f2b17f52443a4b708e4e84818ea89bb7e38b3c.root': 89L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_44_c68cbe125534050f09be8d794a7538d8701cd95571cae9b3fcf9b1c0.root': 116L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_13_7e35c3496488dbb19ffd173d54e34dca3ffc06ef0df03423221d6524.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_1_08d1ab886982bef6dc63895703d5c08e3557c8b39ef52ebfedcdeb8e.root': 33L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_2_f5f6d040bc1feae27f4570ae8cc55e5ace874fc4365b19cd21eba52f.root': 19L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_28_e0ae0592c0ab6ecc1bd9d86bca5316c3fc230b159b3f3769f823e0cb.root': 77L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_9_5985395416e0576b0496bda69611a1a1d1b8bec27e15cd30383b9eef.root': 32L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_3_7efa9174d99e9859578243d2c43befc2aa9a31ad0d3ea0ff0e7f5624.root': 21L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_5_605e808bc6bd7cea504073aa621cabcc5c44fbef5c72cc8292d6b94e.root': 27L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_12_919f4ba14798e4f0bca235a35d097a45d144f8897c3c2c0bdefa699b.root': 42L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_4_df995ade28282f1b3edecdaf6c4cebd0943d3cf45985d2d093610cfc.root': 24L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_48_8162c0b15687b18bb7d795576330defeb7704617f49da4a0b06301b2.root': 121L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_30_8086a790563f74fc2f7aa535de97400ddb017c394295fa3b3651f039.root': 85L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_41_68f078f19681773a6c317882dd1312e405d8e6305b8a5870381eb108.root': 114L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_19_95eaa2e47a4dacdbbc0d44fb0bc5247ebe9eff5acaf40a3b11561015.root': 54L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_31_890d11a7888e0f4d8c59bb2271c5849206370fbb1fc52534936b3a32.root': 86L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_17_56481f3bdbfaea5517083fbf573c490e7607cd727fcb05207871ef5b.root': 18L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_2_e65a5c62912a278b96cb9911d55eaeb472ac1c8bc1ae47ebba3d83ee.root': 57L}, 'WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_3_3144f6e6c7078cae1f968ee2d441a30ce27b582c687a7508d10867e1.root': 31L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_1_e820002e64e96110820e9a5e5dcec25ff0397c5c51a39a8a5ae29241.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_2_2b1d1e955c80c8ef7ee3b2ce69afb9fe556cdc04e8bc8018b9872ac1.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_5_dd1504647982f99862a293f2bdce42a558909e0ee5062f4c2faa78d6.root': 63L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_4_b2b81c1018ae9cb379b01d8d8414c1947cdb3f83901a51e3d217c1a3.root': 54L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_6_0581a3d60f7b514d4e6e47d79d871b84cacdfb38e41e7c3288d45a07.root': 85L}, 'WW_TuneCUETP8M1_13TeV-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WW_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200211_0000_5_52939b46e41fece3e67d48b1c31b6df3b2e7013fcc30520b7ef1d627.root': 3676L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WW_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200211_0000_3_10a942072f6478ee0ff1f30ea76a506e8ab06612c31f1a258698b566.root': 1607L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WW_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200211_0000_2_132ba026107acf4fb0911572822299bbf5eca19b43690281f4f071b3.root': 858L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WW_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200211_0000_7_edec0de9bbcc0fa9fc66405886f8f5dac0bef99fc148671cea766821.root': 4812L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WW_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200211_0000_1_c2ea44f4d53db4228d892de2d76492a780f40b5dcbe024f636b60115.root': 631L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WW_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200211_0000_4_c2aa49f711189621fa9478cf0a97642c0cfa626aa3a74cbd1155df7a.root': 2963L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WW_TuneCUETP8M1_13TeV-pythia8/tree_-v1_190523_200136_0000_1_f12c15c7e622cc8ae8b7ed2cf42a98c06e32986779882185313d3444.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WW_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200211_0000_6_b60104e607454b0f2abe34b5649ebe9b73ce708f6c58b595de014d68.root': 4417L}, 'ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_12_dd898ed5e8037f04c58add92dacebe1f086e3906c63623e095eb1f8f.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_8_cbd5c0bc9374ee91b57f73fc7f2d69b1c4b3b21dbeb1cacf572e8d74.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_5_50f28c4215b53c68b34cbe1dde84dd16d56032f3cdab5705adb151fa.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_9_401ef734d578a6cebb5dada6613ded20d353a4fde9c0d63b91b18ca6.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_13_bd3e42d469b5009ab2ffc0040d84383824301823029f62855758347f.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_7_5914f81442fa99d0daa17c7767d0a4b79831c89750dc42d3388ae70e.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_2_4d6c3a436abdb9f6681a7c41fbf33aa406f5f272e896e00e40f9e8ac.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_3_a531bcfe7b5195c0b8f1347cffa6b084464936761caad988ba531747.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_6_af138b99dde593b7854723d13b4d19b3fde8c0160c209c35cf1a96d0.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_4_cad24134cae9c2a18d35d0891c344ef2fb2c002e38e68ee5ea9670ae.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_14_4f8a29fe193398708d0966643fbdad0af91efdbb217dbdbed2f2513d.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_1_bbdccef3b10222c4f047477c8f1754739ecd899c897fc1fdc87f3077.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_15_9914a75df101afb5f8dc8aee763de12bca4b7823e0aa8f05e7329d1e.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_11_501db3f009bcc7605bee54e09f3af451ad6fea78becbaa84e529b78b.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_10_49ccfda5b35d5476b2642330259949cf147664b07aa468d126c5ae68.root': 0L}, 'ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_3_60f402a2b07436fff1183eeb96ecaec24a4cebfbf9bdda43298d166d.root': 206214L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB84_190607_053924_0000_2_0d09e3b6755fc836c07ce0a74e4d8093e97c48503a2be6f37f99b9c8.root': 778619L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_11_b52a23e740394f84b7aca34374de9ba5933e0dedbb0d2a8f1986a336.root': 126737L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB84_190607_053924_0000_4_bd29d2b3e4804ad79fa0899ba9a45bd75adff062bf952e8a31ccb53b.root': 903771L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_6_cd92fae854a7e7a99672866fe16413b372eef7e82cfcb790a09af03c.root': 396134L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB83_190607_053836_0000_1_fde76c4222bf3eeedb0df7a1028f21e8bc359ee10dfe9d1e56a8f47a.root': 635447L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_8_f1a528fa00b707e6c9ddc3f44576ef3418f8d5568429c3a919a59a47.root': 522842L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB83_190607_053836_0000_2_6207aacff63bdd6ac498a7516200dd11efc6e66cfe527ea8714dbf9f.root': 698952L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_7_5b53d8c5383ccb79e60f284b17527b17cd1a4c2290e03d2243562db2.root': 459695L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_4_7e2268a5acb6a61252dc16e40c651d53001e07f52c49bee1d0104bf1.root': 269524L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB84_190607_053924_0000_3_d91b358726d1f4a5166f4d8103bdfc1e0bf28e91f6356f6d571a3c2c.root': 840787L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB84_190607_053924_0000_1_97142654d0443e2e7395500ef43e101046da0d4d50a4ee34330b9844.root': 715035L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_2_3be70669fea0dba791b24ba9d1fe5544202a582d5b5ac55753908e58.root': 142604L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_9_cdeff43aa0568dce44f1b9fa2ac4f1afbebd739f99e598a3f27b11dc.root': 586269L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_5_91d5bb5d2eab21c0443bebf83f5499ec2d867c769f46ad07e54b540a.root': 332821L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_10_a1e58b1c85b8d48c76a72616526037c34409850153a7d26b4829a5e2.root': 63394L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_1_bf3ca7b31b5ff5890f6d614e15a6da4a60154bd9456f1b2923ebf482.root': 0}, 'WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_11_661f70b825b6f9a2977aeb60dfbadc9aff7e92b6ba96b9e9e686990d.root': 125L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_19_910bc035d291aa18f93a3f74af381dbbaf38c40496b0c65d29a2a822.root': 573L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_8_316840b63496bbaab9676aad262cff3c81e8c2d13ce8528767c4308a.root': 380L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_14_270ef89af77a18d8a5f8ceda4ea8e6be09bf9dd63ca2dd2970fd8940.root': 179L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_9_ff73a6a8eac714ebb398bf6519de1e3210b98b69548db65f9272047d.root': 381L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_5_16eec05dedd68c8042d10d200665afd6fd216ddc437e4cc64fef9ce3.root': 324L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_2_b3145f9d2d021c3dcdd222c7d31479dbaddde0aa01a8ec6a46ab1bad.root': 597L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_13_2c2119420bcc0d7a6947904c774189f84169419b45e98523da285c38.root': 472L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212155_0000_1_bbbcdcd855e8796d4b24e3ab5d66b2ebc69bdf72cd0f470de1242c5f.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_8_66852fb5c8ed782f82fbf8e391cd01c5ef31a587c66e4e7b72ed369a.root': 741L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212155_0000_5_6260dc5a694028b9fc237c8f4ba4255ce3008025e1f973dc722830ca.root': 88L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_12_72b79763d4ce898f612f436428788790580f735a5e6c799c18adc440.root': 432L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_16_bf23cc2d04cd09ee0a08b14841d34a1f2a50bedf7dc9152197d924a6.root': 507L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_12_00c26677549f3f7f3116a4237995f1295da5ed04ac948fa96d7b032e.root': 152L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_14_95faeef0aa39d0814e64062b82e4bb95656e933b9737a5cdfc2146f2.root': 472L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_7_0f18c0b7edab548b34aea2e086afbe1213a7cd3e86281cb3287a66b9.root': 727L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_7_2c2c5aff98800a68d38964a4f24859b7da67ec7e4c5ba351dfc86ccd.root': 358L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_4_7ba73ade347ed820fa5793f731020c8442785afd3d295ee9aa117079.root': 658L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_13_8a98325449963cdecb8a9d6cdb995b86a4740df5a1da4e60a9c20c17.root': 172L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_3_c5273e4ccd7d3d199fe31ab66683b48e07dde9fffd43806fdf4bb7e3.root': 277L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_18_aa08f9d0c649f9200281a9930197961c80e6d8002942dd9d1c0a8001.root': 538L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_4_d7f0c9e1bd5a1766cfc3d5d942a2a1463c5514b606683b134bcc93f4.root': 301L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_20_845afda933a9597f4ef2a5b2f9d74fdf401e61dd2786f5da1bd44499.root': 608L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212155_0000_2_3df4e6cb99321f70a576af6fb0c07749ea0de5486b7665b35230a957.root': 22L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_16_8b81f48d679270340ba9729cfd2e3b98042e5adc09161ecc7690d55f.root': 225L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_15_318c04a36cc91e1d23df194687d8eec5edb5dcea3bbe5d852e003bb6.root': 208L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_10_8f26d6b50690dd074f285e5a47e1fbe9469fa56d886320016251cb8d.root': 392L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_6_e76436498e515bab4dc4a5784f277b09f2f440f241da4a89df83ab42.root': 350L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_17_248f1fca1f317e57a9cc0a462d5bf97a51438fe081bc23956d8de00c.root': 523L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_9_00e045a826e93cfb073bf5ca4ac1b5e6c3ee48c265a540f3de14c209.root': 765L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_2_752a6a63b240a54472449b825355704e9de71848c8cc05bc7f41d4d6.root': 251L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_1_43ca926aa50d0198c5b7334662363040a18f3d8f5c16c7be9793945e.root': 390L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212155_0000_3_0d9340aad777fb466beda178daa8b44fbadc6e8d5d4f42571dc11cc5.root': 47L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_1_fc4ee4742d517a60b7009a4111492ddc1da82db16970ca9767fb943e.root': 91L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_10_f8900baa5cda41f496ab016c9137a882d842ccaa10a169b8fd8218f7.root': 107L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212155_0000_4_27d0b35229d833737e9b9cfb51373a280b94907a15c6c5772d130faa.root': 56L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_3_f45ef064dd7b2f8f86919a297e9d0449dd6f0bf0b3d94acdb1ebdb0a.root': 641L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_15_24bd6374079ac105691d71cd340f1a50062eeca1708119bccb2676b8.root': 481L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_11_d15ee91845a3b20d6a5f731abd4d0ed09640c5c8ff93d04d1a2bebc8.root': 411L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_6_da80136b7429e0d49702ad4ffe3d6e7a36d3aa49060ccdfe45155e0b.root': 705L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_5_7a60ac6a107bfe9b1a0ae4cb779dae1009eda37e4d5d0d1bed0d9b7e.root': 690L}, 'DoubleEG': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_11_a886560ed5b0e3a12ed0b166240d0dc3bfe6217d9a2ab44c2c9c61d5.root': 391662L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_11_b575fae2e8dd54711fe8bd7884d9e82471621112a30a5ca0e3a42acb.root': 337981L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_7_970391a56a1b61e90f6921ff25fc5936d6bf70e09553fac808689382.root': 321622L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_24_ae5923e83b083f47c0056f97e86deca6ffa68c0cab0733c1b31d3b43.root': 308516L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_12_45f8f3eb555facdc4ecac50dfa2d1ddde23f0070f9f850bed9414159.root': 131423L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_8_98716f756168349730c562d44bb600af7d1b9241c054f1f549eabe66.root': 120379L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_36_5739ada3d667835ff183759a926c0af29edaf3957cbe89d5732fff0c.root': 505894L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_5_542c5c0d82bbb2f962e94ceb18cdfdd559570e9cf696888d2c84f1f5.root': 315448L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_53_8737d7d7f312270db612be847759d6c52f91c0d857528f4542301d7e.root': 92560L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_21_e8ba4227adafe7a92e0395d9ffc17a0778b9f130d6e4aa1282308cc3.root': 217365L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_36_6220e6104ef90ffd1ce3827b5d94172d6fb5289dc40fa2981240dfb4.root': 56148L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_31_a072c9c9844c996d9c6123da0dc99f471062b83284a0a4979c5db3a6.root': 484395L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_20_bebff068eace0966d9aa339884b8e66546ee8ce4d166d243334278ca.root': 432895L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_23_28d0767e585db7b0fe187f6d5e0c727237433079c0179b6e6dd691d5.root': 602273L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_40_516b2e22440fcc951a4bb6a31ad3fe578d98921a3150465a650869f3.root': 684316L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_20_5cf517dd011b387632c36e9a7fbe22d80066e9fe22a073cba8eab549.root': 23548L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_6_6e7a990ffb552907bc78a37de3d63348dd371f6d1d11c5cfe7bbca80.root': 373403L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_16_5028ccf93287a89a381c8941f42facf8f0d008fdc8327adace2d0e77.root': 13522L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_6_7cc022eee4b96e68951655f6fa9144c0f924b29e5a523ae139bf603e.root': 106100L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_1_22c3661e820c4d3993f6261721735938eb8d05ce3d18e183cb09e8af.root': 175056L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_10_d6b85f096e27c1a1f300c1b996584eecedd07ece21cfdee289000e40.root': 178385L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_11_73e736f47185774db27ffac9ecf12a3e1a0acedca26701b4c18df16d.root': 265171L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_31_08d806925fd0382bb96316e8b639d3ff6fded3b250e5640e198785af.root': 642013L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_14_fdd9931f646f7a086890d83c59ac22799dbc6084eb286c0d93118510.root': 404042L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_27_5752205839632b1a9d8700970a58cf34543b1ee63d8db4c1935c2533.root': 231373L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_51_4fd5c6b9f3cdf4ffd2e23104ee546330485ea3f107d32ca295823388.root': 88813L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_7_88ca63754d4106a66c040898290306586d3c99811eff28a018769a9e.root': 529561L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_15_413ad589164676e5a688726c87cf7dc6a97e0b1c89718e71a27a1ff9.root': 277656L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_1_0d44f7566bb96f7b8bb9e849219a21bde5c2a47747548683d0e09413.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_10_3d7b4bb8ce7fe3b60779219bfa5c750bc1978bd677f621d2440c3d2f.root': 546241L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_28_a800f984bfdde76515c16b5ffac3b4da5dbd503d23c9c5aebd9859fc.root': 234538L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_35_8510281787a42e9c2cbd14bc39974dc9cf2a8e0f2431a12608b50260.root': 658348L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_19_b06b8b946a8b081f1a334f1a61b6f6dd103dfddd03a25a60d4b8a2a3.root': 582829L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_22_999a27c01a731806fedcbb1bb033b7fc9fc34867228ff1364546237c.root': 220421L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_1_23a41938be4b518ba7f87a924a0eb201e654219e2b0bb3eb0e78eb25.root': 124471L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_42_f88afd26cd646545df8c3df27763d9d3661120a1585f9d5f2488a13b.root': 69520L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_22_a8158f7dd556904cc5dc7eb5274afd4c136ad34d51a3836251165b17.root': 303054L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_8_61c1baf5908914f84f6e2c22886731346720ab64e6ba1de4a92ae10f.root': 170491L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_18_282ac37dfa59e907fe3e13ee082543509a864e1982006ec176625354.root': 578519L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_3_00f47c9a15f8db919e9f62ee6b99debacc6589f2226675e37f6d3932.root': 363577L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_30_5ff67fc84a8b12e2b5da0e89332e27ba443e44713141eb77d9fe0010.root': 637398L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_17_d81e1b8cc3636c36de4938bf2db9fef51fca81d449d4121a9fca966c.root': 358241L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_2_1a74c2719579caf636bd02f1144f20cf910a70e60362ce568914347d.root': 21728L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_12_174436062b1326e52fc69b9eba9a88de185c5f15d7a832e5731314b3.root': 268374L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_17_75248a947e8e08168a4e7f15152b247280f84c3ded00373b5547f9b0.root': 284040L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_4_8a98bb471ac1ecd1ce74bc523342af3560a5fe8d742af49ac5c17cef.root': 366016L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_33_495548d1b1fbc146bc5e5e28b547d8a54ae806d40ef008507ba825d0.root': 51135L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_17_5ea883f96a1938f670bf230c28a4044519dfee6d690907094ddcc4d1.root': 574394L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_31_95e193663ff8107d25d57a0d8602aff1128906ed884e049269162fbb.root': 47190L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_4_3f780b5b0c9cf31e46d39c188f5660f42c90bf4f67507183c2891f44.root': 679708L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_8_e6f7e879cecbf76875c2c935a8264f4367aa97199d721d83a89ae2a7.root': 533630L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_9_e76b1b5b0322376a19d2ba2ce13e85d7381c1658309596c0b8bdcd3e.root': 121931L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_61_e4c65810b9980f9ddc088f7fa642aa0b476221dfc739c32fd9988a0e.root': 110108L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_28_354c604e46d275641af91261ceec9f33a4a9ccecf720c66367920e3f.root': 467622L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_1_a3b57e1ef2a32bc9e24d4e06be0ab163ae29719d81d7d2d85fe1ad39.root': 541515L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_5_eb51df6281815a09d28b00302f1ab5a214a505037214aaf6ad70c19b.root': 242434L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_25_786624896d05e8c3c827249bbba0692bf115f3b743abdd871deb8c18.root': 227819L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_20_5c3a665130922bfb302f66732c20208937256ee1150f59f09f0084e8.root': 296844L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_3_1fcbb8683f39e194bf9a7fa7803e21578bf5d00a77c2c88674ab55f3.root': 235902L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_6_a7abf8acc5ac860a59f7d844622f556dc15d090ad07966debae6176d.root': 690127L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_10_5750d9902e0304b3cbccb64f333a5b222221531debb35536b38d7030.root': 1939L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_19_98f5d7efac0a40ec8af41edc00fb1ed92a6212c78dbcb8ca2b8f776a.root': 147449L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_2_a04592748dce96e270c029ceaaaf97e6e9875c78cb7a4b61dec2b404.root': 429013L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_22_67185adff99a5a1d3b041246f128deda696b16c1b38df884de2a2194.root': 26907L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_5_3ce60c69828c3c010b989fce960d0a2c56e20592c6700631d117c850.root': 520279L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_5_6571d4dc7561b992a1273055b616a0098b3b1fc14956f8ba230d6408.root': 84908L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_21_52f3f8336aefb1a4912f7eca08bd21d790bd1d8a8790bd912b11c525.root': 299945L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_34_f5d5b2b2b1c063ed2193056f9e75443f234d4c8e3ac38c5a010d9c9f.root': 53255L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_25_296ad6680f32084bdbd09c0a2f073d8aeb4fc16398e0a3e1896a0cf4.root': 611302L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_16_fc37c3e8aa730ad8780504121b2779fdae72a0c011c4deb85379b684.root': 570629L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_34_7c1898915aac2529fd5988fee838cdb3d6db2b76d07c0597a19542a4.root': 654139L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_11_c458cbca87965c1573ec674d427868fd5bb5ab8d2065395933502f6f.root': 181638L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_9_e9deaf01e3580bcbaac3a8a1c909d8a568c601b865f6d4b3e4e779e8.root': 172725L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_54_30df5b43d5dc994670c25a19e291c44cf6335fa2368136bc966b0836.root': 94388L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_12_d1dc43a9f6b5ed9c9810737b95bd598b87cb16025b83fd9c6e874238.root': 554412L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_16_5b93ed4abf4fa0431c4357683d7a9b2b6b0e11c27f3943f1d25a6194.root': 280817L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_65_87510ff70c052f4ac90d9f47c0e88ec9a04c252b0be19d56ed285576.root': 117974L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_39_caa38630f08aa699a7dfd48633464acc735a63634a4795581e99fb44.root': 61609L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_62_f85b44409dea64c333d4df1be49cd2a2bae2320a79d158920fbf4b93.root': 112199L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_29_8c8e01889ce8e8890b3c80dc78229da193f3115aec3cab93cde08e1b.root': 471831L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_48_5a091993fc8ea738142b20c479813280309c97e6bd6a612f340d08fe.root': 80748L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_11_d9b8da9b953e2ccba2d357d610c1b607761ab4b20b8afd49cc65c277.root': 128989L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_26_99f8cd69239d60204f7c9be8a78e49249d03ce79d8840e2b5e32a348.root': 615450L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_32_8a74991523f9cb8bf458b6ccf011abc0eb0804ecdeeb63526fa5fb96.root': 645963L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_23_ec9500e923932477da8d30aa21d1174bd761cf0adfc8d52cdd53eff1.root': 157661L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_13_b5514060e60da1b5ec069e81d7edcf18a3367b920c30f359d547c7fa.root': 344682L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_5_f63b15ea0834026e7e173bd3b5fbba5fe3c0d7ecfd1f635cf32aa878.root': 685694L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_47_6004fc9b0d240c8072a2df5fa6c95b5e2eacf502be10f729839896af.root': 79054L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_28_515133cc02fad85ef4d5fb2edd59463ffea208b372fa2eed24ce8bcd.root': 39371L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_14_e51543899cd209422b23642c5a375bc1ad8156a20ed9220073b33a92.root': 9416L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_13_5f63d37551c2e42443d43b755f0d1aa98e65150efdc57c9d95b9abe8.root': 7427L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_22_f6f58f9c3faadf40d5e4a42e5f5510edf992816e1d62e616745ed7e8.root': 598078L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_16_c1b43445a64dff9a8ac4f295bce0fe78453b20c1f2f2e82b31e9e50a.root': 354981L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_12_9bdfcfbfc3c6c7a13a0669b4ce97087d8466e07c8493b7e9e06f4724.root': 395498L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_44_f3cc764650bde72f1e78fc2bffb4b20a1f0cdda637d364529d20dde3.root': 73637L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_4_8eea40487a4f56900bb1c2b6d61dbf9b78fbf0a75344dca3f567b569.root': 161901L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_3_43685a9b1209ce0c3efed671726e059fdfa5fa3eebc227bc9293f5c4.root': 632799L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_23_24c210db8215f06b8eabe39467dc9a392d30410ac38ad19df6862b03.root': 221284L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_20_5d2511d1681ef416912ec2c9e347d89c8b28267a9c090b21062a8a2a.root': 591298L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_19_17ff3d09f6d4f984e8e02fc1ed872ff7e84ce17f2585af299a033f03.root': 19603L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_12_20ec7981b1a05c96512c60c41dab8eeff05b8f8eb097de51427579bf.root': 341381L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_16_383f749a243a11193391dbfd734f70ec3b262622fc30b8303b675c7a.root': 412464L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_4_db1d9ea66e554271245ae84025fae99b47b8dbdb974e851933fe54a2.root': 312359L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_4_cfb74795ca4ae70e13362cfa2c409ceb44d9a1f9555bee32216072e0.root': 63694L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_28_8a1667bc9e3ccfcfc96e0575f3b8891a5a6ec39b60496d230c7303b9.root': 624154L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_17_93c8b699c639dbab8994328c5f2e3281f48ba06f4dc937e000e5b524.root': 15343L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_24_032731f674eb65dc3e9854b19c4cc240a25088a075aa0434e5c12892.root': 224536L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_21_d58d75de43abcfcbad53c8f380c1c774796a8bda82ff178e05dc6778.root': 25283L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_7_f881f8d3e2ad0ea21fd5158e1f57316c3471c35a8bf0d6ab521e251d.root': 694151L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_18_02782fe971c32cd218e138e85bdc7dcdf8f0cc969fe75a26073f0b2b.root': 145199L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_25_957de1058e2b0035bf92f88219f50a6e87b6b0bc6f03249bc4c29505.root': 33767L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_15_ae866ce2e4847df5376704f811aa75ded212df9c7f7c8813568538ef.root': 408201L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_14_e415f69627f546c69d53f6128b818523deb9554170c44254e2fdc1bb.root': 348200L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_19_832cb604f6146902eaeff5faa8c06c00ddb61bec40fb519dd7e9a987.root': 290248L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_3_fcd280238dba4d45b8a4669dc57c3226ec42ca01a6a43fdb5742e175.root': 43240L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_64_04febf355eb243350835cf9f6bca8c429f821a06bb50f42e5cb349d8.root': 115983L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_58_c5ee854785777c6830def28fb5aa538e7a04ca0ce0465fba33e9502a.root': 102005L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_24_cc041db0a855f3a6a37fcd2f06131e8b6bd11fe98cf4279c44864d00.root': 450243L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_15_c5166c1c0632cefa216df105480379058f5a890eca023bff73e28530.root': 194714L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_1_2878bcce5cb26cd822057292b84eb1bd80d1c036d30146b7d34a0cac.root': 386606L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_3_6a8028f36e4563024593af8cb0bdaefab851934298e8e1d9b6f01a0c.root': 159398L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_11_8c5e68745190f3620bccf131bc7ab4d9974218b34cd745d2fec506b8.root': 3741L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_23_cf17e48cb0b4d6ec2c8ac0d79e8aa737e440d249ec7449760636271c.root': 445751L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_15_b6c518ff0e3025df51da2ec0f72cd984d07a23283ab4a69acaf5e107.root': 138343L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_2_110b42d0714e04e3b18c80fc1fe3f99fc4c733fcb8afc3d9e0ce7a95.root': 360020L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_20_df9fa2e5629f11dfeaa56b9f0e266d934f66c7b047770ded3c0c6fcb.root': 214321L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_23_3d0da5e31665fa1fc10ee5619d906f01990a19ada137b058d23f7c3d.root': 29267L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_50_e3df186969e0078e8735bc2d677a89f80031f0d6373e4144fbf99a59.root': 86681L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_52_df8fc0fc35a37a19395f96618e85d68380624ac231098529f2f0055c.root': 90601L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_37_0679889d26980c3c8e60b4bb513ef9b94c393fcee048ff0ffdcd8ea0.root': 667127L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_43_9806a7b49dbba1c28f4cb4df6fbba9d126b25639d3032c498473af56.root': 72147L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_11_38eae038885d79b8faec7f5e795dfed741417fe1f305e9035e1f143e.root': 550366L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_8_82a992b3f7ca9084c9a10fbd7ab0a51c31af7701a5682ecc393670c0.root': 324690L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_27_cbeaf7f033ecac12158e35f314528264bda0700ccb2df25b4c20d102.root': 463358L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_15_0e69172f4d339a7b08c77d236dfec3084fa1eddbc41b931eece21a0b.root': 566306L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_24_e5514263103c9184df97ba1b08bc11c0f3c5414ebe1863cb5b2431d0.root': 31235L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_37_03f83124f30d8012f061ed6852d50d84f98e050c61bc543268d3df94.root': 57946L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_60_17b1ec2cba4695bde3e07fcfa933a3cbaefb60d24f8890c96b05f4b9.root': 108131L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_10_5c51866d5dd7fec462225e1c05d982971b494a27230645f0fad9770b.root': 387594L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_20_c73fdc8f955a6d494bdaff2dc832ebfa97a40a230cc6674266082c04.root': 150546L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_13_a317cb87cb17a9575f978f73e41adabee0bad06c6d3e7c4554d8dfaf.root': 399894L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_10_341c2153bcd0abedbd9a116a5095175752741063c78f05f14a21a0ec.root': 261943L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_7_064e3dd9cdbdc9ffa205da35fc76f439c5a2b88c0950fe6b5d2096eb.root': 376611L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_14_6d59a801a8b8244e12c8030b27d8a0267c764958a8773f7912cdc354.root': 191388L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_63_e361faf55306e322bdab8659cdafd3435aeafc1d7afc5d9603d4473b.root': 114012L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_19_31a0dc47350ba818ead01fc7074d73c9a5e3f5a13db0d56efb844d18.root': 424922L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_6_8d56aa071cf9702c2444292a7c67a05ec1dfba1d0cbcee9bb34f04b6.root': 166080L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_2_bd199b0dadd782e0121cb1e564d7a2a11b14c8be3fc42beff9b7d36c.root': 211008L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_33_c0ffb42636b5d418fd74f05122a799dcaf06730b3a096443b65b9632.root': 650054L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_9_ef35f2e927b747d82a16aeb9b4b47fdc9ef9a7bfc1badb4406510df8.root': 383283L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_17_cdc092cf4770443dc3b11e52e434dedf251f1da8639fe5c89d70116f.root': 201324L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_12_f6530756a9d05247e91c32d8de45fa60447a4f5238dfc6bf18d88afd.root': 184675L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_49_328784a2479aa85c4dbc1001e14d51681b8a3b9923b154887171c780.root': 82725L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_8_7ca56f3d14db8d57ad1fabeef540a18f43bdd9f6c84fc807eb219dd8.root': 698321L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_22_bf48c0aa26feed120e4b3ada653d00195085f2e00793fc7291c0228e.root': 441400L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_13_cae5e20cdc29af56ad72c24305cc9676f336bc4f5418ffd9c161f93d.root': 187942L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_6_a7eca85cc5beea26c005d69b3dc428d6ee21a8fab08a048ad59de6c1.root': 525189L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_46_b45da18b6bb28b4c62db0e0af53324232fed9ce92e69d1d05ce97a12.root': 77332L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_37_dd796c8690c81d9792dfd85db0d7f9030264273c988faad12f65bc6f.root': 510229L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_13_8bcb7e3c1773fd0d6e14a2babd2662b2d94c2c44d2eac790de5b66a6.root': 558267L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_7_d6a7c6a605479f7a7da2447a0854592a1ea303a0935044a23a7a7bef.root': 118525L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_16_4fe2270fe3c95051eef2a22890de17fad9b02067a88aa7dd47693bb9.root': 140682L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_15_2aa2885cc8da50c1b9951026134f1e2593c27a0d7eea305f235d5f82.root': 351696L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_21_e2772cf202eb48d745cee3ccd11cf14cfcc8890c788fb88cd4776e03.root': 437299L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_56_dff3909155bbf4e0d77264dc7754ab133c42d3e7eada13408e20c44a.root': 98259L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_2_809a6169c4d2bc1a4d7d8cffd5051676d0d3452c24ce78a99d0c67ee.root': 149613L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_14_2bb86b387b943b72a24bdab27d474820bee48028774ee585550c0c5c.root': 562440L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_35_9c653a0965d55e993d6f795a8ba653b25fc9b8d37f4b21fe9cfec527.root': 501683L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_26_41b8ab215db6e47f147a7f8f3867a1840d760ba0bd76f97631bc53f3.root': 231163L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_3_ca9bd6986e427f3ae45073079bf0fbd183c150960990ef4faaa2cc10.root': 309112L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_32_ef5b6db6c967b667a4ec8dbc180b8c23845b472a95b743addb42ab00.root': 488597L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_38_4451c923d90c476d55f72de9caba98278410a60d22ba59428c7f6c7f.root': 59533L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_57_1f044f0131d8bcd5e438cda6d95b1e09da50f70fc6f9865c1dea667a.root': 100407L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_9_9a7d58b40621287a68edadc31e6d18502aaacfce9c2a5f567bead72d.root': 255402L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_2_ab56934f3e679add3987be1b548ec9cd83d87148c9ab40fe8b51431a.root': 293345L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_45_85dbb0aa444988e39e3efe8d28f93115cb0718145c52e79694f80e9c.root': 75507L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_36_18d27f343bd543922e5be7258130d7bde1930cce12c8673aa62f9d7e.root': 662849L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_18_70feb6395b3cb6adfea8c1eda05da35fdd53c0ee329e9c9fc1c0359d.root': 287166L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_38_7e1fc7f1cc39a60e6f7c0d6a9ad0a54d9c195f46af6b9aeb1652a588.root': 671183L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_10_0bc3965856f50091f1379d71050c4d29ac9e800c09925fee2a0469da.root': 126701L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_21_a6d820d9a8df9dd1f6197bccf4ff10a042d0362db3d5638583262a9b.root': 595610L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_6_82bc0457ae9802342c3e77a3db232d707cc13d029c9d218b801593bc.root': 318478L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_12_5604272afc861037838c1e21265e5132bfd9c58c51dac029a4741cf3.root': 5712L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_18_2d62ff4e6749c4720b73856e78b77613d0810c1b0d9cb74176884314.root': 17605L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_5_75cfa7ae7b695abedd485c606241e74dc2c2138d7a9f00172b16e19d.root': 163965L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_9_b91a40c47de89e941b5f0d88547d1f09f65e2f8778c41e49f6a38111.root': 327719L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_15_08fbf51e75c98bc0823c8ddcb1fab00eefbc3ff331552ad8421207c7.root': 11649L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_26_1d7f12fe44d21c21c2005c51c8f855b0dad6e7c2ea4e744cd517d31a.root': 35819L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_30_fc1647f085f7bd8f2e7228e155f6cb19f0fc333ed75c73d83d8dac62.root': 480504L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_17_3dc85eddd51663b17e91e8f024393234b26e9840adaa77b502b5a43e.root': 142976L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_24_32cc6dcf13ee9c85e05dd3a760868208b6e7ae0496e9239f5fa45e8d.root': 606985L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_6_32d477c41155d7df391e1d8abeab4fb12d17611a286458b5a19c09a7.root': 245634L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_40_d656d261a53254ee7083b987180ea2a9e0604874069968b1cb163e0b.root': 65303L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_8_9615ec4378dde9ba08951eaa9fb2da50d81ee19d369161771686e261.root': 252153L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_33_ac12e2883d0a6f8e48a4eb337a0fb01e71bb6973a35f5594d01807b8.root': 493118L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_1_783e111509cfd181b129668ddfac141ea22ee6e1302dd3f914538b1b.root': 330963L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_18_b05905716c22db23320c1623fb5a86e999fc864ef02709692e4e8353.root': 204457L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_17_c3a2c9f999d49892b9df5768b99e50da6cf6613f159e376290515942.root': 416737L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_55_0f60c13e0b357c1915b847f59b39d2d7d4a9374d630b23e21ae8701c.root': 96411L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_18_f5fd3d32b38e50a39ea9930720370e084300258cd927aa6601341908.root': 420772L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_29_574cd4e3811ef0251f56e07d34c31712f2046e7c9cb1d7dd94c71788.root': 628012L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_38_e81b727a606b7d6ba8bb7c3035c9694de56bcf0d9174c762b8a13d53.root': 514397L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_39_57f38e6779c71e0caae78820f0f3fdc28a670f770679632d62fcba7e.root': 675589L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_10_b2ca4bc635ca42e2fcd8abe01990a3201d87a12d57b63fc489d8746a.root': 334525L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_34_73f3660fd9c45adf455b60b56b0c1a7c5a3fc930e84f94d26bfc872c.root': 497485L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_59_946f52d3a775692d0ce80776a11c24a4267571506fce94ab3b6070c3.root': 104023L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_23_95d0e142303ea460da340b76dc6086e9a0f5679541599dfc11be8079.root': 306520L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_25_5ac5e833e061d4ce472fba54346ad1c8c0b94d3d31793be4c60b9c04.root': 454534L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_4_37727078a1539654c2cd642bcca8dd241b2b9af7803d25cec6a734d3.root': 239083L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_27_21090b37cc181e72c55858faade5f9cf9e11460d1b578e2e85e8bd84.root': 37518L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_2_12477705d10831684e8316d2d5b01f9d53f54d0d6e58333005bf7ec8.root': 587181L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_41_e1642bffc0c2527911fdff345e8fc07cbbe34cc763ae98c93662d0f0.root': 67126L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_14_f9d590626ccbcc1d51521f3f47c72861d1a366abdc430f2fea445955.root': 136143L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_9_f97c777b6e3cb53b7ac032ff26884b5f3771fe8df1a94a94b446e729.root': 537561L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_7_5941270fdf3e8577fc41339bc93e8d2dde6b1ef5ddedd045bc13c1e8.root': 168268L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_8_04271886051d19648f29fd77321e3d2feb10f5e0bdf3183208bc3a95.root': 379737L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_21_19859249bf17c18afe0c8058828ed75f63de366fae41ac4f637e58e2.root': 152897L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_29_905979952524992a18e54a7e2f7e269cf54ef43bbbea329c056c0639.root': 41378L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_5_6a7ff27ba0f0bd43168a250bba6f35912f0bf9c1eda4c426e4c073d8.root': 369825L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_16_4d98b8f63b400adb460b62aa6dea175f11c19c6d5a9d1c227f40e055.root': 198116L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_3_cf8a4e27a5fa2de3dbfa6b0b5b3fb14a0b7402c9336a2deccb61c709.root': 476175L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_32_8153fa3f76cfb42ed36824b446ade3753f24dfe3401279c1cdb78892.root': 49184L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_35_a9086852d8f48f8b23c91014113ab476df0426d7d2d34fa981c62ae2.root': 54526L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_13_8ed6b7451e3539d8c553898c145d089b06e9ba7a51753934d52091a6.root': 271427L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_19_3ab8b7d65231aad0fca03dae609dcce2104a7cc009e47ae92b4a6f0b.root': 207669L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_1_565f2b73949636f1ed975d3f41e3cfc963933d744cf19fe1b18ca60d.root': 258587L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_13_249c1a5571a8a0ec29fe82f9f09f9fc407f2e52520782f34cb5a2fe6.root': 133793L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_30_fb6aa8303ee775d06a876ab80202cd4049152986872c1cae1ccf5ff1.root': 45345L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_14_88833a13b21479803a3baf90cfa79ca18375c95433756bd609d011fa.root': 274692L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_22_a40db802269e4cddaa2c499c405a73a9421dbc339960a7055917ff11.root': 155313L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_26_a2cb9c56893811a5d2076546da051ad7fd2e767a7b5a26aec03276e6.root': 458958L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_4_a8340939465439c0a6b071d47bbf0c5f3f9335a71bca4e9185f24d2d.root': 515407L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_27_ab64b31d0992b852f368c47553d9c889821479460051fdc5dcd033ef.root': 619399L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_9_fd68aa60f8044f323bada13187b349f78eb29a3730efc6ae9d5bfa8b.root': 703044L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_7_831038a472e64f094f99ed97a83d23d1b12584e4b93797cb1ce58625.root': 248865L}, 'TT_TuneCUETP8M2T4_13TeV-powheg-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_70_48007f0bcb9d63efa37de55321ec4fc1ca9b40b02882fc75cdcb3073.root': 473181L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_49_b0cd4cd1f7b17bf3fc2a0c0d73bc9ed31d48b524a5a882c1ed6bdf72.root': 314923L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_17_f8ce8a19fcf704c564c3659569383646550cfae2457def11e6e19f63.root': 54376L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_65_92a9f169a6578ebba6a63a2c8dcb847a53f3707b6b21adf0fcde84ad.root': 440227L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_42_de9113f4b115c5c1372c0575ee2c75319c0b271ab8f057ad97e321d4.root': 261170L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_46_7d2c3d11fec19ab69d26019aa0ae802ba3f938be28cbc64c9ce066cc.root': 292846L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_4_3930e94928053736c31df87a454a2a82deaf13c3e75780fc1329f664.root': 238741L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_54_e0cd7e9794f1d7d8b5bad20ffc11109de9fa02b1a45cb773c6386b65.root': 363971L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_7_fc2f0a545a2db8d3bfe58edd2487ca5ed337e1a3413b8b4ec514533a.root': 466709L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_53_6209ab23936ace39502a5989a7d4b94c9209bbe93c62a4df1cdaa668.root': 354275L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_40_bf878d2eb4827042b2986046510e7be9ca0e5c01144db0e21d2ee003.root': 244345L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_50_19de1c9098dd1be250fd00718dee14abf7a0eadd1fa7256703f26148.root': 330659L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_48_83ef2303a7d2ff930e6889f66ead137bb96d050367f7b1cfdf225f71.root': 308302L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_67_0152b48299b0a94eff4c61e375154dd17b8e52504ad8ed8740b9359b.root': 451310L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_39_0240482ed8df45bd22933f496a64b3afa2dab7c2948fbebc306660f5.root': 228796L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_44_87eef0d48259175e197c109adee55bd4e32d03ea6a25134a36288dd2.root': 277117L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_23_4e631e13e8752a1c83f30475686e001643e5188b5a2f8e649cf536c3.root': 104046L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_11_468f9a159e68745c6c241e974173285a961619deae4103ab37e02aee.root': 10292L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_9_58188ea11e789401add01838f1c14146f478825c3767e6f51633bb77.root': 479813L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_64_0f0d72e24ce3fa71472ab04561d6c09be8bb6cdbe5379da14ec21e32.root': 434062L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_43_0392e41cf55af638647fe83295dd4d3fcccb5147ff1f85b9f1de5b16.root': 271004L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_34_55230d70eb08849b020375695dba43c518f2c87e5e1cba01de65e6fc.root': 189812L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_26_3e8f3f4632edf0bc27dd6c6a8c3ee64e211f3b82c03028bbeb380239.root': 129027L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_2_aa6ef90b56921919bea0de4084175e86a56984359eed3338383642d1.root': 74190L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_38_0b02f2b5dcbfc69e1f03b937bfd2b3ddfcebdd52452c9c9e64674d8c.root': 218796L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_21_972ea3e98c0ed7f7ecb3ba4c8e674dc0602b41ad8e9996a0f127c4a7.root': 90018L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_71_d177ab687caba881dca8272da33d6818e1541584f312cc38051631a1.root': 473767L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_5_eec429fab69a4d113398c5936f40c2b6ab145cc02f15a82cecc6e56e.root': 324629L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_41_a65c8eb32fbad2f1851881ef51d6d139ef75a1c91cafa9f793224482.root': 254156L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_52_ca71877d2ed468b4a82ca6913b1fc2f92c43dcb68465ca6864fbb992.root': 344318L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_13_664e9175dbab69233a2a3232d32d5da8633bafb69701c9c2d19c5c6f.root': 23560L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_57_8afaae24eec2146efe16bd31b15e31968fed1184ad61dd6ea991603a.root': 385819L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_10_f3c09cc7fe88e982a27bd62a4b7411b39aa4ad2d6e9cf8c8abbbe9fd.root': 5027L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_3_73b257cd1dc1aec53b298f6342d719603d46c8547093bbce9e9ba3fd.root': 160690L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_33_070c02d8a3551e294c1f56fd6b1d8ed9da84638bea1cfa70643f5cf2.root': 182329L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_8_8c8426cace8756c9668456467f37bc89befbc21fb09483e52324dd60.root': 474368L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_63_b99c58570a39da5dc244d9f7b45df9344fa87d65e170e082bad38945.root': 426994L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_19_65665f57845a4a865fb05c3e49b429c827e5a75b5fd75b3e97271456.root': 68427L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_18_5fd8b060a2ba9105ef722da599bd8cbe891ecf500b87311b31e2d0ed.root': 62543L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_24_2396b1c08405f42d21659d738f877f8413b8cff506c95b6a29c2d696.root': 113695L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_25_365db20af6fbc4a90669e998ee8c252c8dee83045573d331acd6360c.root': 119226L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_6_f61e5f72269a7175d150289f3cf7272f77ffeaf72f76679eb3fdb270.root': 404754L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_32_c43de81029d05ee53a7ceabb8369279fed719b54b9d3621491c61d6e.root': 175834L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_35_e51ffa0cbb281ba21de0cd92431ce388da131669f590737a682f3bf4.root': 195719L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_37_700d9e0ff1e31135ce53891c69c357297726764ee0d4fe052fc18ee0.root': 212224L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_69_71338c3fa7242f3aa9c97702aab2829551907cdfc964754c20638775.root': 461706L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_56_7c6601b57e845a6da57f0d81a3eddd329c8496aca2936b135c2e995b.root': 379329L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_61_bae562b53a32f60590d16b08cd7037ab1d29bb8ddf3326e307004b42.root': 415506L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_60_acf81e7818087e8024737d1316191b7349e0e0656f649ef5017312e1.root': 410374L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_51_32699267fd27ffdebe6c45c4037c5e1b8e026879f7309b895b5e511a.root': 335887L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_20_ea2d51720c74a3158cf1aad3a0cd95d0ddc716b21ab25bf98f347fd9.root': 80227L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_31_08e2c969f34956f01710b5b0d665cd99aedef1ac91c7b38ad7cc3893.root': 171753L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_30_becb479b3496e00b89b533ed3a02ffb2883652ee3f7989339363df52.root': 165794L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_68_3d6437836b0b93d4a7277f59a6d0f3687b78cfffa276c4b955028b6c.root': 456215L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_14_80747f6ca42a92a1da062225e75a9fa302cf4d564573b6071daf6296.root': 29687L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_22_738b340ae878839d9c629cb6b77dd622c634845ef8bb946b8381141d.root': 95334L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_55_4e436a4b58d3ed3bcf0e1dd1b13c8d823b1555e8ae63f47b545a5230.root': 373671L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_36_84ece45ede9ee9b4b9ea646e33b5257514b4e1fe329dc4fc62495534.root': 205675L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_15_dac70b2378ffcc8c199c57019c1b55fec22f0c9d9585516af49fae68.root': 35850L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_1_9745b9f4b9e007084017a5367ccd78d29493103d18e304762439e7a2.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_29_33385a8bdb4e86cc4fd8382ded047dbe5e98c594dfcd3acfaf579078.root': 151064L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_16_1a299bc3926eb64acf508421b8c89c191892fd356b0a7ff6df941cc3.root': 45618L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_45_aa109855a03ec045bc091c68b6880dad96bc9c1f520c1341883df424.root': 285204L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_47_84c1c06ec52438152eea67a052bb34e499664fdb35c7656199f053db.root': 298350L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_12_13a89d712f7fdb735117e326ec7985cd03cef9236470a08a03e532e6.root': 17051L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_72_aeb642c56142ea485b377c81c8a1c13fc6ec1a002b91a3f83484deda.root': 474315L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_58_8950300f87600e87589346ee823efd3d4b6341d482d829a9f857f11a.root': 394023L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_28_db8fc7fbd7acccd2538b2d1a3f6fd3c1d8ab7b863ec4aa39fec37a1b.root': 143874L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_27_3d7a42604ea974e31d1e057cf026fd58320a7b21d31163f34b5c8e6a.root': 138961L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_66_10a891caae7230cdfb83efb75bceb8dffbb5007440ed6d825458b5f2.root': 445495L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_59_84fb10521b3c08427f43c80cbf24bc4eeddf1ef4ec5b38feaf7a0ddd.root': 399637L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_62_2f0e7015f0f8a0e67bbcc69ce6f8493a0e3c986e64674f11b0780b48.root': 421727L}, 'ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_8_dec67224732adfaef38677c1f706d83f671737998cdc6bc6ce2bfd3b.root': 12L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB85_190607_054014_0000_1_f26ebf1b022816fb88d0b43617f563bbd8d45d9e823be8a72f74b5ff.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_10_14d62ceb70ac2e2f477d432bfc1427be7666957e3c8652a0d74b4c8b.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_11_dbda9ce4d1748e47154aee8d1427e2a37367d887c483cf0b95f75495.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB86_190607_054105_0000_4_bccf5ce0dea01557faef3b5d936adfb6d2ba35ae129752e97678ab5b.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_2_c7c038e6257b73dbf757562356e1285b581e95e2345a73c804ab4979.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_1_6072d9b3310dd162d3bf2193102ac55e3fe26dcc5fddac6fae505b12.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_4_b27146bd949193254e69623c86763ef3be1ee615c0456ba8ab571e1f.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB86_190607_054105_0000_2_5ce035eef8b26f0b04c2cd9f842bfe1b44b6cc57bd1b659283b75415.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB85_190607_054014_0000_2_aa0d04e48bfecab14fcdf936f618d4156e9acdb74f5fcc2788fe3cef.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB86_190607_054105_0000_1_4866f39f3db45fd02d376ceaca16511a3ea3130025b5956c668236cc.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_6_98810079fa4184bd3705e9808665e067d67a751e2cc0a136657fe4cf.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_9_ddf7e09957ebca1333043315a2bcbe3975f45d03e58f00fc8ef9d3cd.root': 15L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_7_402cfcb5a71af52447a01db08d51259eebf9acc047aa42a3aa7fa71c.root': 9L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB86_190607_054105_0000_3_28108f6b0054346b60ac75a0bb858f27825e374fa137bc6370374681.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_3_617b0af74e607fe48f6e71d2728a3254c08097cfab47377eb0365f55.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/Mar20/prep/v2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_5_822cfc677efa66bf4da276dfce50227a1db347a84b630d16d70da0ec.root': 6L}} \ No newline at end of file +{'WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_4_ba8b00fc25e0199db465d8c1b1ec364c7ec3b305eb8165240c529aff.root': 77L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_5_69ed48716128bb69855a0df09a0c9fd7f62f8b034a941790b40e7628.root': 88L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_3_d09146b0688f6c5f45e4d47b61ada2396cc79ab0eab700d3ccb71b5a.root': 67L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_2_4fed1ad070c8d6700782fdccaa88b260af5b979908a20b1b3872ad4e.root': 57L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_5_cce185cd536619fc069319b09fcc9ab5272a4f97d9f16d9975d81c3a.root': 40L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_6_245eaf27d2db6caaf2d7183d03f683a905d4400407c2b4283544281a.root': 49L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_8_94ab1960aacfe6b658ba463d0aaed78413e5fc3a6214e4ca22057dfe.root': 119L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_7_d384b65ee9bce463ab24eed9ea7252cb803814636f5839d5dc99b00d.root': 105L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_3_f39b1a7e6b19108158a1dab16d6cc7ba6f6b11c7a43494f3ce455cdd.root': 16L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_1_5703ea0985fffe6031512fc73068adab2dc3e1cf90f37774266f6bd3.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_4_b151668b210a36e10fcf95766aec18b672b1ca93718fd9650568c72c.root': 32L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_2_81d86dff59c75bb2d615efc87ea961ff23cd1974cd585456c0d56ffe.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_1_2297a171dca388374479109f72227c75ea4504f7d03679df75e29ba0.root': 51L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_6_39ed70afe620c623ab432a8ccdd7b8daeed6d8acd42b5574e821ef32.root': 100L}, 'ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213326_0000_4_0b8d8d3f90a73743ecda13fc2e1f41c1cb5f094326c0ab5d7e35ad2a.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213326_0000_3_754e4352422617dd448bda021f6ced2fa9fbde2bf46fa7e7e0b92526.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213326_0000_2_7023135e9d95ea61207e1e762e7f8c276392a5fc3049cd9178f5a19a.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213326_0000_1_fd4c805670bae0e9c48f1a1372fd797efdc0a5f5b2245728bd87b842.root': 0}, 'ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_27_591f4a98c1ae36fe4cd86e301ca183c24d8a81d90cf555fb406f2283.root': 224L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_18_e87784187e4bc9f6e88f8b46d7850985e94ac9af7f9358723acc7f54.root': 95L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_20_887baa35015d03ef587660a31350515ad92dbb75b009afe92dd284a3.root': 127L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_16_1334d7799c7e9a3fac4307851a622e720a1f8ff0caff42322703eb72.root': 67L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_19_2e926d5dfe9a9f65691e3b43a533d75f9be6ee5fbecb3469acfb4b83.root': 105L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_15_536ef1861670ecdbc094d8e13f545b11cb1e0ecda4e98282910e6357.root': 49L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_21_97bd350cb9805a47aab8f76e9f4dae4eb8b847aba7fe698c46fec162.root': 140L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_12_94bf14ca0fec2b78d49da1053287b43104394927730452fd3ddaf0b8.root': 19L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_3_7a2bdf3b7de543f63d40b52eebe357840986015c418671e8f6261d31.root': 253L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_23_990db23757085eb1ed027894f8f5a8496c62c2dafaa462ad3c8c07ba.root': 177L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_26_bc29161c0491a4b503ab35b6758b683e512593825c0fc77c3bfe1556.root': 209L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_5_012a89bf4807ff81aba3a68725608d8f45e9f620533e50b93e394530.root': 285L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_17_2b399af008288719eb99bcc22b9596cd8ba663f49d6bbd8f6788f89b.root': 81L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_9_52ff02a99df9011b089bf9cadb3478ffaa3edcb1a08ff994a9393fa4.root': 339L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_4_4c79ecbd89ce843c7b123d9dd65de6cf2a3cb11acbecf6c7c4f71c7f.root': 273L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_22_0bc75b37b0f149c6bafd3c13595efd484043857a33969260e76976d3.root': 159L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_11_369b9dd4a437c449a2c14f2e244ee1ca2133f34af2892a821c6b605c.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_2_7e63633bd4f37a3b46ea9662ab164745d725b5f3c97d1bb29e4e6309.root': 241L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_8_a25b65e5bc633bdea490cfc20d537d0ae62282bcc0675d49db56ba45.root': 324L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_14_672f8086dc50fb0029dc4f02df56aca1adb50c00034b56118ec64d14.root': 30L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_1_7a23df555b6b9c2bb5122a03bbb9074d915ab13f38d03294ab93b3ee.root': 126L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_7_6bcf9287f8c3f5b6e5d0117035797c0b9f11ae813b6bba35dff7c6a7.root': 310L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_13_7fefb1c9cf4cb8b4ac51bcc394ffd8f2e4ba0ed3ad1f00f82aacb2f3.root': 27L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_24_298070d06c5f2a42933222df0b9f850a51ee1e0998156d920c5c0a71.root': 188L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_6_ff47515da767a7237fe5871c6915e4f055feff6c3c7e6a857fd5c298.root': 296L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_25_afde4bedf79491c9b119642ddfba1470382bc14565c491893b2c2b8e.root': 202L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_10_84de7463877e81227fa2cc53556b85ba3ca301188e740724a025cc9a.root': 0}, 'WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211751_0000_7_51ff908419b6693fbae29781da34817ae04f6659ba85e35548d39c35.root': 104L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211751_0000_6_6737001beecabbae39e1da3adb82e4a47cf76efeb4552966e7b55220.root': 93L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211751_0000_4_3a1b5c4916031871cdb7be909d66aab361ce0218d5a1e6988d784b22.root': 39L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211751_0000_3_97a4b6beba0ef901cee14b2efd513df923aafcc734e02b909b8586c0.root': 15L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211751_0000_2_237fc0b7f3aaa552963180ee57ac03ccd1f8ad883272696f4f8ae3d0.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211751_0000_1_7affea7e73147774ba9bdf6b3c1d67f9f7a4c8d68c06bc2beeda92e3.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211751_0000_8_3cd007bfc1d304b809c2cc37d5b409379312ad5addc2fb37b012e087.root': 147L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211751_0000_5_8eccd76e2d5b31bafae6dffc820baa8b27a7030440ebce951dfe3c97.root': 56L}, 'DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_6_ffd6252191f23d603a3a28301690f2046188e981aa3e221baac33fe0.root': 361021L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210344_0000_1_02264589f0a5d3d0a92745868847023a90a4c165f95d7ad88b495d2f.root': 557697L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_1_995e2e9a6e1bc1b68075980eb8e895f52cf8f73f2506849e3ed90962.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_5_c715c6e822f84fd191d510c7e2c995d3796d085202c3d73d5f0018b7.root': 177922L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210344_0000_6_50b723c3d902b438d948b131144418ba6e2b58f14bebf8fa1682fe49.root': 800362L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210344_0000_2_b5bf65130886e798f4420c596f0672a3be1d4312bdf9d3bf7eca5847.root': 557863L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210344_0000_4_ec3fc34495e3ec3280c7828e2b83677a1c2449ec690ac1ad0b99f880.root': 664422L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_2_8802ac19928cd2d5794b527d7b2899779122fdcc7a2c1c6698b0912c.root': 574L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_7_5d7aacfbfdedac486d4c55aeb7717fd961f201d763c22ffce55bc9f0.root': 512833L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_4_c999f19905aa2d7e9c6cffc6e6bac01ace1a6cef80b000d2721c216d.root': 37461L}, 'WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_20_7742a1200de409bc4976c653e006dabb2bc4aa108e8cf72dad6a46b2.root': 107L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_3_83da6a1659f06129bd2544d7f536ef73f4aff30c03ff2597c05d2922.root': 46L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_22_104ab16b8d8e9afc9631304b2914842968066be032f48b33a92752f8.root': 122L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_5_642ceed03b6f61173fd5848f2e89d64dfaa446331a212348e74e4905.root': 170L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_10_913ee14aaebceae4768395a94fdfc1bb2b0532fb664e9357716e13dd.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_2_86c9888d8907c1022086c7dc75a75fdbe425258ec995a65187aaae31.root': 166L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_10_312a5500ddb1e2c03a94a9d35a311f1be68e0fc127b59a18cf716a9f.root': 72L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_12_30fdc8911cc56f8bf1efab527a64a8352f6d2f3061230de2412ecdd5.root': 17L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_28_96067d128d1a56094601d2658ae2f86a0d4ef09982b1c76863478651.root': 134L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_24_3fb43d2af42dbe31be7eec0f1775921237891f2376740a6ff4086b15.root': 128L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_16_a97f5d4e9366c5b616183f7d2eb8d0ecb9f7935d8dc33aea3d93229c.root': 29L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_8_447ae9ca3b1822ac4fc6b62955d7949717014c4c8856b1dac87ef6c5.root': 159L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_6_622a8b7cecf2dcf9ddde31cb43cc48c800e6b8c32ec81bbafb341f67.root': 172L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_25_e83e58baecfb8b733567592207a083b8763b4453373808da8b328001.root': 129L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_14_62ac9ed8d0feaa35ec75a190fe7b1c3e1356b49ec4bfc3d8c037f883.root': 83L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_9_74d53e9272a5905eb55d6e1e52c097e41b08b1870e54d4496ed03f4e.root': 162L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_17_09549b25b1774b5ee5a08fc75a5426df6bb10d237dda845357f5e191.root': 36L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_8_80c6e3375039f15c64281277ecb16f747afda3dcb94253685d25d913.root': 175L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_7_d6fa153422bec782a92e00cfb82391e9d4770f3a5992be29d266ce1e.root': 157L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_8_02cf444dbdd80dfe482f862f05efd4e7a2a2354a828664eb64b16395.root': 61L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_18_77c33d117108643be369cff59815229ac6c884e053db2f0f42a5d617.root': 37L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_4_4d7ecc169b13e56f24894406d9c793edcd5fd650355fe4ed5ce808bd.root': 144L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_13_f066e111a8ddea976865e7a4de33c221941021cfd3af8630a4586c1e.root': 20L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_2_7fe63e57be4268786b1fa2f3ace82cabfd16ef26e66ca70752899df1.root': 137L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_5_1e0a009f95712c711787974319722e0cb44b8a73d0aa5b9cd18601ea.root': 50L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_13_45cdc6c5c9e17fae76e93c0b7b11492cca1403b1639b0b4abcb9e527.root': 80L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_4_4b36f4184ddb8ee3ae488e5555a6771643df4addf07fa709d941b1ac.root': 167L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_26_e86fdb8ece0f41b67fec416e7d8324cf02892a6b0fd9353cf0c6a1d2.root': 130L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_15_ecec0c9b31234e6225ee05876d2a83e8415e578fb5a264a6225bc6d7.root': 25L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_3_f411a10929ac9ed284af9a97e251244e86d267c2ebc0ac2f48e58950.root': 166L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_15_f1023e3b080bd190b05d48b48ddc7cbed8a9a3e8dc44cbc2f5106b58.root': 87L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_23_e5a9f51b6d8df005edfedfa0c06b967c4f5c033b878b1dc9f15ea8ce.root': 124L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_11_56e1e4b8a410f0cddf03f34a4257adc11e098ffc06f5140a805b7bfd.root': 77L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_19_32e3a90d88aa085f2d645d39d0a173533631eda3fea7a384043fa15b.root': 37L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_30_e0731860c3ff7c6b350a0c409e743f7e99fa59cc0a93a7ade63b6772.root': 137L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_7_a10d068b82e31813ca68a19ac185b21a5d74be8949529356c2bddf28.root': 60L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_12_363fcc6ff2b7aca3a1cf23c74e37942bbeeba35f890e28285c0e8d91.root': 79L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_27_19da015892e2e4d8924b817305ffa3cbfdd9d7cc2f5b03ce0b8a4c54.root': 134L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_19_c0e7263d7b100af324938bce8ae659c3f93d34f2222d8a016ef1e7c3.root': 100L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_1_cf6f6b1a4a7a3be80c42f1c9975642d1ccd8dff74429a09605b3fb67.root': 107L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_18_756f8493d7ddcfd7d93a029e59c92d7717e86e1f2bc9d6a951a1043d.root': 97L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_9_fc037da09fb16828e56d76e429cc48ece6745793c98e07a736988793.root': 65L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_4_dfa005f30f8f7ca334fbb115563183c4f4a3fd29880a4b380a5caa30.root': 50L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_17_87a2a8b081bf9d31015d2b464e05a28de66e9e4496a8c9f8a9309ae0.root': 96L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_1_dc7e7925433735645d4a9eb90fe508e5537310ba87021cb86edf158e.root': 38L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_21_162c18755901325e173ec94f9687854d952793eba2565d1998206388.root': 115L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_29_78c6114a2f1e5b08532633742f3a5d336955a61b08cd3b688747b5bb.root': 134L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_7_dfbd27fb75e9e7f70817643cc01b7a7e17107826afd19e613f3c1104.root': 173L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_16_906e0dc5e9eaf82077afd083dce861732db5e770ce92aa524e0b7192.root': 89L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_5_fc38df7ef22610b5dc171a68b55d8212f1252f139eea6fc9d8a2369c.root': 147L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_11_a24241db62f4e4026c9c1df8f6d703cafb3df631ff548bbbb96f5d7b.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_14_0cbce65fbaea2fadfa6374f04f9f7b934f6ae522dfbbcf89a1930505.root': 21L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_1_8f93135d825c756445812d2b176dc43359291cb08c4f42543af638cb.root': 164L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_31_ccae5be5dfd9b9a45fe23bf411a8d47d1e0d1579951558aac41206f3.root': 141L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_2_dd9d773bf8307e2385f503d27094df42008b42d1e78b5b7df85a9da8.root': 43L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_6_8331abbf7be15ec62365921ca1b6ea4e0b88830b92a1302537c2658c.root': 153L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_3_70274aab22c341157555628e22b2981ec7c01c7243680767edb65b2a.root': 142L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_6_d4fa32172fa13429748a6b15e6ff2d5ff165d3158a33bac8e6034dfb.root': 54L}, 'DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_6_4e532100bb824535c0d5ae2b6f04344ca9f6cf99e1dd8a9dc3faad5e.root': 906133L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_3_21cdf90d67d82fda90845aad48a0aedb8e4d19f8f72b0edfa55daacf.root': 623061L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_4_88ef68e50fd39fb5e1876d8541f491531a28f74c12b1f4fed28dc6d5.root': 717785L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_8_07b84620036e3ecd38f2b201fecbe807599fb69fac4da431204362ee.root': 1095933L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_5_e2af21450fb53020b89213759a6bdb37c369f0e3b90f5f1f7a6c50b8.root': 811759L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_2_51b15fe8bf15176c3ce428ae6da8e95ad14982a8efaae38fa5e453b3.root': 528090L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_10_76a244bb84365429d5df77e2f3943cdec9bb2bf19dfc04b8d4a4b04b.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_9_f79f198b20686715b74e4c82007da1f5305df58708e637a19274e840.root': 1190465L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_15_1d0c87bcf52b01eb36158ccf46401f59038ae2c54352af58369a400e.root': 378235L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_17_960358506f03365c4043c205010a81d438e3d5cce5ea5e75c25d7df7.root': 473485L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_7_73112b203e92a396a34c424c3481759ce097dd3445bb3113748c9be0.root': 1001030L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_13_aec24fb38933adccb0a649f2869175b0ccf5d6cf740f9cc1e751461b.root': 283669L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_12_3b8150589bc5eff128088b8262e53c4faf2cdcac3d73e0cf74c1107f.root': 188975L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_11_79162c3489f984195ebb89883e37c5e2eb54ece3161a8bf3df7d53d4.root': 94645L}, 'DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_201019_084707_0000_1_53168a86f285b6eaaafa5952fa207258c8094e4e292ec533265df8a1.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_201019_084707_0000_3_f0cc259beaffcdcfcdd1be90b0b277335afb53125ed98d711615e164.root': 194771L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_201019_084707_0000_4_1b3db71b3e0746a9d1f41a10e24fe037f67cf764e72ab5a8c2159d9a.root': 292753L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_201019_084707_0000_6_223814a9b3c1f61984cf5063daac7420e6796fce2bdc71bfed20e341.root': 488406L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_201019_084707_0000_5_bcbde726a19a940e4e19edc6d8ce9c6316cfc1384062688355137d36.root': 390674L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_201019_084707_0000_2_3fc17baf737ac35064dd253682c637aec31a759c5d8283437f18af28.root': 97851L}, 'WWTo2L2Nu_13TeV-powheg': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WWTo2L2Nu_13TeV-powheg/tree_RunIISummer16NanoAODv4-PUMorio5_200928_100952_0000_2_836815f1c670bb4a3da600ae2a41dd881610b393b2f6613fbbac20bd.root': 1395L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WWTo2L2Nu_13TeV-powheg/tree_RunIISummer16NanoAODv4-PUMorio5_200928_100952_0000_3_bc6060ace76e2057dd693cdf9c77ff2c6d2a46d9db88f309d2aa54eb.root': 3965L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WWTo2L2Nu_13TeV-powheg/tree_RunIISummer16NanoAODv4-PUMorio5_200928_100952_0000_1_344393547adb850fb6f222093541a47f198fe351d34934d8a6b785da.root': 0}, 'DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_200928_125139_0000_1_9fe7f821448e6dcc42001151b03748b094f08546b1e2d5497e2fbe3e.root': 24515L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_200928_125139_0000_3_9370acfd5ac1850be2741333016e9d20cec58a014f800d00bbcec9d7.root': 70608L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_200928_125139_0000_2_5bcfcca6e13fa33ce966bed71f252828dc86bfcc33032516a1a67d5c.root': 41341L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio10_200928_125214_0000_2_57a1d3cab7adc4ce700e9013d90e0868cc5194624efb04edf13fd523.root': 7460L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio10_200928_125214_0000_1_8190ca2fdcc9a6c5f68352ddff5c33bc68ff3d49d990735e832ef31e.root': 0}, 'WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_20_ce3d0374abb969deb89f239c3a428f1bb0239ea988d25ea9be987a3f.root': 308227L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_7_aa638651f95d98155d3a7296cd10e494e068dc1abf48ce95dc83af10.root': 1056324L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_15_05b92b451e5443c87d9b812a0570c4b5ef914821cccb9a518bb802df.root': 153876L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_23_c24e26dfd6833643133fd7aaff821e976c2602c64c37a11ff0381972.root': 359613L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_30_6117f93568c89192c4bd0ec619e102794613df704b2c2db9af7d5f26.root': 565273L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_48_1a19bf19ff3c0ba050a2f4a98ff137e0b6898028e35a39052ba08244.root': 1002844L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_43_48123aedc489492d6922ecc94bc13a2eb81861540c89e2342eee0efc.root': 900217L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_31_d058e651c28e0f100e11ca11789366dde92511a90b6239413e2be52d.root': 591052L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_28_e16a86ac6b1a23d373d9144b49697bbfa4e7d9249494e6a56cacc9a1.root': 487927L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_38_8b3301d659684fc834c81d336cb84dd4095599e88e5ee2f09d8bd291.root': 771290L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_54_e1b802abb6ed4faf027a1870017af8ccad052e8332348a6721dceb1a.root': 1028271L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_26_3d970ec4ce6067d51d5c3a6b20dd21c04e83072d20160dc66751b8ef.root': 436797L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_16_52ea3b5a5cc43aca80cedb540c5c97c9e7017871b4f7866b9f529881.root': 179708L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_13_cfed6c478028e0e6ec948455d259871cc1c45f8a49d2a5af02d8c7c2.root': 102605L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_22_f858c88813fbcc491c804c8a3576ce80e6d6df4e22961983684c3cb0.root': 333976L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_41_34534ad6ec1fb1b08f6e5a085fa148e20acf243221b05bfea3df78e4.root': 848496L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_17_03ed51c7f2183dbdae8cf725a6c845237de6e67a3b10538e48137c87.root': 205769L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_34_b3f650df2d7eec5b75613cce66b41ab32491d1ee8b2e90c078e0a757.root': 668291L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_19_9fce741a2de89aaf4c26e7ab2d76e747c5e8f5f1b68a5741f04166f7.root': 257487L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_44_5553c87a2ece5c7ba0e0f9fc649c7cdd49510081f90baec6876387af.root': 925974L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_14_dd3402a32d4143c8edc7c4e39bb672a136d5297feb5d6f3db54fe90b.root': 128190L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_40_5509eada530c705de0cfc874fdf7ec1ab09af47bc345e1201caf45d7.root': 822669L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_42_1ffcb8b8dca968605f1b631620dcfea5da9a9cf5e3f184dcc63bcff2.root': 874226L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_1_d123a025b37be62f5971c0a572cec4da5e4be4af936c92662b55342b.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_36_16fa6292226dcfec02fe7a5aec45186accea8aff0baa8a415b2f6f74.root': 719892L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_24_1399fed281da4d8e3c5c4fa0cbaf5f6144ca2fedd5c5fce1af20e2af.root': 385239L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_9_45c249225587658c5e9996180af5efad20e3791996f89784fa09c553.root': 1107805L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_25_49addb5faf5a341c1e1c0d7a5b08256e2e36799b0ebc0423069628ac.root': 411066L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_45_8d27735b7ac76b655b269f191c64803c1dc4196d6356679268d4a9e1.root': 951375L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_10_cfa2f3ee554b09ad7f48c0a56faf29cc30b734efc7734ea48b64961d.root': 25869L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_18_34d82a2b1f4176da05f0c3bee78122790306fa56380861ac2e6f5e09.root': 231780L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_8_ec74fe20d0f57ccdc4a435e59f2d38413a99c2d2960f3a52073c7d65.root': 1082029L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_33_de86f4b33069e6ccb84609fd1c32ef3d2e4929accaec37d168591fc7.root': 642634L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_29_cc99947fbfa32f406946cd8b0c174e336d839d4ac17cdb4821285110.root': 513615L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_12_235a3a4ad074c34e28d7148e924e15df43df714a5848eb53e424e716.root': 76941L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_37_67a7534988fde28d1d4e97fb826eb62dd17f6a040ab5a211a964f860.root': 745568L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_2_0a37f1dad53ba38b00dffd44896c6f38120cd45d4bfd83d921af2e5c.root': 282924L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_6_0d84ab25c0bc74594d94503320205620d6d2af19f36c86d2f839b1bd.root': 1030538L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_3_9a316a9477af5c6fb90e197e20f5c5bb4dd48207e3df9cedb1d61597.root': 539415L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_11_6741ea2ec54882268b12b6249d839a7a51fd0083c239242e61bbbc44.root': 51118L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_35_25c1383059ca18791cf880c1f2abad9d5454a231d2f9bcb9a64f7e3c.root': 693985L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_39_76b4ae5eff4151b69f439e9a2c7e4a02f213cfeb4d4a22798f24b15b.root': 796991L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_27_b17a2ececbb6e5ee9b7d539d5db838daad10d9f125708335c78ab0b6.root': 462486L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_46_1b20e4a1c823b980b17a9ca3c6e9e6c055b10d4367e2220b85f56d44.root': 977162L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_32_96a48ad5166080b250a054f64129595bb10bca5ace8efd4243178c97.root': 617021L}, 'DoubleMuon': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_5_a65ded3ef44e381aad38d15c1e1bf88111d9bf2bc8f266e97302c509.root': 457875L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_20_eea16a92773daa3b298fcc46eba5f137046703963d7c588d89895d45.root': 570201L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016F-Nano14Dec2018-v193_190426_094202_0000_10_c3bbb322657a37e1b392c384fb6cde0f9faaafd388ff1d799a2f092c.root': 290873L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016F-Nano14Dec2018-v193_190426_094202_0000_11_8c1620a1fa9811d738e6750855de1f40fe2c8e102b292f963f537c0e.root': 296244L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016C-Nano14Dec2018-v190_190426_093945_0000_3_c0e78d5649587c502f9bcdacd9d58444fbd163fd26672b59b351ed69.root': 124506L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_18_e254cf1c6875cfa2b9030df90520f6ef61b8b9f237bd08ae09b75302.root': 22393L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016E-Nano14Dec2018-v192_190426_094115_0000_11_92eb36ffea08b5ab8c3c64b9c4cb64445ec3b30680f4a6c2139f95c2.root': 227878L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_23_714b2d479690aa77fbfb3e25c2c2f261ed84d8bd9812e58a11e986fa.root': 437166L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_4_d0f12e1b68d52cf6742c2e1b05cffcd7734bfd104333b90d575a40cf.root': 608842L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_14_9fe85aba144e47bf0da33273c3999f0d357d2f20bb7b89fe2fce1d75.root': 372935L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_22_f74652dce3eecf3c913f13b434cc02fae2dd58ca96afdf8df7baf487.root': 33380L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_19_4c90ec4e9fdca3a80422598a776ff1ed13abcad56ef0a40303ca13b6.root': 24023L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_16_93058222d1e7dbd3b26dda1442b63a037f7001a7a7f931177f269bfa.root': 176984L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_4_057e33cd76e1d68de2afe24cdefcd76e656293ec496457d401d6a8d1.root': 90462L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_14_0e848c7e5849b5dcb6b76e7810128ecce0828547237ec3ee86f5fc74.root': 167417L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_29_ff6e4037b49d1adcba00d8ce74c51dc4b3b93739e5faf32902c9c885.root': 52329L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_20_c502a9a8d218bfa876c48bf43d496601b9daac5f525a5bee405c9b81.root': 27342L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_5_f3b1d52fc6a29e4746f15bcfc63786786be8a44ba59f1e938c858b3b.root': 201372L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_4_7ed5b275199a908d0aa8a8259e241e9a01d9c2162831da86666dea42.root': 196665L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016C-Nano14Dec2018-v190_190426_093945_0000_6_140016113a4bca53674be66e91b3677bf2ec3abc245194cbc52ab3d5.root': 134509L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016F-Nano14Dec2018-v193_190426_094202_0000_8_af1fd9eafcb6030b35df06650d2f4fe7a9c37a71a6323aff79862ddd.root': 334783L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_23_ec845096085ef0c4ce82d4d79349dcd00af785ec67b9e26584740884.root': 35471L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_2_92d253a2ae17a219776393b608a81208bd59f560f71c12b0564f037b.root': 191869L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016E-Nano14Dec2018-v192_190426_094115_0000_8_a547c581518dd6c8ac7ef1f0af956f688b24a4a8d7d4471f72c43cbb.root': 281057L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_11_014c22bbb52f87c2e4dbba7448708196f642c41cd17439c088d63322.root': 153069L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_3_46752248c8041735df05242622f5fd52ea2df6540937c3d48ee01da3.root': 449269L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_19_0a7d630017cb2740aad57c6d4169a181590e47376792b81908173a05.root': 408620L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_16_07b55fc63302b457ed53931096e98827018c707a40ac1d528ab5f850.root': 386915L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_14_664c21c9413b0ea515f18ae228a92e85424af52a4e6f796681cf0247.root': 10636L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_24_8377cfa1eb01dc7683a07ac576ec6b2087aec3ce9ad1c4e417d5a4ea.root': 443896L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_12_9bfc8619fb0c8484b0a6aa6bfa9cf98c4c3afc5e283def900d6f56f5.root': 157773L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_7_ed22df9b681ef00e3dd15879f7bcdd8378a624260e6ed7d1842d91b9.root': 209626L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_13_4095429f5fccfa9ff24cb8b42946cf3b61f9b5e0cf81f093eabf2aad.root': 8853L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_4_132e9592b773eb686b44a229cf6d0d7d11c29268b932133d99c398c6.root': 451094L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016C-Nano14Dec2018-v190_190426_093945_0000_2_9a950fb4ed12f1d3b15b1e37f2a5ee2c0839f1e29802cdbc8010196e.root': 121013L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016F-Nano14Dec2018-v193_190426_094202_0000_3_59cf7642cf818d31d329e2dff1ecc80135325f54f9e151960d5ae623.root': 305767L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_10_089330852a16ef4dbd1593034c6ca3b558b7df8a4fd53515bb58d1c4.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_39_bba5d5cc8d5b822d7f98317dc58153ea26ba0953b5c64301664d4d31.root': 84048L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_6_775b3b8ada98b929c72973dd0da2487e31038fa072a47e50e3e8fc91.root': 464651L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_2_c72a1793b30c3d4d9a97486c715ed539efb89ddff037ddd7810c9af6.root': 448353L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016C-Nano14Dec2018-v190_190426_093945_0000_10_c19ea5bf8057eee1c251b0239e0f58cd209f019249a28ad0f6ce8c27.root': 103899L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_15_8719fda3b98bddb837a98e89f468433ca257517dcd5d6f6c1bb97ab4.root': 13079L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_9_d4d4e7a64225b053d83103eff318115d33594cb45524d5df6a738229.root': 218251L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_34_9d0c3708a44072c5bb31e49dcef669442f82ac6309b478beee6b8d68.root': 68546L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016E-Nano14Dec2018-v192_190426_094115_0000_12_fb4169ee1224a8e6576a8b777ac5110ed53ea302a29b2bb6b5bcb0a9.root': 232561L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016E-Nano14Dec2018-v192_190426_094115_0000_7_5d9e29651615f4656a3a6804bba6474fb070bc847e3193ad8738412f.root': 275624L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016C-Nano14Dec2018-v190_190426_093945_0000_13_f0a57bb7210f60df23cf84da5cedb95382f045534b4833dd8b1c868c.root': 113693L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016C-Nano14Dec2018-v190_190426_093945_0000_1_4b6a4931dd7c6cb341e984d69350ac0bb38102df01f0fa6722aaeac2.root': 120585L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_13_e5548e24bbdea5e11e62504b4c7988d30b9a375c98409c7e43b79af2.root': 365987L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_22_09c3f54c5e5b3124e6541fc9b37b96c5648fa7b831f7af07658f8773.root': 430028L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_17_dd88fe26789e0b8f7798499a1d8cd628ec834ecf671056c9d4d6505f.root': 181438L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016E-Nano14Dec2018-v192_190426_094115_0000_1_169fc1841ccb9e10f55621fbc192cf60f31c2331d336c2fc5cb4adbe.root': 243784L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_16_11daad238329e1e260298a10bfee7e230118cb49d5991f0453c7d11d.root': 534939L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_15_1982d8a59a46b5c2b8f59817baf0c6887191f43538188555d5d50d62.root': 172148L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016F-Nano14Dec2018-v193_190426_094202_0000_7_35b5e0e2f48e348ea402c7efe5ef125910cda7d481c0922da5f70223.root': 328749L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_1_ec9c8d6bc977b7d6a39f934a667de9c56246cbe87a749984fd30292b.root': 188369L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_6_fab030cd0ddcd3d8400e7cca222a7cbf1e4fe56fa6e869a8bad9ecb3.root': 205709L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_36_e8592c8522291c95143037b7c1191b8b56081a4e7dcaefedca6e5fa0.root': 74858L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_25_6ed510fd7cffd91ffff7b7589d2751eade7c4991cd2d3e4088480618.root': 594663L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_1_916a8d5c1b52f90226c95d6f4cfdf2b24beb74ba26eac59e7066a5c7.root': 26276L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_6_810f38e1e1735cae7663d0e8f4e8c65e0f7b7f0f4d1a32f82e523bbf.root': 94093L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_5_6c26838665892d55680641ba2bd1317c221a3da99fb9bca7d08dccf6.root': 93640L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016E-Nano14Dec2018-v192_190426_094115_0000_13_197ab860dd34e1a640027db3ed98c435a19205809a38774806026292.root': 237990L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_3_7aaa264dd0253a9d1b8ce4ee243ab18ef897b87b28b8ef131b2af029.root': 601356L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_35_cdb64bf23ae255f8936f25c0fd665cf3eb92bab0f508b2c7a7fc11cb.root': 71779L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_22_63faa84a7d2ffee11cd44c8bea9ea1a2aee191efd1ddb4553a5d410d.root': 583763L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016C-Nano14Dec2018-v190_190426_093945_0000_4_61d0378fe02afc2b32ccd4ba9b31ba1dabf7ef0e1f4222795a40c88b.root': 127808L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_32_f893a00bc504eae38331e0cc1af08dc992521ee8ed8fe76eee707cfa.root': 62691L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_21_c0bdcca7aec38858565491affe4c63aaed2869f8ba10aa16ec43380f.root': 422961L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016E-Nano14Dec2018-v192_190426_094115_0000_15_99af3fc049ab9bf845cc2579bcf0ec7fd5eca33f90c2be95e40c4ef2.root': 241918L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_23_167398f66caf33a11a381a29f9a6537338a1b1d4897019e3d578de05.root': 591171L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_12_725c827e54cc49af4de557d0f371a43b658fbf4e68a62214f09dd929.root': 5525L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016F-Nano14Dec2018-v193_190426_094202_0000_1_5eca5113ad1f8c334a2807393d477d47d21494cdc79caefa7b6e1234.root': 299700L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_12_63f6b91b7dac723582e5f20876975981ffbc86223d9be35eefea07a1.root': 507313L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_7_aaee09843b02c45509c6cfa75aa0bae5740491f451fdd24ceaa067b1.root': 471621L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_30_60af3bbb96c6fd3d2599e3a17bb30002c11b054f6976ef70e3f79bd7.root': 57522L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_2_ccd36321beff2072b11d9a42d6e7baaa0a453c940dae477568a0e12e.root': 55263L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_25_98271232ac85270fc50880e168f62fe1185549f79d0774535f506e87.root': 41094L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016C-Nano14Dec2018-v190_190426_093945_0000_11_623639fb0cc22094d222eeb1608493b205654025bde2334580221c0c.root': 107044L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_1_0e9d1aded79313f3714c4eeab53238c4abf3102a5fef0b55334a2c37.root': 562988L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_10_f5a72c301468a8e15346af47beddc3ce798b30f44d0dbaaf92585e34.root': 346197L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016E-Nano14Dec2018-v192_190426_094115_0000_4_d0083c934f1c67360e6e7b51c55e89f01b40e62084c13c65e147c414.root': 260415L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_21_21e4d003922d8882f2166f55ac42e21e5865fb09e02e7d4e7ece3c7f.root': 30081L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_9_151c3f2a5a951252cff4ed9f4b3c8005aaef84449809e810f7be2478.root': 646836L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_3_57d9cc01f7cb319109049b6f952992a684a7a156bf8d258e34d33715.root': 192318L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_24_25490cc8962104214724b298713284c2cc256c515c4df4b4f0a119cb.root': 593851L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_6_5285f0576803d20ba5c9709829c5ed136769a7558397d9301b965b4d.root': 624804L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_9_898ad45173ce3840491205cae8036d723e7de40e100ea6c41eb77a0d.root': 101416L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016E-Nano14Dec2018-v192_190426_094115_0000_9_a12f4f2cec3f603544cc261f2fbeedc96733751403305544b53cb941.root': 285977L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_17_e146d442ca324c8c0025a2d86c352b791246e2bc70e1b26115a0653f.root': 19939L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_18_88a57104b6742ffffb6c7c6faf65bf1251e45b2adfd53674ebe44499.root': 185725L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_10_79364948f913a3408122d29aa750b656d9aafe09161486aabc5e5bdc.root': 148185L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016E-Nano14Dec2018-v192_190426_094115_0000_2_44a9fdc2bdf053c7678de8502ca9dc47234e9123371cc1ef9543dc14.root': 249016L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_8_8eba59add9ec677f8da9a6e00182c95b94c46e57f8be2fb3fea852ef.root': 98810L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_11_a33aab727bbf44d877bc176a3fe38fecd2761717a402d151463f76c0.root': 499586L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_24_0f5ec2ad825e68c65ac7d086be03035041d5116fee463ee9ea52cd3f.root': 38244L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_13_9b1c7244a923fd211bb20f0cad71b7a0cc4f5cf5566c88aae1dc590d.root': 162736L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016F-Nano14Dec2018-v193_190426_094202_0000_6_92c235428b434f07824f6bb6a44480d73c19caaa0f4819fa12f2baac.root': 323009L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016D-Nano14Dec2018-v191_190426_094035_0000_8_e24402bd2f319420d04fb5baa83233526318b628a82aa8a3a705668e.root': 213844L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016F-Nano14Dec2018-v193_190426_094202_0000_5_0053e9b135410f5d640324441ccf63e5181093f36510f286cda62967.root': 317304L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_18_246b4a68f70a973713a656d0f3e0e80415dad226b86b171f4d3b00d6.root': 548871L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016F-Nano14Dec2018-v193_190426_094202_0000_2_2e82fc1403d540425fa01eccaf61615e713fdfb8d73941199cb226cb.root': 299720L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_1_c74ad0b969e30581cd041ed7ad111aca0b4bcfeecfabac5e5cf1892c.root': 415601L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016E-Nano14Dec2018-v192_190426_094115_0000_6_2a3e4c118ca0c0f6c07ce7da8695f84f4dc9c8f3fdafbfa6960c6446.root': 270517L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_21_593f12e03bd15c47ab167d3122fd662d50f04077d9407ba0fd33b91d.root': 576591L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016C-Nano14Dec2018-v190_190426_093945_0000_5_092e152825438072fc79a672f2bfac958f23f7a81ba0e8a8e683b781.root': 131223L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_28_fd66f0308bf0b7b0d8abbb2f7ce1961ffa4604549699f3b2dca0e9b0.root': 49177L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_7_fa4b10f2ebb3d14100ab558270b6ba88506edd110f8b0216e7b38998.root': 632110L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_17_533bbd55d2a174b47e8a27b372ea3f29e00eee4187b7570e0dea6314.root': 541779L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_8_0cbe96084392463c5eabacbf9b5c7c7a246e8d1fcd29c5f565ab9ee4.root': 478444L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_16_dc990bc5486dd9246af839302d9f58aea4430de42fbe94b6df9349d4.root': 16090L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_14_afad473958bf3eaf7e1af8fbaa33354ee300ce3345441c32cda3907d.root': 521062L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_27_8440ae417e0e2071151bdc2c0cd87c2706e6660ae9ff16e06e7f78bb.root': 46660L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_5_a598a75867555a105b5b08ca11ab4b1cc103139b8aeba09313188cac.root': 616805L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_3_65a58f2bc7f60cfb2fa3d54198cfaa441ea12bd73f38a0a9ca30cf5e.root': 87377L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_20_22a2d6535df7c65b6ee18c10e1678c26277be871392685c071cec7cb.root': 416186L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_12_04fe6a5672103fa667fce935df1fe3a614f53a3c92a81d5c8b884ec6.root': 359460L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016C-Nano14Dec2018-v190_190426_093945_0000_14_a25cb4450d676757bf434e1520a8313c1f80993e8d4008a622c0d3ee.root': 117202L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_7_1203681403ba10a4c288ef03c90249befaf101d3b8d88d81d8d7f3d9.root': 96410L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_33_2e333af324ba783d048aa2e7585f29195324782367dea7767c66d187.root': 65644L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_26_029c70795cc6c9dcdb6fbed876d8a3bb36b5dcd0a7056a293626c994.root': 43743L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016F-Nano14Dec2018-v193_190426_094202_0000_9_08c2749185428ffe1f5c0e35b495f67fcd2648ae037d7eb21e41b7c6.root': 340664L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016C-Nano14Dec2018-v190_190426_093945_0000_12_ebab15598843171d4ff0bdaa51d0b9b8b213b6d3c67dade3132e9919.root': 110518L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016C-Nano14Dec2018-v190_190426_093945_0000_7_3d3236090990d0a6369f78fe67daa7c7e75742ac5f6ff9c93acbdced.root': 137939L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_15_d04dc2dbbe0b27fe89503867f1203428034450b9f9c16c4f186368e1.root': 528000L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_10_c635d553e600b4e19b0b83e0a998658f616ea529e1b3505016425201.root': 492130L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_15_e78e4451821c051a95ac3775307fca273b8f8c30d49d62313b2a726a.root': 379983L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_11_e272f79d643d2b6d72a77acfa4bf98f4d113a485468d669153d357ca.root': 2337L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_37_fecc0512bb40fdf6c6d29ca3d9babb9f963c5666a19c4a330deaccbe.root': 78078L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_31_90ac92c24242b936ade08d110275e1c104303b04e47dcb2863e0cd66.root': 60086L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016E-Nano14Dec2018-v192_190426_094115_0000_10_b4edb14906fcec4fe3e640267fbea8ec2d165824737113e97895c2a5.root': 222537L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_13_f97ae123e2203a2c2c3b7798d0e6f6d4ae203cb8629a351f16b66965.root': 514017L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_18_445ea5edf20ab257925a04ecbb874097c7de49518efa60f57c1fa4dc.root': 402101L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_38_924834da86058d6ebb687176405d26ec86ca543a6188e830079e518c.root': 80958L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016C-Nano14Dec2018-v190_190426_093945_0000_8_99189439bb5828215ce5a65f443b8daf13344640623664df41a35c7d.root': 141231L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_17_7ca3874e31dfb4d96cb1c64565d6eebc1630c5162e29d2070f6e0b8d.root': 394107L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016B_ver2-Nano14Dec2018_ve89_190426_093904_0000_40_1706a03a7791af6e1d2d9779fcfa71eabab0f5dc67c7c338ae545e14.root': 89935L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_9_474326b626b97553c00249adb73bd1c5f99c49fae1851d8510741c6d.root': 484771L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_8_ff1d84b37dcd3c43e55bbfa913c5c5849b5ad0e941f5faa1b10aba9c.root': 639901L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_2_44218a7cbd53ace0d3fc7356f0c8dc04c4f1c72f526afdb51866f1c4.root': 595117L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016H-Nano14Dec2018-v195_190426_094335_0000_19_37bb91eb94386fb0eade2bb37128b3bf1304ff9bdbe6021a82c6abaf.root': 555755L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016G-Nano14Dec2018-v194_190426_094249_0000_11_42068cf33e5e666289f84315c5e49b61794ee61869dd139877aea9a1.root': 352983L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016E-Nano14Dec2018-v192_190426_094115_0000_5_5b02006e9273f8536368817505d2ae959c8c16e311ea6ea150869b95.root': 265332L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016F-Nano14Dec2018-v193_190426_094202_0000_4_254183cc93cdd311a907cc5f7eb924169b9e93d5f36a04552f1a0ef2.root': 311118L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016E-Nano14Dec2018-v192_190426_094115_0000_3_d56b6e15427989ad5a5f47043cfce96f6ecfb32d2ccd1d46ccb9a7cd.root': 254607L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016E-Nano14Dec2018-v192_190426_094115_0000_14_2338ab111bd9b9459fd0a948591f0a7f92a8a287c1c3b3a42ec56abb.root': 241897L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleMuon/tree_Run2016C-Nano14Dec2018-v190_190426_093945_0000_9_a49638ee6388514c901f28531974f4c9726d7a14922f29915c1e5fd0.root': 144541L}, 'WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_6_7c318d301739a10129eca4bbf67b317a9113db70ad083e30e441f161.root': 339L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_8_880b7d81c67b42b195dd81527b10dcec33f35ac0f4f30b74af5aadea.root': 403L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_4_035e8c0eb934d25383a8da98fc85ebea548f5354dd01fa0c6fd8b780.root': 306L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_13_f3a8c29dc4f74dcf8b64461a76afdb3ecc113882790270cb749697cb.root': 100L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_2_1e8dc5ac73d430ce7fb2b1960b8ed1e746fb57afba5fe7f2f53188a9.root': 245L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_11_05b8cffd88b3aa6576a7fb085da88aea8ce68a5a0b598ccb0155d29b.root': 37L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_9_9268e809a234e778d82d1a9b2e4d64f9bd730037a2b94fc81f44f8c5.root': 415L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_14_c197454559d43fe1ffecd80543d5cd332ba9ac3702a8ad17c906ea38.root': 132L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_5_dedfaa6b5be6b3d0239506d37badef4506d3c551cc44367c71dbcea0.root': 323L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_7_f5a6c5d7c63b23b769236494de3509c71527db20d5cc766364b6345e.root': 367L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_10_eb07493e825c01e66c9c8592ce330eb21ba9f00f422f4500e37c20ea.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_3_29ed3d3d80a3f1b10e89d782ba4f7a443873901d1001a29ce38e31bd.root': 270L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_1_50871ddcfa285dd48fb0350a6ae37dcfa4dc6bfb68e5cac7d2c4dc4b.root': 240L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_17_d5c8adc8ef01186c4d74d7d14b7fab9e039748427ffe70c698b2dd84.root': 217L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_16_a2beaa5a4d37028fa7ee6760c27021ed27c5ff9b84eee06550899b2a.root': 186L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_12_d65360165deaaf3cd634610e3a6d81aa6f3629b16fa9af0eba3b5cdd.root': 76L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_15_7b593288a0d347502c5eab0589a3b27a22c60d096b8b5ca58031f989.root': 162L}, 'DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_1_b1fbea5f068882cd2a920600c9ccb9d920b979d334298b8f66120c7f.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_12_e062599708d47667acbb658165fe46eedcc9a1c79fa5e5f219ce90a9.root': 172703L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_17_679059d22195049ae2bcdb48c2893abe5e1d20b51949c975afe06dbf.root': 432746L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_3_c4d4e48d2291c1e601b0301e3fce82cb44ff8510619f2cc15ee33abc.root': 636467L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_4_243ca4d85126909c4eae300ac22122b8d2d2ee3f105013ea1d0c4b65.root': 723394L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_8_973a7c3caa9f770f2783c49ceabd9f32765c642f2b27bbb78c8398f5.root': 1069064L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_2_2156c06949eb67a4ee4bf7572845d28a96fa05af3feb1d3136b77fea.root': 549740L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_9_dd16d691361d8a32467acdba3deb24a2024d6721253ef6790d97f856.root': 1155703L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_16_47a7ae4f03d6afc534b9fab2bbf8f806a21a41cc266576102e1d5f27.root': 346530L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_7_53b0fa871fa449d389b5bf4b49f87262f62bbd4d11bf2230012e3281.root': 982582L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_11_38f0c71d9cc4ef5525f80a50c2ed90ceb33b7b9a820f423f9819fa55.root': 86535L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_5_c9637400119334a978e02eb5037081d8aeabff0f265d24fbb548cf47.root': 809788L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_13_78536756105657f448b349fab6831cf31f76f26c64b56cf06ab592d0.root': 259420L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_18_583abff3153a8f3c573e48e6cb2cf9557822a13f593a7dff08f1aa2c.root': 519140L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_6_d8bba51f07000ab26eaabb8540c8e4495b3846b5032c19f979f0a02a.root': 895904L}, 'DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_46_679b24244479d39135fb5294d36756c2db2f4159aa1a500861d0ec8e.root': 368505L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_1_4ab817926851993d24f8a7705de18bafcaf37d51463d3f39312fc17d.root': 225965L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_20_01104fda5fcc90e2ae065234e590ffa4947e5d2c7ba30597762261b6.root': 52209L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_9_1d299474d185674d89beaeae1067b7e67de6c4e3feda4754e88b59aa.root': 167811L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_6_036f22e2163c33373fa1cd9e65f45f10a6842822ec4ea05bd6ca9248.root': 151124L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_5_84a5b90c92cd59276acb3582b8072ac2b66f33281e83abdc7ffed98b.root': 448214L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_58_3fe3fa606aaf326532f8324a0d115249c7ee834c612be126098a049b.root': 446833L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_34_0921b077d00c0cae0d73d7a220631ff72f01b174ec5c8b455505badc.root': 303440L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_2_5b93b6639e5d01082f3b213f6484abad4bf92bc81e07dbdf2ae7a1af.root': 274556L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_44_cb72bdd9040cc44219bedc7af7057e1d6046ed251a252347d75ca7e3.root': 356007L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_67_c708d2aedc17a754a27474cfcef979ef259c453b03593eb00c754be1.root': 483163L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_15_647387b73452c3c6da3856e96ae77025140f715709bb85b8fa2c7c36.root': 27940L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_60_d3aa9e1afda9897b33ae29e6954c9976ee8bf555b833d84e9dfe0c5d.root': 454125L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_55_7af19982a846a0a9700d9904524ffe22387a35695e749c2443c0542f.root': 431805L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_19_41337a331e1785bd78dae350286b9f7eb1758b78163eaad51e0b15d3.root': 43348L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_23_38bcec6d8f6c5cdc7b60cfe1bb0a57838e3980dac5e26a7f05491d25.root': 241587L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_33_b21c0ac9f3d8dcdd0584502f547c660f697b85132cd03da07c25d9ab.root': 118166L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_29_f56db0d673728b4c57655397001296df7fe98b3a3e0a77acdeeb93e8.root': 95217L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_41_455b0d2afcc68d6b572b8b6b3a753b81abe1befa6c19aba12f2de81e.root': 339722L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_45_1918420756fba9ae2116df46f82aa428d852f1ac5dcc0a455073fb01.root': 363691L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_50_e571f13def547fb138dba89f83aaa7799b7c8943cb75594562665465.root': 398717L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_4_bcf5e81af0b72c7700673b14fb9846c139dff5291e2df2cd45b60403.root': 138728L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_13_70087c6d17bba152e4f1f565bbdd4962920626ecb04fb3c4993f097c.root': 19262L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_22_d6cab1f853cfb70cef11cb58c4ad9cc76e9932c2dca5da0fb36dbf9e.root': 237148L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_37_212d984e1284d0bc154b36c3fb622b384cb980424a74f9514a466d81.root': 319696L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_26_246c06463cb9bdedd25ce8c3deb075ec4d9fdace4c2e3899d8cd2017.root': 80885L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_7_194a2755a20f05a30c983b46e3e552f5711be0b5f823625a7c677bf6.root': 491657L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_8_981a1f48456e20c19a4d9b93960377a12614b91e634b61584953fb9b.root': 162443L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_47_483fb4457bfc4f977050fa29189b25057b207a781fa84afd917f151a.root': 376043L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_20_2d902ff20485a7e3ed80b95b1919cbc952520ba8927857ee839f888a.root': 229360L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_7_945591357e8be529b4bad1b2d46850c7c89a1659b6865bf666621df3.root': 155575L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_66_d59803fb855b899f78bdbe3a5edfdea8a13774b8effc82205435f76a.root': 478550L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_10_2b811c6b10cc9d20060967548e7cff06c8dbcdd4eddcaaabb51f95e8.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_36_6b911aeb8fad80df4270b9707b2fbf6311cae5a7f033a4d11f37b82f.root': 314183L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_26_35fbca5e3dbc5eb3e661b626d77a5a55d2fe59e5a19904c42c734334.root': 253771L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_52_136086862d8ea7e644a6dbdc8101b1c2cbaa6aca65b888940cb6009b.root': 409351L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_28_4094824f99c2a18a11a8f535f9500ef8190c34dadbe1bd806f0fa55f.root': 266529L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_11_e16621dd11825c1f553fd506e5ed8ffe0b72b0314fc19d269291a9c8.root': 173226L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_29_738694c569dd3aeea39d73a719b4f79189d6f6b39e00932599959feb.root': 267080L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_30_8bf216e032868800544a4e63972cd3f1fc97eb1c602eaf66d99eada4.root': 104554L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_12_7e4ce2c49dc19a7e2e09c7ffca21d69b479963a738e812b1480b3dec.root': 11772L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_32_8d70aa391d5125e37eb5a4e4ca49e359a98a4aecced9734e11a88413.root': 113756L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_54_a6f44b48bb56f16d0197b97be48b8b5ecae63e35f2b887671e6de780.root': 424206L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_28_40e2ab01188d8fdb2875b0a6876d00ad97636cd5e89809350b00c880.root': 90779L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_14_4b50efd8edb47621d19de3c5cd4548fb4ed169fd7953bbaa562b209c.root': 23813L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_53_22d311721ab1937e2ec12511f33cd39f9e9dcd90c75ff2bddad1ce75.root': 416803L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_34_cf3e86f46559f15a25da2aa7bd57dbe4aa9cc927dfe65ac991a2c93b.root': 124871L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_6_d9688e0f8377e37d7fd31b96471a9f096644b0a64a7d72bf21331a50.root': 487432L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_21_5922b472ab5f723c09b9f232ef79d9fdc271b7c460e5a05362a64bc8.root': 233305L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_17_dbf0f323bdb7e5cd8097d3f2becf2daa06dc4a203948c62aafa5f6a4.root': 36803L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_27_d89d721aab0fd087dd64739d5b7881f763510187a0bf5fba53ac362c.root': 258743L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_51_c66e57f50122116c955ed5df929db28e2b1321fe099e2d9455ede95f.root': 405809L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_43_a17f8bdecf3402d3aac144095d3629d1b2d1ac8f22b13bc23609fca0.root': 348390L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_49_8496a3b8216898d3265ad847e5e9e66dcb2efc38ebc4482db14d56e4.root': 387318L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_18_53812e3a819afef3527f25734493471bf8685ab370352098d27467c4.root': 213970L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_65_4bc5c01b57e6c56b63a183b31edae3ef993711ec4c6f5e968d093993.root': 474154L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_64_128aa618a3241f2a5f3219dd16b65e9a24570e7d26c0654dd84a8c03.root': 470124L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_25_c70ed3f5898cb3da5da445bfd24a83e932ae00cc797184a8e5b803f8.root': 76772L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_30_c0f620da9a106e70e4540643b455bb08af74ecfec722e0babfdc84a1.root': 278451L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_1_3df224fd7c891a27acc8605edb01fb1cfda756267a76b996d11aef0d.root': 48464L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_35_ef289447ab4499b0bdabb18a747143d661a9993c27f310c5d69350a2.root': 309795L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_23_16510534ccd366018c68357ea6b1db9437d8451743cfa8bf9adf1e84.root': 68299L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_5_7f86d3cbaba332414c8cd481c8e88442ead90cc5086944cba88dadc8.root': 143637L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_18_381efa4f9fd2b47a217166d37cc4095c11c9175320141029bb550167.root': 40689L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_32_71cf3a41caf263c96b56efa726f54549d76f48360599d382b5681fa5.root': 292672L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_48_cab8ca704554ff58a742844ff7ef93e5894d15732bce9b177533d638.root': 382436L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_38_684a6bdf5f4bba1470f0e5b534c4d635429887d83de5bb396d387039.root': 324669L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_39_979bbcbefdce41765169e5f1f44eb573dc826aa0eab1dc0c8a557cf5.root': 331704L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_24_e7f3f4f1af3c517c003ce1643f6f82e9100b5f713732ba1a333466cc.root': 245544L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_35_7c3e5cdc7a4ec270249ac0b90a3c3715a8568b903181b71e5e81d6a3.root': 129539L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_2_d5ebf9eee8bd0e5000981f911150bd601e54032ec0bb4dad5c7f5f73.root': 97088L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_31_b4f7f247fb78dcee6e63583632823cf1012529fb207f5cafe42acee3.root': 109323L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_10_42a93afaa37eb8bde4f76378748e2cab39c478a642bcf895592d85f1.root': 172748L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_31_49526fc5afcc40a71a9ba78b0d81f5b3626ecd7f008e67f7b4969235.root': 285946L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_12_57c27fdbba20be53099cbc6b50b28d001a17d4e93752d7585f6a5db8.root': 180712L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_19_1260e1af10745e4b887a5584c063ae969debe151a41be23334a48b80.root': 218465L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_14_d35f25027517379e1395dfef798b74d01eef420f55a2b0dd3bd85948.root': 190874L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_61_b4255a356ab41bae1dcbda6801bec8733fef2e43b5c3c1f1df086726.root': 458064L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_8_7ba9b7dc0db2eaac4ea50399c7a83c6abd23228cf0ef2fd5f04b1e6a.root': 499331L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_17_7f079e829cca4fc28367312b6c327f4341bcf0a95fb5b68c2dc80938.root': 209260L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_24_a14cdab27960d900997faf51d47f4c8b40904fb2e40ca763d9ed95e3.root': 72601L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_40_4278e76ae88cddb57c8e35e6cc89aab8e4c513a61bcf46af0897bc9b.root': 335710L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_13_03d69c8176d38257e5191951b1248e8b427ec571aab8f3e7164c8ac0.root': 184629L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_4_c63ac7cf84b200a24e81d3c142dada589de8774c55843522122c542c.root': 391210L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_63_2c6f50346511c59bb42d5b9d8bb66031fa1c867ff4f7caa8b35add54.root': 464310L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_9_44ab91268449df9c25abe5ecfb5380fde9e0a85aa17ae13936c4124f.root': 503699L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_59_ebc74305a873b1ec5954b3fdce085276620d8020bcafb3696164d0b5.root': 447212L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_15_e64422c2f72fa19c87de5e689ecf6db7adb0d98ce795dcaedeaa06a9.root': 194629L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_11_5e49fe4057af8cc9d66422bc14d212aecdc2d78c23c69574152eafd3.root': 7589L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_27_614cf652499f5535b5da944fee7335236c8e2a33eee2df1ccdd077d4.root': 85313L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_57_ca5501bb21cae5aef9860e16692819cca11c5b8bc289429d070b0854.root': 441501L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_21_1e6dd6abc9dd63028ed19be76dee0284e191559bea4b89cc1a56df6b.root': 56837L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_62_5076561ca65a5357f91a8ff037137ab889e65039b2ceb876516361fa.root': 462705L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_16_936fdc2fb12f5c86ec600a4676385309b48aea9d697fbe62da59c27d.root': 201660L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_56_a4661fb91d6df0ee09494b8951bf290f10a449d50ae2ac3170d6886b.root': 436271L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_33_e35ed21567f3f6bd17dc0957d56219e1a57c32f8c92e090279f60789.root': 298245L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_25_8bb3eab71f8b6c7d8293e42d0e7d8b7a2f7fe44716f9f46c52f30b87.root': 249476L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_16_549433e3373271efbfe2bbdfe0f872e3dc4b7c9f52891ac391e7a83a.root': 32367L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_3_0e427aa5afe590b241e155cc539e280c312e7559bc2aefa9eee0d143.root': 134008L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_22_ef50ae4fd8b4c90578a050fd06b45b89d3c2962ee84921a4f325d5f5.root': 63526L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_42_c4fca61a5ebb886f27d1fc198f0698c0050454f47cb897b6e6698f87.root': 344108L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_3_4d66b871a3fc8cecbdd8b1e06c825c5eda2fcdbcd1b347e5604e2bb8.root': 335493L}, 'ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_1_55f2fa102e7811e0003a6dc040eecff53f36fa4cf1985dd9fae1907a.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_3_1514ae0e729223ca0d5abb08c78c2f3c6ab1c2de81035227600855e5.root': 7725L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_6_e95cdf3b5dd45f77b6c8378e7911104cb1fb5c2b76bf62537a32f65f.root': 18111L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_5_758ae4a0eaa5f141bb52ac6ae5fc3e35b1b8b60cf900c0b81da3d215.root': 16229L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_4_be8aecc3cb062ffb93229b555253a0200332be3ef8a0e628a50a75ad.root': 12103L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_2_a5f0e1dfc7c89c583d851a2fbb9199e81126db321eb4a920ca8e3072.root': 5014L}, 'DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio7_200928_125029_0000_1_61e7dcb0353ebc88195c38e26e334ebf8cbee5ec914a6f6a1309472c.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio8_200928_125105_0000_2_23c3f7bab5946c8153c748656eab7a8248c99e2422932d9d2dd7ce06.root': 51730L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio7_200928_125029_0000_4_63b4616673cd6233478911cddf88add3e29ae9fb77e108d4ad1ae19b.root': 33892L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio8_200928_125105_0000_1_4229231a6e589c92c0ae7e4945e5c0f2a793256e4a050a4e670e1e79.root': 37709L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio7_200928_125029_0000_3_20b577f5dc33ef1070c245e4b0d2f9eeaf7944db175a750e6bee9682.root': 29127L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio7_200928_125029_0000_2_19f6a8b6e79e4fb3b62c7599bec967c543a0e3cad4430e94f6ba0e39.root': 14213L}, 'WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_8_ad4a84ce27667457adc6bc5f15b4e0329ee2ce5e9ca88dd616a09240.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_1_9525766353011ef228638ce34f281121fb03a07e2a5e32fd4e2b8a1c.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_9_aaf92995e3cdc8bf2c000fd794c36954825ef474e81ce923ba1bc1c5.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_11_bb629d4f647dc4a309270fc316c37aef1229dc096ddbdeb0d04fe8db.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_6_77bb71c4cae66be34b8fcdd2647dfbaf6ea18b1db739661b930845d5.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_18_8df103163cc9d6153a50854361488c1e7b141b3292c52a48ff8668a3.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_21_0659349c3f60450330fd2e2398727a44be39d76407a4cdc8876d92e7.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_20_17ccef3740056227402f098e6379324ec7e9b0b5f9dae5462ea1abd1.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_2_a9ca5e9e40fdd99af5a7710457ec790b1c2a4d33f6035cbf66bef17d.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_14_8425e8b8385e1a6d8f0f05f22792f78f3818d38bda6bc1e4194508e8.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_17_bf8dabef38356282785991d2a9147fdcc53cad363f50dd9dbb57c649.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_19_dae532f4102ebe05bd410aedefba0cd3cd0ab0b48aedd6ef08953793.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_4_f11538230f55aa74f9aa5e8883eba7da02c882a9e06f0ac47c309a86.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_16_7315506f6717971bc46403c4e74b0996095a28d4d1ea2858b1639a1c.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_7_1260b6ca00796d9ef10bbb14b728310fa14e49befe28efec3fc84ae5.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_10_e4e30674dc15b6a1d3004d9a5022f3c6ef1366f0dafcaea656796251.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_15_2f495f87f1deed80ab6fd9de30be6d700df206eba0932da3d93969bd.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_12_28f4ed9364765360c71eb8a539c7fa48245bd2f00fcadb388fad4938.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_13_3148b0cb60e30159885b78f6b3c299b2db3a6058487bf8e0b0158e41.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_3_234e82ffad6bec211418cad6b52c32a96cfb8dce43a6c6afa3800f82.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_5_90f9d6bcf9a8a4a6313c9f850447ed0849f71a9b403025c53370fbbb.root': 6L}, 'WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio13_200928_125359_0000_4_350d48fb365d993f0d2be3714a8754a5804fd1df5896f77d1fb80c8e.root': 239L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio13_200928_125359_0000_2_d804c2a1d4ce2e811c2be7f0ec7e139df9905a83784d6a2177e3311a.root': 171L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio12_200928_125326_0000_2_fc62826e8a0caa609383d6e37f3ab873ab93aee8b1844c0f9f20847b.root': 28L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio12_200928_125326_0000_1_df7e90e0ba7ee9ca3f265824c4860bcd220a9304360cc067b92d00f7.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio13_200928_125359_0000_3_b1c0a0c9126ec3af7e328c939cb7db133e9187e4408cca674912a6a0.root': 176L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio13_200928_125359_0000_5_9877aff82610a73a4b8e8d18f81844049aefed1cda67a64952158186.root': 278L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio13_200928_125359_0000_1_371bc5fa7e3a179bcbf2721f71ce7f9683634e349675deb8e10a6b91.root': 167L}, 'DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210103_0000_3_6165606c66b1615401794d4414d197a77c5b4066880a28f0b310f5cd.root': 20353L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_202422_0000_1_99b1c841a4aafd62779a593beb3ef83802eba96c509ad9d3d1e2ecdc.root': 532457L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210023_0000_3_5e2b04820593450679ada0c26435c0971c445ff92bcc5391b0861a05.root': 1077482L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210023_0000_5_78fa5a91f3bee8812ceae0f6df01b866b778a0434824a18137745ff8.root': 1429221L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_202422_0000_3_4d8585376a1d2ca1f537f9ceae091e6290792a8007b930b9ed4daf08.root': 566368L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210023_0000_1_6c0b0f2045e1714485ed104d81b64a5fd8e80559e2b55a191f3fd10f.root': 1043571L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210103_0000_4_0514eb5d6f9f5f90517d2412181503404e619930694dc0e37462bb83.root': 180146L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210103_0000_1_dc1b6c24d69dcd59eca271c3de974dd8a2ebcbc9186d2763a0500488.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_202422_0000_5_be2fac3c0822de7b9bd7ef5a87540ce6ae04c074ad3e646b952b8aca.root': 918107L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210023_0000_4_8dd796558b0760ec56ad4198381e6a851a183527592c385d9b7a7cd3.root': 1261594L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_202422_0000_4_336e259b79437ccc48e060532bbddc108b8c66895576481e5cc65311.root': 750480L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210103_0000_5_9e2598d90f84e1025c5cf800dfd9502a423e926450c75ca1b07a4c64.root': 349344L}, 'WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_3_b5f271c9c6e3440ad5569c2b86692a97016c731ac93bab91325a8d9c.root': 55L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_8_4dad18d6d6dd6baa245e6b6c831c3e9ae42b2ddf34f9d33a0d43d0bd.root': 260L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_5_e5b15f06e878cf8ea151b1adf3673f6ef0510d1fcb6aa0da490c64d1.root': 134L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212835_0000_1_cecb7e3b3e0e37e71e48012341a03d7cb1f07a48df064a6b22156a0c.root': 287L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_2_0cdc3dc6e381f0c5bbc06e0fd55a11dabb9b6de53f88ea01764028d1.root': 31L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_1_9b76c123c9efde240814b14faaefa9767f199d3e665a22129e40239d.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_6_b583a5fd4bc275f462480887ce6e802e3a5acc5d93e30fd11e272886.root': 184L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_7_e9e89cc28c78bfeb8285760f2d0fec8b54ee1e44c42fda4b1fddd139.root': 220L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_4_6c277a5d177187f7789c0ee3ec6cbb15c479854153e471438ed1c758.root': 88L}, 'DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_6_e3d360a656e6beba39e614f41e14c0874367a3467613607d23998f13.root': 222272L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_1_a15e0541aa7e7e610eba81f75cc847306859eaf2b3ce5350739aaf91.root': 53987L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_10_d5431c95b3e88eedb6dfe28ad8fb3df4386a30636be14f8804849387.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210624_0000_4_4f08cbd178bcd78a391bd29be81f393b82f1277e2e7f9c19af2b20da.root': 480755L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210624_0000_1_c10a9a95110507af23b76fe1715dc3b5a3fb60ba9df65265fe36abb4.root': 358692L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_8_5a60d024219d2e29f4146d456b2a39dd571378cea195f2123812c4a8.root': 304004L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_7_7947f167d9a40b9c3185625e07ce1984c1ad43316c9500c125d3a4c7.root': 247828L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_4_e55490dc565ca486a46ede6df9147a9b7f3ac62f44b8d3a4dfe33350.root': 119084L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210624_0000_3_1ae9fc1ee481cb6a08383da4c5a84497ef3dd3bad573b72d1a0cdd50.root': 419412L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_5_20f66b29d027751709d04c6a55cc67f7f1525795c804ef098231199d.root': 172930L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_2_e4c27a13c3432f6be934a02ed4a2da92823ef85d379c5f266102045c.root': 57385L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210624_0000_2_ca94b6b0cd1a2ea2833aaeedee2e8a5002c00f5db8fa89c55ab62118.root': 416545L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_3_b2f1f5537629eb715b18d56686e28081c76239050f1892f8b1370f4c.root': 65491L}, 'WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_6_40817ae7447da5473b1c2baa03bc055020c5d640ea46f2fb24d15fa3.root': 113L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_1_2c55dc415af61d018f1ab1908b15eecf3fd05ad11f819a33fd76f27d.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_7_025c415cdbd53a12f738c464e9babc1407cd7f07905ed0ea936b1b59.root': 149L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_3_ccef1906a85fb19604226a247129518892b119b1a66bd4f795f1bfe8.root': 26L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_4_49eb569d21499bf06da73877fe05f8b7c5502acff9db7c82fe98b9f1.root': 41L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_5_91aa8cdb431325e1640b54d68eb30dd5f8af1f54f1447a0da9fc6ade.root': 81L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212516_0000_1_062e22ea9a53a29d86a6d1941b8a7a342d3129690d98ea6b839a658f.root': 152L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_2_a612b25c795803879d758954e6b53759a4992016c4fb5e869744f074.root': 3L}, 'TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_34_d5b266993214414eed90c8a32d05265719a521fc8b557a5fc313a59a.root': 91237L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_106_61892e1c8bc766c9905d5d22563048fc70b9fcb7f25d1415e2fd6c59.root': 16936L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_76_ebdbf24be9ec1fba4d4d22cc79a91bed625ed602324407b1d5373137.root': 202726L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_25_88f48374ca3ae0588a7eb341ce8335975d1354b94990a65bd2d0a0ea.root': 70561L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_48_3832f11f6f5631e76335290d4d5fce35a771ff016fa467ee3fe159a7.root': 125672L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_14_41b05cbbe3d8a58308d8c44975b80dc189a80c724f29914878acdb5c.root': 45653L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_104_b44fb59ef5f9b18420d661f77cd39209b8b5787401096f8c60586779.root': 13846L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_109_9ff3684151a334a9648a5c3f6ae7daf01a3c83206e7cc9210302bc90.root': 21340L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_108_c4ff11aced9bb0d0d0c7b23a9761d162fb497c51c190a41f8615a6d7.root': 18368L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_20_69f0f8f179530082be962f770728cea89deb2f918e6dbd52812f32a7.root': 62427L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_66_778d363f6d62d14b1427c795e4b9046ae8345a85754f034303ec34e9.root': 172874L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_10_895ad00ad5f75ab10b43cde1d8dcdde5e22ea8cf14a2eb365cd23222.root': 23548L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_45_370210409c08b9fe243e1dbb39e3bebdf0b7fc41a339c61e52ce52b7.root': 118106L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_28_fd344697f6c87bbbd38b7cea67cca8b8acd7be3d782f07761018ec6b.root': 77539L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_63_a402a68e5e719f839ee109653f67d2596da95deda53e72c1704886df.root': 159585L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_31_3d65b4c6d34bca00fb8e989b3766bb441859019a7a4549a9d3dd01b8.root': 87032L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_58_ba0a34f9687a83d7b2c9a9c482675f00ccfe66228ee9f870e5f29f24.root': 149229L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_116_2616ecb0f0e23448cb1acaf674bd93258964223cc6fa34aee62394e4.root': 31899L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_112_ba3e7efe8173f1851dcc0cefd15364a212cefd0368b2ead15c472ed0.root': 27200L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_56_c3d1e78836c20144bbf22111d3340f6bb4c04e57bc7d1b263a287a46.root': 140642L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_77_1ab1dfa6e8a79ce41ce45a9cbdba40b6ce5e44ead75db6ac6d4eac7f.root': 203881L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_37_eaa209a584f68106c9b191d069268f130cde6e16236719464b1ec7a3.root': 96850L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_114_b03ec66d9e0af8540e3bda0241074ce5cb6d8f63f4a5d1ec721a44ca.root': 28184L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_68_a1a13d01e28c2ac6436b1977d153ba4c6eeb40b82e27ceaf54de33de.root': 180155L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_64_44e71147ecc6f708ba70623f256104c0b3e0f1e093384376d243b584.root': 165412L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_120_171bda7d9ca7494c45b19fc99650ab0a936f0a02e7155c33092ec85c.root': 36646L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_95_893daf4876e919a72d99ccfef4b4963d864b22cb58e255bdbec0dbaf.root': 275060L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_46_764077a8ee6839f31c2303680143a5ec22452c4b896daea57949a544.root': 118636L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_84_b90d881b2726a034aa189ba92eb76c56b4b67fb5de2d5fd4218cb265.root': 234384L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_13_f1282ba866833d54fae07476adb687eef486f4edfbdd929f6f70db41.root': 42784L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_107_e3253ec0d93fcfcfcf3182a003ca6edf26ee6cb23b8a4a891bbb7fc7.root': 18013L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_60_fa8deac7a9f0e7692661caa6e7b2613f2c33765e45e3817d8817e988.root': 153293L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_81_b706952e9a7e4a47876dde06653bd2adcfeee267656378d40e7e7e93.root': 223463L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_16_7b92fb90522b0465b52dac05dc4572dc9428902c8f1b472c2229ec62.root': 49063L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_57_319dc9ec0ba9cd7a204689d2b00fed80ca21d87e393f46e6b2a85739.root': 143746L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_39_0504c6010dd1accb38fe31896890de4d3a518744e15af533cbe02171.root': 99611L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_100_ea6895c92cacc1e6aae3d184e0a9ebcfe31fa2eaffcb5912474debe3.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_85_2551088113550f350ad5bc6f2a0eb0e2f2e12bba9aaf9f99f33984e5.root': 238177L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_24_d5f5775fb4103332ef52538dd85fb09d4b81c73487ab0434c438b9b2.root': 67476L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_97_847368e1175e063d55fd0c3323ba0ee173114fdc585c3d26ac25cddf.root': 276941L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_2_0985ab73e798403e5a67c1d1cbadda09a7fc35525ccc8465e3c2d453.root': 83586L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_123_831655420b8f8b9098aa2426106c8065a83fced263990eb2f0b646d6.root': 40407L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_17_b7e1e3abac66e339c5e793d9934d115170f676721d7afc9d5e5cb48a.root': 52036L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_21_2410386628bddabd64838a6b6668d88a66881ed24eddb64518227a43.root': 62675L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_42_0a4e7246ae00710e751ff804fd8f26b6dedc64c3ed53a78a9f6e8ef2.root': 111164L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_22_16743397089d20051385745ff0786b1e4c300d0e5256f738cb380e79.root': 66586L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_87_e8c2c15e293945cd36aa0dbd7c3b08b27ff2dae054290a8c437f5884.root': 246899L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_82_441fc10c4e84210d93b3d02a33c6b81cf4444c620b6f1c2d6596a174.root': 227402L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_67_e749497f9e09137b78380a107029a8ffd15f49141899d210c8e4170f.root': 175854L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_79_8a8ca399246ed65ca36f772b4f9b0f8902566430a058f66ecb6d1031.root': 213852L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_71_b5ff7cd7ccc9bfcb909ca5ab6fe601869de902a0ff8dc1a30b0c5663.root': 192512L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_53_14d26f4bbfe57d1de83d2e0fafc288c32c72aee642934f8298bf6921.root': 136332L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_119_3f1e04d9fc2e3141ced372425fd05d1d1967717ede23678dc3ec9066.root': 33769L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_69_580e1e55b4b8eb4f1d0f254e16f75e5ee4ee8f1b1e7a2c3a93dfd601.root': 183411L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_12_c4832c9af566db3a1092032011e035e5443dae0c936a4664285ba984.root': 42130L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_70_415a58597d48136482fcf6422a08098cd32ebbd7d7a3ff1ead04aefb.root': 189590L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_99_8348ab92bf8ed62d9cdcf684f4eb9a4cb6ec5c85758ae9a9ca4e1616.root': 286548L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_32_727c46cfd86cace46da2df337523043dce11421c1ced08b65137d447.root': 87550L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_93_19d49e91406344a0f9ba59146fa7fa880b3bacdf3aa0984e48a3ce53.root': 270355L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_101_432b95a35b6d54ded6f7cdcba9fca0ff3b7718081c0e2a6806f27d37.root': 536L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_26_2a4a3cbac66095a1daae219d62526c4f4deb194f85fc3e1fa6af3d82.root': 73786L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_36_88d422cca3fb9788ca7ad4b1ab205c2fe9d634602622c9d8e82645b9.root': 93956L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_29_8a97971fbe44c0a64d6d46e2852bfba771b4af86a2bafd31416f73b6.root': 80610L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_122_5fb471b9e99e250ee3506e199fe8311386f9440faf6851f01b113790.root': 40293L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_9_fbbbb95fa33945ee251c4c243538d51cacd756e16d9b1c4166fcbe71.root': 289457L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_19_edb9055de115146587149edc5ddcac94f669ce7b8568bbaa5643a4f9.root': 57251L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_49_65c83941d453d57bb15016f5c7e57c17de79b6f6b65f5f2795179c3e.root': 126245L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_103_17bdd20e0333d62a99865551798b3c110b322fe1c589f720c8adf66d.root': 10276L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_65_ef7652aa3b153caa71aa0755b8ba8bf37a078f656dadab4b195e8358.root': 169309L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_73_352bfab43b7fbeabf69878ab93d8480e6e659885b7433dc6d8b470ae.root': 197918L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_47_3ebc263ceeeb7ad023162f707f3f67789776151bac4bd404fa3341f5.root': 122595L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_4_f9a5baea419ed7838bf0aa7bd62cc7bedaabf01066fb5f89df8ad82b.root': 126822L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_59_3910e34a94b2a85a7ee34f4d967e586c4e2c0eeb5f90920f0727d0ff.root': 152288L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_89_b693de4a99eec78921e9d21b1c62b8c039878d082c6cf634c36783e8.root': 253566L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_98_b456eead186117819a5e9e3a227150e51a863bba98f8f5585e8fe6cf.root': 282726L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_118_de00498bb9564d83226252e4e44f7bbe69931012eb0fedc2cf37b0d1.root': 32628L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_23_c0bb56dc0b2a36da4610776faba16cf7996fc99fb3b34e20b19c49e4.root': 67142L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_3_4580c86244584cfbc1af6bcf94d8cbd8f46cec4830d86c034fad9dab.root': 103928L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_74_1bad36ed1c0164fc3775f98ba4f78d3272e62c26f13285646b297e79.root': 201719L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_1_358f725bc3994c4f05c7f081cd47600c8a73974029d646cbfe4230f0.root': 59515L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_5_c6189a6cf78a782469ea52f8cc64a5cbd008a84779de9bc8b79316f2.root': 152830L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_113_c61635d01d8340a2dc41328311434c83d61d27c98ed371bd60da3761.root': 27630L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_88_fb92aa5ab9fa7ecc02b3284745211f94e106df956c77212e776ce7b4.root': 250223L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_35_b27a889cd8336e0d7d6b8fbb294f8e4449e7bc85f7fe63c12f0fb703.root': 93685L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_96_fa3c93b05bf1b1148e3834a26f03b9c8e2ad29661b1aebadfa60ea28.root': 276573L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_110_efa0305d99e87885a4b2efd330df62414bfd15786704e31b40bfdd7e.root': 23716L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_11_c13727bdd62ad913eecb6789da8b2cb80708a49be5a9627cffb2177d.root': 34020L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_50_f5a0d1c495400792b32d725de07dc5cfc9a16c0b20fb4da50a9f19d7.root': 129971L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_78_bb361df163a24b55c25e2956c4d2d2a2ad19a2edd06f44b5bdfc44f2.root': 209683L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_102_35ac2e85f9e1488d2ce7c267ae4f52215710187005f7ab85d6715973.root': 4458L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_72_2016f24ef82c4291766837961d4785204dd30cd00e53137b70ac2225.root': 196127L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_51_eafa722742f9495252a58360ac66d3e431d09bedd8c14e0b48ed2705.root': 130371L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_27_a02ccf181f610100a703f273508e19640a4ee83516e44efef082d04d.root': 76881L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_18_da2ce84567fd59a551c4d870823e3b0c534b958f33de456fdb74290c.root': 55312L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_75_ffcc9a7546f9a3bdcc1352b632ec19545aec6aab4a7239bf3c3cc3fe.root': 202633L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_38_8e7e83876337b2203576596bdfa1d45e1ee8642ef701dc1e2b9fe6d7.root': 97800L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_7_8587e70c090f4abfb817cd5b4a5c33410d8fcea6fef446406253040f.root': 216931L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_83_954dfeb75c785d6d9d6c7a49fbb85216edab9bf7ec2aad5a4fe172f5.root': 231235L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_111_cd561fab6c86f7c36a69b0ff1b33fbdd6b956fa74b6d86079176a6ad.root': 23752L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_92_07eaa8e408d28706e06bfbeae662dbcf7a55f9757b32af363ef24082.root': 267348L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_61_67a60b411d5739ac433d20f01b97deabcd583aeae74643512beb572a.root': 156368L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_6_455e5e32371ca796c875a1576fdd84533c2bea0055dbd3a728ff1e19.root': 186733L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_62_abbb337147c77d13aa583b6422a4fcde1ed55508870c4324a1c954bb.root': 159222L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_44_28f046a48def5d82720d5876b5d1a3816db01700c003f8b7d1e41b9f.root': 115236L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_15_e7d56a7bb749c668096901ca2856eef5a15b5c766de398c9fb57877e.root': 48671L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_117_3fc2f89cf24965953a461d0ed8039b76366e52cc6dee49d97f32b72a.root': 32097L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_54_9b3468496b99738ea7c37c75b954adf464f97537346d0a06b3aa68ce.root': 139536L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_86_114ec15ba37e2f8285ecd3eb83b90184b825d730bcb791b56d0760a8.root': 241097L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_91_aee3672c118a3520a7d0e7180422c862f5d11b984065be12701d3dcc.root': 263315L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_30_51b6160bba5fe01645c5ad961fbc95444d249eb29c972b858428e39b.root': 85377L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_105_7e9f2801f2b4d14eb38cba0867535494c426ad46f81c2b06f4f01ff2.root': 16771L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_40_bb912500a22249d4286b1bee27ed687eeb06084a042f422de2c8ebac.root': 106876L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_41_93c95ababa567338527b4bed8a95e326c0f888d18afde8ffa2ee77bb.root': 110269L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_33_f63c2736f1b8244c9302eced373db56fbec22b61f42153429e95d532.root': 87751L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_43_da5e7cb1b99a16780a29da4905ea02c7299002abf494a8b64d5697d7.root': 114137L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_80_d941abb78ea80fe8c55c9498b1fae4ae6c62fc3b2db0f436800e1566.root': 219799L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_115_135f58902d96487ba3e62830ed622a0c5cbb40efcc246b854ad7892b.root': 31320L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_94_91700604786c7ebe324e62b24bbdad5000927d8334b26eb23fd2e523.root': 271724L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_90_735fed2b87326b9d84eae30dd70df0487e970ac15e326062fb296e6a.root': 260350L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_55_a463ad22f7109cc008c3575a1d819c51dd4ca02fffd734974fbcd932.root': 140036L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_8_c8fd424accb4e1c48f607cfc878a39e225b9f913963a23bcbc69951d.root': 257305L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_52_880f53729bb39795a4b59bb38ee3a66569705ad3980b1a472784e6a6.root': 133508L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_121_7bcb9c99fe5c232d3bea23c1afd37c966c6704e62c12dd1e4f0025a3.root': 39778L}, 'ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8/tree_-v1_190523_195606_0000_1_f51220c89576b2e9d9110b48cc9632bdb568eb1d52922730022f5a88.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8/tree_-v1_190523_195606_0000_3_f7e4b65e48dd7b487b0303f9c46d31cee8938c666547b5b5b520c1cf.root': 22L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8/tree_-v1_190523_195606_0000_2_c7e8149cda04204e04da5ef82492b7e33932dcea3f32c856cff8962d.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8/tree_-v1_190523_195606_0000_4_1accb772e8a95cf219c2bda139b57610ce3d54748989769160d2dcd5.root': 32L}, 'QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_54_10aaff71f798b59c379420e588958314a970988390529ff02fc41cda.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_6_3fd3a6d559b7a7c02dde501637f31e6703c192f937a4383c1001ae68.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_35_2a8a47a9bc93e8e86c0535d8e284d0dc25e631464a2db064eda0d755.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_30_88cf4128a3bbd262543d95b3be2d1b7da43860425569599a50283f3d.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_39_8142dffd92e170e30ee28d4b4d6ca1363b8794f3734cf5fa835e41e8.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_23_651b92618f932cedde3fa5e267b0e565e778c3a62fa3d840ba7e927d.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_43_ca08fcd9f0f562119134604c2a4a47115b360c80c4ef00147baa0c74.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_15_e8cd0cd2a11c29a091e787bcd5030ecad0f5cfbdd2ddd84c02b3e84c.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_16_5b4af9c4c68056a2c370151180af36188f354d293dd67360a3f6d698.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_33_70822c9c796db889c6eb9881a57a23e55d47630a0c1ffff5fc2b884d.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_22_866e4f3475793d6614765f76ebbdc2420c8dd680a3dead10c9523a6b.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_42_97b10e7582df207d68ae93a00929215c01bfda5b281c1b737fdceb54.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_29_124a5f8c0953b7ca3fc67a0d96283af32faed0e64580868a45c3b366.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_21_3626909b3da9e0728f2746ad9c0e7ff7e1e7607b32f52c6918bf4197.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_51_d18692fec4039e41dafe17ff983c31161deea17668629dcae0c57996.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_17_5be07b7e057c472a57817c203c20d21ef670ca0b13a4ef4720489cc0.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_11_48deb95e6a76919ac6f5205d8e7dd1285b79eec6572f6f03df4d9e75.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_26_f59c83872fea4f1f0b4a2dcade5ee7deface7eec0560f7c93568d4d4.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_3_537b68051997da16e0eae28b21a7d43022092400a0ef0dd2b05e483a.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_52_9c5752d4de3b1bdb073847cbd9c712ad93d94affc6740a9b178072f0.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_34_e25d9fc074090a6b6e58dbc1d1bdf752b0baefb01d18d480fc91f861.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_32_5041771f8d1b8c5094efc2a2807b5fa83c014104df08e7dfbc074ec0.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_31_6221f763ff3d726b1f6c14da0a83442dacc15f8071186da49b252de4.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_7_c964a989205268a18bbcff46a1dc3ca0b5383f32d3c3dd3a47434d3e.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_4_858c42ed246119dd7d3676625d9b372c15d13db6b67df53ce7a5805a.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_37_fcdd951c73e44c0cebd08e52cd5a4481603e2e9292bcad74a9da5320.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_9_9a54e29ec6115f4a8e948ec6a319c5888a33d91250051e315ce5ab78.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_10_c65a5c8247462db8076a5973fc120c7d93833031539d51b78de9c3fc.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_44_da4c537ebf82715070a0a701b517391dee17d64e1cc0da01d1f5240e.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_40_c0d4f2c6accddbcbb3dd8a162b02175e9f7efd1fc8d41dc08f6ffee1.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_58_64351be9de667e1027abdd3948f8c784d93ff23019dec771db7117c2.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_36_697bcee493d7d7384ac3678b105737acfef0d97254a14d5d19a98ea2.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_2_40e3e6644932bd7350fe472e6d464189d34b2b117a9630f486eb9a9c.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_45_dbc3bf153ad8565e4dc9229a9a79df7c3c45bf560b4b906e8b4475a6.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_48_9a9d4d0ac0be1a8e51ff6a74cd4ffae4eff2c900e2dc2a028715d398.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_5_29cc00a99fd99091332003358a8e12276ed184fc1775ff3dcbc53680.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_1_2a770a9b36c3ac5113f8fa2f16dbafba5d23f642ebc19df783a3ab6a.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_38_f3d688e92ad8c07010734a99e243c403ffc1fed8c6113439ed0e4cf1.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_55_5ecf3abca8333038e911f43f527132ee685a214cab789d283fa0632a.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_18_978d1cd881116b04faed9e40cac9bac7eba5d3cec39f93291452f916.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_41_d64aaa6a2e16578a9f0e5731a6ae017917a66d05fbfd4c8aac47b3ba.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_56_17f6da5cee0b12e6da6e5054acf8e193ed388046759612b9b456f264.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_13_b4bf028b2c6d2da24ad6cc6fbcc121c3525b5ae07009196af8b30ac7.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_12_98c885a96d45fce1a36b0107e80216e6c6f4e3b63c49acf89a1fb9de.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_28_f33b94b24fa8801a84ebbb5236163ad1624c6102f4c095d7bb4823d9.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_24_14ed0c9749242262e1b7ac0365333d7867c64447f2d8b28a4e1b496b.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_27_d2ab40604fce9a7aea3e6181c2be8090188d279289dcab7553802dfd.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_49_8fe1f30771587a79ae1095a5d38851d3a24222d239a6028b16d2729a.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_57_7b5d38bd2bbac48cf25717cd416f3dbab782b93156cf1fffad06190b.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_20_95cfcfe3018024d1922cc341fb069e04470e432d21a8ef3f1604b8a9.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_8_04794e26c37d27e6886db54f87c9c4899f5367221e65d038fad43376.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_14_2d9b212a8fd8d766319830bd248d8a8446528f33be13c226bc3d6078.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_25_cfcfb28f2130dec6402293a8ea61157b39498be80e22c5237cfc6d59.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_50_76f5b7f40eec30d347747a8d002a7783f3e3240196d273079d355189.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_46_74ca8aab9a274d495b31d1aaddde646865ab16bcbcc064044d6555e3.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_47_9654a4a8b5c87df84e1cd1e5d68cdaca3ccefa7eb754f7bcef74b82b.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_19_6c9a1dfe7de633cacd67cb680f8f8f3533a8a8c3ddfd821f72f6bd2a.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_53_98222173431b8da3bebb92365640ff8b79cd42a20fd4490036d0c22a.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_59_754541388aca98d7115014994e8bd1fcd08ab0978edd733399932d79.root': 0L}, 'DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_14_dd11df44cf90084b6697ccd68d71ca21de3960d8abdf77ac7d2ed33e.root': 307615L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_9_eafb34dbb2bcd4feeb9cf8999df094b6423807afb7e82481c6ed6145.root': 1003795L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_13_454e579f9aed065a42f3edd0dfb6045d5baffe877bd91d164c2a3cdb.root': 246247L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_5_700ea58010687feecc7b8535e23ed79e7469be5dae661f878331dd31.root': 757518L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_4_ab1a636f64bd0f298d92edcce39a24f057950c5fe96984f4deb47fe7.root': 695803L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_18_c5ea1c1c579c510475ec774cd28845af46bca5c57f02ceeb394dee2e.root': 553216L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_1_92ddb9ce587e67e07f89bb049077c831d0b58fc27b82471156367fec.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_12_c33003da160968adbe89832c0a6880ee69cf5c5053feff4325d1adb8.root': 184890L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_7_266d29bfb8943c1eb852bccf4dad90a8266d67490c8123885604ce8a.root': 880524L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_11_3374755e92c46033ad094cb0053a2fe42bb7a2bfb6a1aebc30fe748d.root': 123469L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_17_87209b1f219472e518203370eba51cffec427262c5df9e7bdd93089a.root': 491555L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_8_c4a4c7aeecffb0c816b9207440f8a5eca35d5a63cf5850425e9907c5.root': 941665L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_6_e73ac19fa14d98a87c3d2a009b7e4abcd498cf6bb7386e1c659438f5.root': 819282L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_3_3a80acb1982cade1b5120682dc1496edbc21d07dac24065eb9dda705.root': 633970L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_10_79998f19432c670426df5096727b37eff6ce59e9684cfb59ab2fd2a5.root': 61794L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_16_b46553ccd70427cc7d3c687526563105d0844044050eb6195e32635f.root': 430002L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_15_85fa1c4e892f6a18ba5ce00bc7fc9ba7ae578de2ac93276b8df25359.root': 368921L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_2_51ba3ff8a59858923783cabf393243d19c0ce5cbde447f8e98c637fb.root': 572237L}, 'DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_200928_124814_0000_3_d873fa4938feba464ab5114137119fdc8ab9e831dbafb4bae7e56bfa.root': 235L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_200928_124849_0000_6_943de09321b87b4828e40057b96fcbfabb38a73da27876f53e22c845.root': 16564L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_200928_124849_0000_2_c312ab13faa8cc7a4bf809e8b0e87244b09a63380270a518e3a5f9ba.root': 3681L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_200928_124849_0000_4_3f1aac2601de08710c7d876243f018ef9cb3c377e1c5eb7bb0ae54f4.root': 10623L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_200928_124849_0000_9_82253ce67eec6e327844c19fa52f46f46a5647c5b77707a54ed330f3.root': 27393L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_200928_124814_0000_2_c79b6c282d3a44674b5bee48d7ff55196ea4f3ee271798561af76c08.root': 82L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_200928_124849_0000_1_85b31579027488497f18897709f94916cbe325be8a6a70791e22fb42.root': 3251L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_200928_124849_0000_7_5d10158e4e31519bb2740a824d30be91ad168fad5d0220972eb67fa7.root': 20292L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_200928_124849_0000_8_1f15d610d21b9974c2afb8c0052aeaf9cb0b23dc33c6581714f71c59.root': 24072L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_200928_124814_0000_1_0b727f93f1d17e9f56156e3246076fee97c212b8f7d4dcc637600083.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_200928_124849_0000_5_f45c5fb31aedcbb619c7e696fd0f1380a5535d61d5008a5b4d26be23.root': 14296L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_200928_124849_0000_3_27e7dd56d82b4c7873f503c4b19aece7acd02b14e7d9ac3fb453c5d6.root': 7116L}, 'ZJetsToNuNu_HT-600To800_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_5_76ed071403ecc7f84fe352ad31cbe0574c452ec897e88ad5fcd0e095.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_1_e47616a62e80bd19ef87089bd4fdbe0d3da40fe08c83386a09fb9cea.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_4_ebb39da605f0ff5c46e7b8816187efa350e4ea1786cadad748d190d5.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_2_c3310da000eca94cf6cdd8b23b6d0c54b7ca1323cf74d682c14cc40c.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_6_2e35356f1f6a49b3f56d3c6354c645e307ca4c3ac5dc05c8d622dcb1.root': 9L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_3_859df791734b881b5224f40d7e17c3db8c84b4e4a93e378fc3e3e2e2.root': 4L}, 'QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_5_c06ebe40669724a467c69efc64e3c7653f9085636050a9ac581fcb3c.root': 24L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194813_0000_2_098872408bd4e8566ff267a2d1be761b2821784429a879a1a26d5b62.root': 51L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_1_a9c3ad048f6d50c95755f34626da57274080d02fdab2d7a3b408c37a.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_6_9cbe97669edf95a85e504c6c4c199cfd56fe434d1dd92699fef46a08.root': 24L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_2_83708d1d697f2044d5d4f36cf9cb880f17b70ea1441fcaf93009b3d4.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194813_0000_1_85586474339eb89a78654d14ff8ba72a7b1a89f3999550a26ecfe992.root': 44L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_8_f1640796668213e6f817af3c7c0f9fb745db3850ba80f4615fc51892.root': 42L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_3_a96240be0e219c54fdd220bdd07d943cc2783e7c6e3e92b157f77fd9.root': 15L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_4_f20644e4fd0a1b17380920c66a7b5bf362a68c062786a3320aaa5b8e.root': 22L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_7_43ff34f506eef707e76356f2aa2e45c2a4618f0a5dab24aa58b53b2a.root': 34L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194813_0000_4_5797e8d4f60fbda2ed39c80d9424005f06bc87d844de807dbb195fd8.root': 65L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194813_0000_3_f36b3fb1209248069e4cc4da1c6141ab4d38198507d88c0dd8a04def.root': 62L}, 'ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph/tree_-v1_190523_213825_0000_1_7ffd8ce623a12a400294d64ed4ee938bd776f2d94a65462d086e18fb.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph/tree_-v1_190523_213825_0000_2_75981b5915b13a9aac69e3bb3509fd21366b3ded7b1aa61aa7c617a9.root': 4L}, 'ZJetsToNuNu_HT-400To600_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_8_b600e0537a6de7a76e8388fbe63ba6f4383bc9f3b928bd5c67b948f3.root': 11L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_5_8b2870f6e7dc2cddc73996a71365d2042ad30b44591dcd7ef509bf14.root': 9L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree_-v1_190523_213905_0000_1_a5434bac81a9b053443411496bc8066165d1a93a36d770f45fdd04b4.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_6_43bf66462bde076a9aa905b92d752ea94b5401d5409d4ae656a75037.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_3_517b5c3261e54b0fd11c819ddac32baae6876c98aa30ca09f9c7e95f.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_11_e644e71255f2cd08f254e6160d4f8729bd6149edcba9939c450fa704.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_10_4445a70a90a28c467e28e81829a1e655016f5473ceabcd6a5e7f3374.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_4_7d06d0f72497457d312cf842eec26fdebbae7c68f1a3698cda01ea30.root': 9L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_2_b3aebe6503ab575975a3b4f91342dba5e15232c6094bebaa926a2fa0.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_9_b85cfa283586a53f82563cde26354cd3d06160fb78b027d63e0f3605.root': 12L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_7_737832fe4c9bd4ea87501137cc41b237dc7f7f45ac5718c9ac677cc0.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_1_0f900dea914859f6467aede26df22b7187887ecd81730fa666c8932b.root': 2L}, 'ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_18_7ff84f69707a22088a878539698354a4481722713eb03fd2581f7540.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_17_31be3d99ddd22bf6416c910c28bbe6bc39f5f4a2b18e8b89eeaaa853.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_1_6608c88f155dd081d7b6cfd46bc0ea1df950d90e253a7c7984328e53.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_22_3d7441df50a6bb479288861076c2f2252336263e95b1e1e60d0fec02.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_9_0629cc676fc2f87bb383c4512e71027c0b3897f9bf1a31143a16f944.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_4_2eaf41d444be7fa09343ca60f83b70b7691d1ad5184bea653ca7811d.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_11_f7b78848d1d02675581fe0db7de72ba60a7299550907da62dc105232.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_27_c14849ebd1172d93be1bdcfa5db7780ff653a721e07fa0656536c227.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_2_a44c65a096c6da7d11944206b347b2de8a2bf808c4a723b980e01570.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_14_6dd879ff493544412adc5bec0881a248ba4effaff4194fe894b250e0.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_25_99593cb5defb425f704bcc649b98cc2cef3542d11b19fbc8a5f6efb8.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_7_1bc53ee5c7b06df5e9c01719c07b8e46c56f22556ed29830f6cab899.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_20_5edabf46beb8e6c5563911369b534f9d26cfd1a496c3a7a93648c613.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_3_1cefe548ef6766bfdc043627cd992a02d810877ba90c39d20e2aa205.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_12_93e662414c82e81894945b3247637ec9fec60f9bc7e74a7f54adf699.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_23_6b5f0ddef3ae4726ad0e226967622ab6c10657ae71910682230cacec.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_15_3ca107aa0936242afe96688cdf7c78d34e27c53eea12754ad19f43cb.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_5_49c2f6036a11b2e7b78578c165d3ecc350cbb87166a412c857808f19.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_16_2221b4794dea0ee1a14cfa4b6e771e7b1982a56a755515abb9e8f856.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_10_2437ed328a2392f2562ae087638d18457670ccb65da3103febca13e2.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_24_a80fad475cc70d30578a95037238f5242967d2c7f0a6688aaff1dd1d.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_26_ee11756ecdfc1220c9aec003494c43f4bdfb762847ff9960fdc59c6b.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_13_b5f16243126793e5321a41f41decb64dd22eb20400a0a820905d77b7.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_19_9a34fe21960b76f62ddfea4b28259db4e6c3255a5d2012714fa729ac.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_8_84b7d1f3b7e8c1a10fe4a910f319bd582e012cc0ad159d10e166f320.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_6_4c7b6ef2a7a9eba64c39148ee7e97ccd3e1dd0bf88c1194ccf14ead3.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_21_bb728eeff3aa41cab3c6f3cc1e70a0f2ac3f027d8aa3e18c4b67f0d2.root': 2L}, 'WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H80_190606_071404_0000_3_f6366fd1b9a371fd2b49401825aa9ef7e6ab469a16a2b0c21a43e494.root': 22L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H80_190606_071404_0000_5_5a9787b6603fdb776589d0a78e84f664c717baa76e70ac99fead5f75.root': 36L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_6_514b7d7676de5af8c32c662c39c525cbd88e5a43be19c352f58822ad.root': 99L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_3_d0e393afbd7f72931b20a9ad8c21e23c168b2acfcaaa1fd21d96927b.root': 71L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H80_190606_071404_0000_2_148bbbf3af94636f33fcbf1451afd3739679a876ed933683b377a302.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_5_be532c1c555ad615933fcd749096a6eae823649237ed1f9153434dc9.root': 91L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H80_190606_071404_0000_4_922ce1c72f25497e01c86f10b785c1d03d31f4e929d41cbde9a6d089.root': 30L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_4_036f2dd5382e999385c5944dac3614cf1245ffc1f8c4cc17e57b2aac.root': 85L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_7_2be8163c188bcfd00af6064a347cc55f323f90dc50d907b555aa1f70.root': 108L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_8_92d2b2a1e75aa3347bfc4edd1bae3808b3742d960126a4b633f6b521.root': 114L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_1_48c6848bdbe43fb32c1f2015233b95813ea60beb688d03d71236720b.root': 51L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_2_522e806587d3f1cb9ef0124b19f231ef08c748d5270844ca4fd15580.root': 59L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H80_190606_071404_0000_1_54c6e3b93fcf17d3b75d8241f75abb295199c6dc6932c860e0c21636.root': 0}, 'WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_2_f4543ceea4826470bd7c5ab254b65dc6fb6cca8d2a5a6619f677a201.root': 283L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_4_91f5a58b84be708a53818289b9bdeca27f1bac9b484c45dc2654e426.root': 370L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_16_20d9fc7ba412d53f5af2b28bec0ef17e3ae4d795a21c9e9066a299c9.root': 213L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_3_9d6ca49b6974d7030080c6732ef9553ad0d606ffb8218f04d4e8fae0.root': 596L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_5_2ffb4a6156e76808ca671591ad5a8776ca70de276dced0c2fd9f5ac0.root': 698L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_1_0661433d63311d67fa93ef58cbdb32d917e8b34ef6d37af7825c44cc.root': 243L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_15_3f4fd668df0c46cf8366c13929b1ec05a6413df8c2d5a6fabba101ab.root': 175L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_1_24e03ef54bc3ee626073b5172d33d9c0192114711f4d79c549b1069c.root': 585L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_6_40583eb75d74c43707dfa860ad2d012abfb0a43dd9c8703b37c6470c.root': 719L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_6_18d3d08776bb23ae32ec34cf3c12c96e677c113c9a5e3965d82763c3.root': 463L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_3_06f748a420834f05e3deba19caa1d91508e640e77fa56a1b883d1396.root': 338L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_4_729c617a1ae56fe6e8f3e4ff2e2c5c58a977bdd147eddf671dd1c4b1.root': 648L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_10_1eaef293964e12f978204d8a7a7ed03f2be7bb0becacdd30b298da2c.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_7_74a09cdab1f1b8ad0d18127b04499ccd11b842df3b02592102d72e85.root': 518L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_13_35aaf1f88ed83a0799fb08e0d4e42c16eafdf84808146a8e6b6e16c0.root': 93L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_2_27804605938813f93aa16e903dc494e5cc2d31214cb78660f6239ea8.root': 594L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_8_e3b9f1d607aadbdd6655211897ea9606eb40a531d70e557aa413d425.root': 553L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_5_d216814a1080981644e1d1c393c81fc5bac8af337b83890403c875cc.root': 425L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_12_0432d73c8960d1eb142aaf970bd6a4173ea27b72fc800ba0f208c1e0.root': 66L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_9_8fbebf48c3c9c06507e6e57a1d45f6d60c60e627acf3c6f57ec53e39.root': 575L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_14_95a58a93ba2462cf966d8db5ae679c610ab6e8b71a9b1aae9405d5ad.root': 137L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_17_ebb258887dbc90990e10e8738b44d68c6f8158c15c91e32fa93cc1a5.root': 243L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_11_d048e7d0e779b4f9bad0f75315288ac5995d57bf0b1bc9436c38f621.root': 43L}, 'ZJetsToNuNu_HT-800To1200_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-800To1200_13TeV-madgraph/tree_-v1_190523_214109_0000_2_bfc00671d3008fa55d6c581eaf6d70cd6f974565b69c067f9826de75.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-800To1200_13TeV-madgraph/tree_-v1_190523_214109_0000_4_a82f827947187dc26dffbc5043ea11eea67ea50c2ee34b03852bb9d8.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-800To1200_13TeV-madgraph/tree_-v1_190523_214109_0000_1_4fb88ccc6b5edbfe8a6dd2326f159b45601c52e16f196d2bbdb10841.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-800To1200_13TeV-madgraph/tree_-v1_190523_214109_0000_3_0c16a462d14ff76281a76b6b265b9a7ebfa45bb9a6995e923706d592.root': 7L}, 'DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210225_0000_1_b54bb92c17e058aefc2878957ab947dd0c32ddf0d8929ff5e4884fe0.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210225_0000_2_c0196d16f5d22cbdc43e85c27e5e3be89f7aa8ac320b79dda6ca82fa.root': 207284L}, 'ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_214150_0000_5_2655e47e7b031064111944ddef9806b37080df49bdd60f561950c6c7.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_214150_0000_4_e91f513377fb7abf9cf84eb0339ed468c8a5a89b75d54efab4b75647.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_214150_0000_1_f3b7ace6f6ab80552c75a5722141f61abbc33e3fb9a7c9829029b3b5.root': 0}, 'QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_6_b5207de1a09b20e7fbdda068b580d0a3e3bde3c1ae441a62e908128c.root': 22L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_3_7e44207c763263ee65d342bea8cbb9c5e43dba495794d783daece5a5.root': 50L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_12_3c3648c619a65b6cd4a80b5bda7e01ac9880160c698e5fab09b9266f.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_8_5f9c12e80f2e4a8a334f8d5f3b5ce03b9b8b8af9059d8c14f2e0b472.root': 39L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_1_f930d83c0e65c6c4b8f76c2b1f0c8da9123e8f1910c93e4d72caf772.root': 48L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_2_2ca4e1ad91d003cf68655ba3277b63c6cfacda81b9370e4185d40153.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_7_be748ce6611c00efb080c806d6fefe682f507c85f13f5a2233568937.root': 28L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_4_fa96cc70de4793dde3fe4600fa9c05d4d02bebbc6d8ea62fce9a2c81.root': 11L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_3_425eb6e21735bd76a7a6d4753953043210416cf30d2bb8add77a0239.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_11_021f24fa5983a26fc97a59483dd09cdc411ef5bdb6567cf9aaae0e64.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_4_3f959fc47d79897a6fac0d72e1a7fbd9fc744c1d0bd21e05170a3c1b.root': 54L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_5_871428d5e716296c6c3f2e587758698bdb2add3a215b288d1a5405e9.root': 55L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_10_3e319cb9bf4441de6f94504a28cf8244bc22f3e16250e68b5b50307f.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_9_ac89e2ad505192153e035b269c93b4cdf6f2d1cc02ca20f5919eaeec.root': 42L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_2_a3dd8c98ebf9c998f6b62f093ddcb9ec0a03eb4ec8d2d87bf656d424.root': 50L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_5_b8b019ddea47e3ba90faa885ab0dd9cc32e909abdd1e971497bcf02e.root': 20L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_6_3c545dba73a359bd3733cd01de01641e6e501a3bc1490d8e53af8c97.root': 57L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_1_2888a55492b095cc2fe1005a3c3de4d055b208e390b4dea860028536.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_7_49eda309a8a3b3d4d0d7b5adaca262dc3427a5ce31ade42179c6b1e6.root': 59L}, 'QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_5_f7ad6e98373c778e602e543601a4a61d640a50493df0d6b1e777a831.root': 11L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_7_ab7ea7a8520aff6470f8ca25411988a61568231ee91a9b9e966d756d.root': 22L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_3_f22465168e6d104a516281bd0833e7f05484cc8431a06091a99547e0.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194924_0000_1_7d5263175cd3a9edb96d9ac41993aa051d54aa02f034285065db2aa5.root': 28L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_2_c64e7d98d971369f9bfcaaa7f06212a425eb175ae25edb295dbfd809.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194924_0000_2_021d46e5341b643a462a88d292598530b56805cd90fc9bcf012900e3.root': 34L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194924_0000_3_9a88ef677c1dad8cbf12debbf46dae0fa6e896b43a2f10144e356105.root': 43L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_6_144faa829ebd2220d0d017776939683be1b7fd1fc42bf24e23f505de.root': 20L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_8_d368cf36d997ac9470acb29d0732863dd6c294d5ac03bbeecaae0cc6.root': 22L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_1_9c70af842a14291b1a340f8e4cb9bed9628b9d8b3ed3ec5590bed198.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_4_740766ec7030b9582fb3eff673cdf2df26236e5823df7cbb6b05afa7.root': 5L}, 'ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_28_466465dca502ce10f260b8e9e00834a244fe361b464eb7063892567b.root': 248L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_41_5408ed70d6bc73fedfe5edd6a679f078f4385fd44d7788f08a072dc3.root': 435L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_30_0db26f4f138938d4889477e09d8cf112551078ea7147db2b08cf0f39.root': 288L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_23_8a84e27ea335c543063e9be88dfe68495831e230019ec62791368d3c.root': 158L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_20_abebb60b2141c6a8eac7d5958c1008772e61f6fd098a4c9f704e8528.root': 119L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_11_e0a30c2ad0bda8aabc2a18f50434ce513047745f345bc273a6c50bf7.root': 9L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_14_80ffa96e4b6e6630f964348748fc94961b5283a8df420948546b3b06.root': 25L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_12_8ee2286404a0edfbb1c2efd6eae6a469f7bc618d28ecf996d74f40c4.root': 19L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_1_1b4afbc353e2645158d61cc56020b30bb151e6c9fac46897164d6272.root': 114L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_7_08bbb82e6d806a198beeca875c521e5809738f2fc5a18efb962d129d.root': 551L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_22_c6c2d20afccebc5856a6db8132518e58abcb480a2d7165f20f78f9ab.root': 150L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_21_253bc2afa4786b14f2dc6a37fec89187e03d12bb1340035f385d4632.root': 136L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_24_afe097fbdb930b73a05a90fada1733cef8d42fca61e5fa346d357c7a.root': 168L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_10_382bba6fe507ddb7dbcb46769802058fc3c32c25991ef39a05ee1b26.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_40_80ab45a38169ba78911b54dfb3e2dbe5e7584a20756bcca11f26267c.root': 428L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_15_c26273252a4ab9ecf25b59b8a573d22b1983f657d5256dc6628763d6.root': 43L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_4_8b429679dc0fbdf7705ffe047d9bfac200b306358e4bec31dc8637f7.root': 506L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_43_4f36190bd44955ea8df29eec0f5fe6230094b31f99aea887fb4be358.root': 469L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_27_66cddaf270b017026744cb967f74fc6a7df85596fe589c12c6373444.root': 221L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_34_9a90993d35a48326e445b4ae1c4b1ea5520b9128bf0d1f9dcfe725fd.root': 338L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_35_f0daa86c29e61548f7c4a889827a7618da312917f1ef3d949a3ef358.root': 356L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_9_eb1a789e0a8513ffa35e57e8688ee1b0e7797588f01ec7924f077071.root': 579L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_8_f2dcc70b8507f165d4361d9b045a377e8ea188639b343514b2b8ba52.root': 567L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_13_0884c6766ea671ecb95ea75565fcfbffdd4b3125c47a4830c4e0c6ef.root': 19L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_18_df691b59cca7b2bb9e7f7052377ef07f934b20198e1f81d10a032f7a.root': 86L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_19_8781df695f4be4953d418798b7b51a0acd0c7c2e62bc28a8dd9ae467.root': 99L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_3_d5c3c4a6e12fb3cd1862807c40351bd6f6affcac03419f12623c65f4.root': 428L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_44_0028d3d1a1f59c6c9b1b48f5c1b8d3bbcc42fe7574e5452d9754b278.root': 490L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_2_010aec19d36bd1072e2e32f4332fb9ece0cb91cd4aa43187e6c46685.root': 283L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_29_281334fe76ce6746113b93e7d4133ec11d3da9fc948620c59e9362cd.root': 268L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_38_464e12f3453f0961115633538e373cd97e1748b60efe828b1b8a0e64.root': 399L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_26_33d8eb4da86da2662649d24e6546b56f7e61ed308d65a1f94ef4ccd0.root': 205L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_17_c5d8dca961c5a5d6774b94c33187a810d44384b7e15489ec95f20bac.root': 68L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_32_d654a26e5e94744f9be18aa986b96e93fe2ee9e8dadcfd51d7b360b7.root': 309L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_37_24aa9e6962eb461c3925b749b2e3ef087e73529bef5a18a7022ac5e3.root': 382L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_5_98dda8a1c0e503929bc95ca0c8b2a2e8451669d633d5ec638c3858bb.root': 516L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_6_12bddc00e2fa293fb5637ca2155a78d0b9cdd13a8e35ca0782d6116a.root': 534L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_16_bd0821bca3e2d8e7ed0ba7b80e1126d4bc626aba13dc814772772c4a.root': 55L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_42_e11e4ac95dd75175dc2a626f32950dd0a6f67197e7597ccde21af37c.root': 451L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_39_d9a691f303fe56fe9955c2ea76a685333eb383e4baab1992e7b961fb.root': 410L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_25_f23dc736084f1ec20dde022ef92666ec5c07d74ccf1ab0ddfb44ca4b.root': 192L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_33_b0083338db1595347f0ce3d4d3de874d6737a93a19d02e5082342bfd.root': 328L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_36_a83895999634a148cd70707c38c2fb7c3661e251ce8559d1518924f5.root': 369L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_31_81baeb037151c7aad75a2fdcebfa0423da8182b3a02626d44db9583c.root': 296L}, 'DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210545_0000_3_b253e9339b57e45de862bd4a2dcc2c335a244df6d9c1f3ac3cd68686.root': 201835L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210545_0000_1_0beca7cc27b53669db27986b08ed2fb0970456ebcce0d369c329f469.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210505_0000_5_f5b191dfeccd98b09f48b4de02d557ac1a804c62f06a87b6364e0e15.root': 695780L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210505_0000_2_e67ef328daf49dbeec8a464ed5aed3bd0b978b8646469ff1171199fd.root': 478588L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210505_0000_1_f3c749cbd9d90fa5e684891cb0fb82128ecb316b9027ce1f3f3ab9c5.root': 366513L}, 'QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_37_fb1caa3b003e5bd16e03b43603f5809d1ed1f68e9d863dfb4fb887f1.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_12_b7bea85fe3deec3c1534aeda148b009104a71e3b27b51fbb8cbc57a2.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_35_501a1b113c801ce826dcbfb4c291cb47074199e7e147b890baab860a.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_4_eecf06d7e104a7480eb23185bfa7643dbe70c149e5a2d6c8eec8475d.root': 18L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_18_f9eaa81ad7e3900fc76bdd14db0ea392fea033e5fe2a5e0aa0cb869d.root': 15L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_5_cfe3064251f071e3149ae8736998a398079272213efb52f4d63124ea.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_23_cef3118c1d0489064d2ce3efb0d8b8ec8e0d6a8b1971e3f14708987c.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_11_1e0fd6a9e6087d0e273592b7d0299a37e986196e0db4288b506424f2.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_15_9e2d6fc76fbc8e4c9d65c52d76128bd00b4887c70a42f609a53efde1.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_5_ad3847b1d54be3a88632fc71ab08da17949a4f5c85e091c16014fb93.root': 19L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_2_5c106ac8811c74dd4917db348adb4d092d15770c40122c78c82bb198.root': 17L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_10_9fe6c025a4da51c4b7d435e6c47276eff67855f7204fc274ffcfc83d.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_4_abf17321a1add79b866514320cedc3ebf47f8d7c21f65c6a8c6569e6.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_14_57b6c923b646a233943d35bd818a9eafd0aaa8c49a78c651cfc74a63.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_27_c30e40b7ced7df6dc650656a25b5b4284a0b92b3d43254241230e697.root': 11L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_3_0a4fd3a42d48f6e95afa7c0818cf69aa907f475d959bea04705bc28c.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_17_d113a167a1f7f526d75efa2a756463fcc1833cac7b8a02157da761ac.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_7_b58793dd5f6f79eb2876a79edb883a6152d334a455c3023a2240ac46.root': 20L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_28_a0a5677232ea96aabe77233eca243a7adc7fc0797d0a88f9f07f2cd6.root': 11L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_15_20423f83dfe6f46bbe07dea71cc15d31e105c79e8f9d331da816a090.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_25_a613d0488e00bbe2a04d84e0249a41a0e39ab778ca9f8482a955c3bd.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_6_c0a9f23fdcb577f587831a0d7ea9faf2d19156a95b77837feee32963.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_1_005aa1ab4aa37b8d627a4b3c6784d442c2e51ca6a50f339414f91816.root': 16L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_21_ce691c7a62533f34ea18a02a131c41a9b6f2feb23a4ddb24401d1adb.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_9_c4aaa240e4bf07ec1e76cef9434087491153a25431d2509cede69876.root': 21L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_24_f7afa4f7a824ec7e44c99acb9c00dbca027ec72ccab321519415b70c.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_6_1b4b91016bf77ba4f73a4e07098cbbf55cb4b01cd38fa2c0f7640daa.root': 20L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_2_cb481e4a57e01dc3ee6405563ad7251e32a71f2723005b48f88f93b0.root': 11L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_38_c8a4c19313334881dff4b603be9372701b818b56f944bbbde6507263.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_34_f6f6213475706c67d1a4ab973589822b4af95900ab1edae8ce72cafa.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_9_ee3bdc02ea5e3e05834fcea3091b256ad16471494a6dee1790e5ed63.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_26_fbc28e167618b290cb05413234352c90806bc2f6846a4ba523c73e64.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_19_6dc9d58f008b1972c07b7b7ca896d48c2e55bb8a45cdc49e341cf042.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_10_3d8bee55eb6219d9b5cb4a62e0eee0776316abd5fc83bf794f27e5e8.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_8_6c5352e94564f312ffdb9dee05490c6c2427fd6d91ce701cf38439de.root': 20L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_30_033a5c48613c940e91087cf17f74c4eb38937db0ef8232fd539a1605.root': 11L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_32_7b5c075225d29468e47fb83f43d4143d96eb18642b0ae20177fb2865.root': 12L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_14_6524c76f9140205cd23d92134e72c874451b82666b67b47072e333ea.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_13_f887dbc840a042998d4421d15581b19921d6c88661087e3a918a67fa.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_33_1f11dedb840f8a82a8b0ad58efdc1752ccec8657aa640152330f4df9.root': 12L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_3_02d1378614741099a12f03bb5fc8d695ff631b04726e16c7144fd10e.root': 18L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_13_1016fd887929a505f6be2e703f545c2ebf63893bc62c7b86afcca897.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_16_25a2da486a793173fa5ec334f73fd3b52a21f7da519d7b5ce56fb683.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_16_7f32bf1dc12a21ae70c715c052f4f72ce5b1af8a3ac0a412abc1447a.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_22_2130315709e215295a7c52048086bafab590abd28ba42aeb4908725a.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_1_7341fd77d20e3003580d0268682ff0689fb3cdcf6d8aa948f601861b.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_12_b7131072747208e39eefb09a41575158ffb3f2bdb8a3a6c122a1a2ab.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_20_40b673cde63aa599398b06135ed99bf0ed5deb2fade2c10b4faa5674.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_7_2940ce54852b26e0c1b4697a8178187814439d2b5e45316e2e034840.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_18_285e4e573017e9af3490bf6332df9329b2f110d299de799c3d1cd9bc.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_11_e63803d5ac01b626b94cc4f6c5cef4a48f51eb198b26886c798dd3a2.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_17_3069ef8152e3c4cf048821bce7aa2a73a8a220915df74ce734e468b9.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_31_f79a5e0309b984df6dbafe19a59e1f44bba508d96571d7fcb8942902.root': 12L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_36_e39d3c842d16fa01773402d478c51798ce357a4e45641a56379cfe82.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_8_bc3701a89bf6a0e9abb1adb191fb5d56f9caabe7d6834fc7004b4714.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_29_ac4afd73845660e2eda498a0b68855abaceaf1bbe5a535965b656046.root': 11L}, 'ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_6_35948ce4ee37223f6c254c194636026da4dd3979013d4e0972021d4e.root': 618536L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_12_72742f3b7fd9219a9ff682461144e6deb920e10f243cc329fde5d9b9.root': 50163L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_7_75dbc85c0a7f7067326ee44618276d0b4ff0936e18694c13f416c489.root': 643336L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_9_4756c34a8ae048783dbec1e96e2f6569f24a1f19030a0dde80bc4ca9.root': 693251L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_27_01589c2fb37a1299ec1168aa6f11c6fbda69185a20edbabc79566f6c.root': 396903L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_5_66d6c91eec4b1700d509914c48055ca9e5190f0c34047cb3b8ee8fdf.root': 593806L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_21_154e1efdb1f68a7f1d77bf093be4f690c61df6279ecad0aa5a5b4a99.root': 272641L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_4_ce4178f5fc301c0d54b3abe6105467905ab912fa88e3344c500996b4.root': 569031L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_10_7be62dbd6286aeddfb81828bb50c3ab544d47276face2d272d0fd4fd.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_20_78dac79a963950442c9bf8b5830d36c63b81bbb7b97620c0eee881bc.root': 248144L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_24_baf6199884ec407d4289aa7ad037b15edff628284bee3f3663839658.root': 322732L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_23_39588e11c80be24097250c5c27b121af5c3c796b144157d4399a49ec.root': 297648L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_2_5184354cb6108ee07955aa26d97c0b98a43fa57255c1b6d8d5e7dd06.root': 471375L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_11_38a53511302f3364d3085d6ec6c4fc75d61eb2ad162d0dc67bdfa9ed.root': 25086L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_8_b2c59cf4c347d93c15c48a0749fc6087721eb754af159b0244810f50.root': 668356L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_25_097e79885fb433e14127a0d3bc1f102ccde0ffd3dd65c8e9c30fef3e.root': 347321L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_1_4a8f15a5d0b22963463a6607414d414c154289c1b33182c39b62ff8f.root': 223469L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_18_5ab0960d6eb3388d5219c4efafc7f103403850e30051814a519ca601.root': 173895L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_19_fe1750d2d1a11eca83e252dcbd5f0e9462fda307b16a6e7802b5598c.root': 198700L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_3_68f1008a0ef6fdd1705d1fd2db192509fad4fd4330face2c229d009f.root': 544335L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_26_01e512e66ffc95dfd12f3fc1dcf717883aeee21528d0833e91c421a5.root': 371865L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_30_6dfdcf44a2fff415f2e32926d7b8dd7be7b1e3d75b95ef2a08dc7bc6.root': 496180L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_29_2806e61b6cf7a9ee5c5827069965bbebfd40da7b7e7038824cbf4882.root': 446575L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_13_586194fc9c835f55a8b57815f949fcecbbf9f9763ac48d2ecbcd497f.root': 74739L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_17_6db5c9d6f8351545a9851543c1146b73b61f28ee4630db9b4d533764.root': 148880L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_31_e7a107d638fe6e58354084526da40a24ebe52ca1a5e8ec525474f365.root': 520865L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_28_ec0256c3b3c0a11bf527147bd23b12b5d4f9ff7b2e5e4d012c641446.root': 421695L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_16_e7bd18fd7344160ee92394a39306eb466dbe5072a8268bc59f1ed7b8.root': 123904L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_14_bf19fa4272e2f0fbf65542e2b727431c85316e0ac50a1650591be9ed.root': 99224L}, 'QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_19_e05eb46a6b04472f8acadb7242da1c9832cc5f5d46f21b79ca8f0a37.root': 21L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_14_32ce22eb3c7e9a6c3309bfcaa764b1fba08d587fca8f2cb6c9e44ed1.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_13_42d064e600a11663836a314ad7d39258b3b0c381f26ef068d556ab8f.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_3_bf89fe89d1ea21a18bf067da61a310558a076f43bad3ee568f7fd2fd.root': 54L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_9_724a64470569f242267a848db3ce450fbae6e4592994ac91bcc0bf47.root': 72L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_11_788a00101ead1e2b6eac13b2ae59cfa639c991ef8ccea5c9a54a4a66.root': 45L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_7_8153865d0412e7e6f0867ed0524137690864b3be693b327e9dc3e89f.root': 68L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_5_a0d4a628544c3013fb3ac6696ef6da01cce689d85acacce16f087761.root': 31L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_2_809a05de77b68ada965ca86967595e167a4b511d222c438ac508f725.root': 53L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_22_619e374419cc22ccb63e97d09e4a545a612d78c12a2b7a41d5b4d1db.root': 27L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_7_fb7bd803ccabb62a97aace0066bfda8e0b2aa1dd908bbfb6e35acfdc.root': 33L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_14_8bf45bbad7e6ea6d223af0a934d134ce02be270cd0368bdbea5cf80a.root': 52L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_6_8f37b9ee98509b29590e767448342828a0b11d2e0b96ee05d54531e1.root': 31L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_17_a1a0d237c41cfc369cc944c584b34a43459d52746896bffa950de887.root': 17L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_4_bd4e2de673047ac058504ae5cfa8a59701eb05d2353ea4cb1b441cfc.root': 57L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_2_34a664691eb4665376a74258a0bb2a46c6572970c7c5aa54d3dc0abc.root': 29L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_8_6d522c20be2845799c751bb83e275328423f9bfd42cbc9188a76d9ab.root': 36L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_21_122508a6c4ecaf2ec559beeb1df94b0b39404bba868cc18e671e3188.root': 26L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_6_1a912b49a527d02c6c849a52e536176e38a626b412ea82ac661e1241.root': 65L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_5_63600ca1210f5e668efddfec111b422a43db2a2cc895aa35cafda9c8.root': 61L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_15_88e6c3c98c3f5a8847e830a803169e54c08c4904dc39a3458ad03ed8.root': 12L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_4_737472e64d7734f886878cbb548bc46f168477eb10116ecfd87b9435.root': 30L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_16_853d9132146eade84956ff941eba0c51b1ab6ac6d71d20e83c0e6e8a.root': 15L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_18_054343c09315130bc55f009b461c8193dea0cbf1cfa42121bd9b1e0c.root': 17L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_11_860e75e4251ecf0dacddc419f4ab7e6703679f9519d1b1e8d1a06617.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_1_327a0f32a598d38b2100d210b79ec391026368f183ae19dad4eede3b.root': 24L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_23_8387dba763d06593e0440ec7596077b67d58c83f64c53681c8150e1a.root': 28L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_13_a8fe6e53ccebde99f43115ae3d150837cb030096874fadded1e786a9.root': 51L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_20_25b805a75ebb47812f608b196ce0d5f669c9feb6165db5b64044885e.root': 24L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_9_f23f8dc4a350d427368bd3d715e1b2206de005c8dc8bab2cac1ebfcb.root': 41L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_12_1002487dfec2b57232ab8da70473c14998770106df927ab66715f978.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_10_78ba4c3b9ab3c0ac403d7d1badc51819af449ce0ddf65c624c13d808.root': 43L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_8_b77d6035ce5739ff8f505918c0bd50d93a4f32ed7fda2259ee6f348d.root': 70L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_12_ebbd8b9e206755b3ddc3afe28bd00288df1c9c1b5a4f0bcf3147f9b5.root': 48L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_24_43504b72b7fa87683a733a1d98a3a4a50c951866e00af009e6113fd4.root': 29L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_25_c4368badc4daf5713b40c2433ded24fa0c34714e7d0c4bf1baa52991.root': 29L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_1_ccf0b7cc494793cdb030f399670de5819891d62b53e2128fc7c11026.root': 53L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_10_413c3bbe11a26dfa11cbb1c69bdd0eac475cf52eb0444dbf323ed80e.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_3_ab918d33558c4517cb192f94044ad56ec3f84ad3148d2d57917775a9.root': 29L}, 'ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_3_6d7756240da785cd73162ef8d44fa4d4732d631d58b903f6a7bb56ea.root': 6994L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_4_e5f2437c5fca3cc793943491d294628e757d191b97a50f2ef1a4d90d.root': 7741L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_7_8a82f15c79fc40d4434f001b278c52a3f61e26af753010aea05bec85.root': 16344L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_8_312f90fed942188af163aad143709da50e6299b471b2976bf7cb190c.root': 17718L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_1_014220020e362bd0ff4187731b1e98affdba25824ac4b0aa4b781b4c.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_2_8e605f2d7931c86c29aa00e6ef7c3a1ab22ee25ccaabeea633350183.root': 3198L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_5_da32d1cddf3c421ad9b288181c8ef1280b638d61086a5ebc5869b87b.root': 10775L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_6_56f7cd1ca949aeaa3f6b78a2065c5c7275779ce681121fb5af9bfb6d.root': 13651L}, 'WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212113_0000_5_9cb10619c0a963534709d75f0c28557b7d6d528557b526d8b05a76de.root': 17L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212032_0000_1_65b849db80ee209901b9c9cf01d21216cb61e448154e4913260d7ad3.root': 163L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212113_0000_7_edc72d7728a38cc9de938cef84f8aa1b787823072673a62baf23ef5a.root': 130L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212113_0000_1_9a4de8edd97ebfad89b62b6deeb9243788e664a3fa8176ff8a93eff5.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212113_0000_6_3e8ed993d75402295b73130d213fd49e9fd8d1a4d0c367223cc25b67.root': 66L}, 'WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212356_0000_1_90ffb0f57386e4b096febf370f8cc916a94182817d2c7c816bd4bf2e.root': 161L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212436_0000_3_cd1a96d67cbe5ad6704c4fa869162dfe0a96312fc56a9c7cd94f55a5.root': 95L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212436_0000_4_84ce3a5d63cc8ed1ee5c9f790c86ab0d36f4f39343869a19d0419805.root': 110L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212436_0000_1_0e9e5da246edeaea8761e0a15c86c9d1c682e1a4bc958ccddb940506.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212436_0000_2_e01d71ff60c8fcec959997d7230aa9894aea7bbf45e548612e0296ce.root': 59L}, 'ZJetsToNuNu_HT-1200To2500_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-1200To2500_13TeV-madgraph/tree__ext1-v1_190523_213617_0000_1_0b38f6dae265d36ab081e46754c61808b373e2f0a03d16f0455c28a3.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-1200To2500_13TeV-madgraph/tree_-v1_190523_213536_0000_1_63f63ad0bb269bd628c24ae47f5242d131c40d47e323bfe1190ec4b3.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-1200To2500_13TeV-madgraph/tree_-v1_190523_213536_0000_2_779962a3fb891837d8969fea9baa9c1051c7c8ec0b0df1fa16e166fd.root': 6L}, 'ZJetsToNuNu_HT-100To200_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_12_26015ef8aff0c32d6e2caea0d5df6fc7443b4956faa6847695ebdb7b.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_1_5987421b9c3faa548d00e069200bd8023fa5f09ddc0cdb41cbc60182.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree_-v1_190523_213408_0000_4_cab4c0b3a6abe2cde677044cbcce5d566845bcf82226e7bb685b445c.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree_-v1_190523_213408_0000_1_804b8a8689af098c1d2210c54c6c047a3679f5a6f4f4295fb5261b7c.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_4_f2f4b8f217a34df394f6b6dde9227db16bc6076f811028bdd2f9573e.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_6_f95bd5cd9abcb884356c32ea54cc926cc92c1b828956cf917981c4c2.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_10_73f09f51eb6bca90c6a87c17c4c88181d301f4a8400f41dad7434bfe.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree_-v1_190523_213408_0000_5_0d7c6abe3754b71b073a4b72bd180ec22095e5b225347878b080f99e.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_5_2c8cc4c5243102e6ca7acbe27e433f4acdb0876b9924de7bba13e91a.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree_-v1_190523_213408_0000_3_7d5cd1c42c822fa2c11fe4251d6e286ba5f52ae886640a0a32d74e85.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_8_3d19006ad3ee1247965a790beab12a41cc41a3f03feb7921cfb9d8a8.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_2_0bf68f3cbd730c14167a3346759382cd1106f8d1f4da01d2f1167b2c.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree_-v1_190523_213408_0000_2_44b186babdb12597211c507469b8d8ebca55ce1560084fa89a17c0d2.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_9_8c143baf32d16ef41da309a644228c24fb8a862c07d1e8fa384230d9.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_11_3c054fb443778508a03be877b95d3fe6adf5ac68422fdaa2c3ad4983.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_7_6d3e8bad8bc294a7ccb31afe8d0fe4ef64ea05ce7f6790eb054e4021.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_3_99726b62febf45c53ef007f44c2c761841bbd935e482019aabaed45f.root': 0L}, 'ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_10_31b0442013d874ef417066d82f0cce82bcde99bdde15a9a1ad4cc4c2.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_3_b253a0a8f4700151a3493333e789fea381eba1b4b337724465a59649.root': 178743L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_9_2945929d81b1cf11ff4175882415e850e98137e8855807c67aebec48.root': 314479L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_15_09a6f825f8202d27f78692080dfd017f16f767e2aebaddd53f0ceba6.root': 113807L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_5_90c2c4d2f5a4a6bb400b55bfbb6f2959c3a5db935b0a5eef47737937.root': 224034L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_6_86b42d9613f70d73a9c15e4d182fd7cab49210f2e14e9b98bbe50b61.root': 246620L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_7_b8ab7e9997962301f9151250c2e2d9f17724ae50f10b02c00ce02eb0.root': 269215L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_12_3fbf475d83db08f836f405b52f319ecb81b4b2169a418a21d9dcecee.root': 45421L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_13_1dadcac7c0d7a47d39f8885b83d504b1d4da69af8bceca765f8fe8f1.root': 68219L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_14_44087b48de6928ce66610b1b22ee65351fa2e092595c6ac8af34a495.root': 90958L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_1_e4cc7a03f799620872ab87b0608a4606c740f777c4ef8ce2fd367699.root': 133610L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_2_edfedbf2edee77531fbb74eee8117660ffd9bbf1b362005cd1cea2ff.root': 156219L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_4_a537ab7193d122c20ea938e2b8bcfdeb13de0edf8414c1c772bdbec7.root': 201496L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_8_bd5a4e5b1e9307116a4e8e80c6ddff7c6182340ccdb4b7946a9c32ad.root': 291887L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_11_5adec9bbd4785442dcf8950e27658e218e40e0a5852e62296b2ead0e.root': 22862L}, 'ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio11_200928_125250_0000_3_e4e23c42838adae6a5db89e81b416a3df7d8bf00ee14a5659f78f5a8.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio11_200928_125250_0000_6_2edb230049c5b4fe6d8134dcf39142ce4ea54efa88bbc4fd054de887.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio11_200928_125250_0000_4_a48d53bff95ce2e4c7f6ec7fc546f9cf539e8083c510a8d0dc0f331a.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio11_200928_125250_0000_2_111464fec6368a4f9d8f9159b63e54bd385c4b88bb1d6866faa850e3.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio11_200928_125250_0000_5_26ac9f7ef922941ffc65459f16b605abc1f31eb0eb53d55aa472e105.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio11_200928_125250_0000_1_36352a57b0d1ea29867ebc12404170dc0211592dccea740436e2af1e.root': 0}, 'ZJetsToNuNu_HT-200To400_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_15_fe0e99f5a5d324192ae3be67537f088130ef4bb2c0ec40bc5ec7a2a8.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_13_2004e9c540383402669faa23dad493225fd732acc1286ab2aaf207b6.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_3_a564bcac5b4014faabcb47a850993f6df085d78eb7649f0599d73132.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_2_1fb9a1359d634d35031542adee5657e6fe5753d875870f3a6e9031c0.root': 9L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_14_10b8b87976961ae60ce04a4bba4021bc3722a556a1f1fb48ae5e27e7.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_6_4e89e06c49e1f88e74327eb4f3df9a9574b4f8f2fe97ba23481da265.root': 12L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_7_eb0defe37e1c5df597ff2501c37e513797d8c0e30555d0bdcb9161cd.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_1_0435bb76bed7ae6501f9a2e48b6529898462f12d0b1d036b7f405c0f.root': 9L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_2_e50fd00c197f2ac98fcf734119a5d538d3fc205b3869a93cdc76f3ef.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_4_b70c6d4b5ac7d1892cd3cf25597855a331e903c9981b749df4586e0f.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_16_60baf19ed4bf76541635d5e7a481b402531a5ee5b600bf95a8d68b96.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_10_752c957db4c36ec7b1590e4e50c6e5dbe158f0ef6b5490c2130a28a5.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_11_c49bb93797b9dd484e7a75e20543a8aefa863a0b52643327a8ba3bee.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_5_0ffece49ea51bb3814fe908e66f7bf87b8d66532443c090d25be72cc.root': 11L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_3_be358bcf6659b6673afadf0562c75e18922e60a487e807a00806ac05.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_9_3896283b464d806e59d89f5cbb3ffd2a47f129df43673b9d26bb152e.root': 9L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_4_86b55da5f932b3f757d2da71eb85bcec800ef4d7419ff7813c14ea0a.root': 11L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_12_d7ed5c0a9c6bd894ef90114e5b66bc4011f72235bfce48935da9755b.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_8_49e879ec13e7a05848438b25ddae05865a8a55c191757d91001fb318.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_1_cea0c143d23200ecaa8fa22d3ca513025a475e7ae8d1a87b3bfa4e1f.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_5_770d80d75ea47d18b403b94a1f907a1f4995c78f6153d9b221300851.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_6_9d15a9d6fe3a65d37ee33a0e6c27d6a84c0f948777e7906c7bdf95d5.root': 7L}, 'ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_213246_0000_3_7c57ae2a25738ad7e7dcdd852c97305860fa0f37e1ff1ec392f1f87e.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_213246_0000_2_0ee1c25daf4e57056006de9262b2bed40f5dd35bff37a329beb99943.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_213246_0000_1_7604280dca0cdf5413412b221817a7398338a3c8eb9a086322bf6ad8.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_213246_0000_5_7430d32f81bd390941c36f5f08a0b780ae887d2a7830a49cdb730358.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_213246_0000_4_43469ab07499bab7fd2629f0e728db1bddaccf5a6740395af24c557d.root': 1L}, 'WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_31_3574dbedc0b64ecb6e8505eca3a6c4519ac263252d51955faac0de9d.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_2_981685b98435c553452526dd9cb8db50e4228dadc529b66f45cd2902.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_9_db01e108ceca029cb4adfb2cb9ed11e62d6ea7592c5973fe1932bf49.root': 15L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_16_348cc5fbae55bbab1e2dc56562837a3e3a68bd5f8c6b9e728d0a290b.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_23_82ba02dedf5585200105657feac023c64d8a029dff800f044f387687.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_13_1a7aaf03ae64261e994cb65716aa99d5e268284745d448a613f1b38a.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_6_bc6796553d685d329f22d25ca399b476e38c8fe1ef7cdc56fe1de926.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_1_49c962be49442003f331830071ccf1cc76ed1985fabafec0bedf5757.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_18_c5c211f071ea6173c306031f9cd6be409ff7d8f7b0afc92626050e2b.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_22_92ba8a3c2855854a3cdca7e1552824be6540ac6b928193545fae9c41.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_27_ec5990b45d45b40f696468028483e3407f44a962d0c265f7e25a99c5.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_15_cd904f4784a3b609752d64e889d569bf443f10ba093c6862b39bb4ac.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_12_30fc66238b9629db6e7af09ecf9144e12ac5948eeb50333cb1d01743.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_1_1c08a244074dc05e8b233799ceca774a75b3d03b37481ff3997fcce3.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_3_53ac432d384ab206fdd726a4157d88bc0e0d8dbcc903d0f393b9484a.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_4_4b264ed05077d83cfe104263b32cd7b84544541e6f0f79f23fac9d37.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_11_aff05db59fbf2558baf882204a764d679dd9bb31c4c744e54050c869.root': 12L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_32_c21d491eff13bed8139cad12af66e7dc46730cfc205c7a9d8afd142f.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_11_c29f01aadff4aa84a610979f3425a5e6d9ba3a6e7eb78a4a9faab039.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_5_bc241948f3c7d707cfdd7003bda0e47757f7f3728c208cc3b9b1aa03.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_25_9e07f1f10d77757ba7997eba8bcdbbe959472da8bbb752468e270535.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_2_a59b2d6dbc0515c2511a384e2d4f974b27a7b96a794229265f57024a.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_19_4c65dbf8576d2096222ade9f52827fe313a4aaa163a4140b3e491191.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_13_4f57b18dd363077be66f3a6cf9ea8ba0466b168748ce204bc5a483fe.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_33_ef24f522da7dd147f94c08f3db0a44695bf2434af80ffc3a4cc9d306.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_16_e7802bc4be91ee1ad57df576df6645d72d2a301f6998a382d3dab8c9.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_17_e7d1ed63a6dd4ae57ef338fd3c7651aeca1faffe2c1be2ec9ee75390.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_18_cd53622ad5883dcdd91af4b17841cdefc3cb51ec829b12577f88938e.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_34_59dd3b51da5915e3678dad406bcbea6561ab1464f843f68728b98176.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_20_5804b11c9cf9d9289b79465645a03551c153c92b05e5b8902ab50eb2.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_24_1860422e336cd345a8081a5bb3696cea983c6641dc23e0630dbc3f9e.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_28_02052eaddc14f5aa3a9652a3179d03ac39d9742ba10220e207f70974.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_8_deb1484ba38b23f800ccb4d9376352229b87f0b08c67b909187cbeb5.root': 15L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_7_f983a20112ee48be0a5777e7030fb8166e56222ac8480a851c3b5c65.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_12_544eb11d16fd27e965ab3939f6ee560adc3ddf5a62de053b7e88984e.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_10_ffc0d91b5463f90b5e8f42fbcf81322cabc69d4d12c7adcac9481774.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_3_75416bb5bec7cdbbdbdf60a5861de29dcbc5b9bb129cad5561f75315.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_17_da9d6160d93258a19d050d5162e6127df8aff60d3415950d0dbcea4a.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_21_05ed3bdcea11f4f088c5a7f0790a6caa655c4f6f669f3453b64acc19.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_36_4d6ab2b7c7dc5947c254e5af575270c8e9f84e9c366487c0524b0ec9.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_20_3e3377cba271853f5837340c312dead9ada1c8ab912e5ab51084c8fa.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_15_9f9308074723013ab8481e74e4c729a42db94bdb7848c24398e72f83.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_4_1ac02a011e997e50d33f39e05bc68fd6fdee7f2aee34f89eb5bcc883.root': 9L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_7_5414e5555e3c9bc6cc729379c8b01b4ed1a95895f08e2bd668c01758.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_6_cf4e50a2c08496e1e814f3825d02851dceae8b359205ca83aef7e66f.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_26_09fe39fcc8166cecf063a746c790003c2f3b3c8b5515e8cf6c655460.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_14_33e242879e0c08eda9a794ee3b74799d5ede98e6502b7a1a60f4e442.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_10_0af07cb55ae98bf60b95cdb22a964c5d535e5df58b0bd26cb6b5e0d2.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_9_d131cf56e21fd99ace1036eb86007d6981a27fb13a85e26131f76f46.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_35_164ccb5c17dbee7ed2126670a98ddbb692ca4d3d3b2f60adb8898b7f.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_14_dc45794608b0152a54d1eb52aa71c14f6f6598e7f42616a223bf500f.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_8_92db9fee0d1a4567128721684a163f43b5a5348dc5af529401fc1843.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_29_9f8a505a254731743e456b0936d2b0c43a0afbcd9316772500dd9481.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_19_30626b7699ba155b19965009f98eac47d827f834f530a466d2e47ddb.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_30_a1a9b12c2f3463152a40d171f5c7f7f499f45bbfdf4cda26e274e66c.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_5_674a97ac6c514e1a37c3a0dc4dd2e57e68e5c03741f3e65e05485ee6.root': 9L}, 'QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_17_3b4bcfe3322be62724697c1851e20ee3c734c8ade055776211fe8e78.root': 16L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_38_8c00113f05f063d0f9c3daacce387e2900986027e23cd9196b74424d.root': 52L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_12_521d12ebf301b417a7d4395e93052c4b47d7e346b66d69d4bc59c0f7.root': 77L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_21_8eeb4f86deb34f5788a45614c09a7bb257e683bb6f32ebfcd644c7b3.root': 22L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_13_012f5693f8d45e266d26e6c9168db532765359a79a574f403cac45dc.root': 11L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_16_068705413dd5d25816e8bd310f67ce6b888c7bb74171cbad6f65a129.root': 83L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_9_281c4e19db536d44f60a23512ac8f2c4d68288934685b45b1a782910.root': 70L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_11_f51070ce55369627d3b297731e4633f2fb91fa793f89a93d94b4e8cd.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_48_8162c0b15687b18bb7d795576330defeb7704617f49da4a0b06301b2.root': 61L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_7_0d95186f8d2e50e124bcdf221738471ff04d480eac1b3382b02a205e.root': 94L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_14_702c1040afe9cae0cc11462482f052804e107086ef1c71c282c25db7.root': 12L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_25_72f58168f2d982f08860898c47a8495a756a2138694f593e0588cbce.root': 26L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_4_df995ade28282f1b3edecdaf6c4cebd0943d3cf45985d2d093610cfc.root': 90L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_37_db741c29e7d15549375346de076bad6413a539ff93bdbba989c4c501.root': 51L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_15_a95838869212694216540733316963597d5a6e2deb08f30573ccd4b2.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_3_ce3f56964d21900985e06a85c72e5708aa0b21428365b9708a070a5f.root': 53L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_29_6dc7281ee50bf6c82e77e4cd7670b16d6e07708247037548564142ea.root': 34L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_44_c68cbe125534050f09be8d794a7538d8701cd95571cae9b3fcf9b1c0.root': 57L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_7_d888d4045946e7f30ed713d05e69ffdd6024e0a70b8f548f624fa01d.root': 66L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_10_476a6ba5c85b354c8b166a686d94388b7496e6f5b0ec0699febcfdd2.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_10_cdca0399e3b3a7638281f39ea2d94599fd532a7b7f605b30ebdf8854.root': 73L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_36_8fac23ef88e4a975970135376e51afb4d548dad0240994339ae99019.root': 50L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_1_18ca6b45f3659cba744ae794d3e915c573e16a32d718231653c129eb.root': 86L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_16_89f8c3016b3c1d9df82415a67d54edc47d18864751e00a892fffca0f.root': 15L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_24_ad10de2f7bb18b57238b629cc25c665429ac7e62a783e3c546882b47.root': 24L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_6_767b6fe3a8b66ce4e65dcd8d561b25269d338e89ff5a49c93002aba9.root': 93L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_33_b3709bdc49412b86c2b26ef1b38c8b82d94360ba7dacd4450540e5d2.root': 44L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_17_56481f3bdbfaea5517083fbf573c490e7607cd727fcb05207871ef5b.root': 85L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_30_8086a790563f74fc2f7aa535de97400ddb017c394295fa3b3651f039.root': 37L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_13_7e35c3496488dbb19ffd173d54e34dca3ffc06ef0df03423221d6524.root': 78L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_2_e65a5c62912a278b96cb9911d55eaeb472ac1c8bc1ae47ebba3d83ee.root': 35L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_15_bf7f11f7a32bed828ccbc9faf09023b20c32de43014aec2d590abcca.root': 82L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_26_9a33ba985db2c733b3274e08e43b67fae1962b43bd445c1d1b6b8d75.root': 27L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_18_880635dc013dc746350d859d43fff07a98775384442bf0f6abb3549e.root': 16L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_6_56016cc5963f6724ca881328f487f5129e3bb234dfe8289900482b95.root': 65L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_3_7efa9174d99e9859578243d2c43befc2aa9a31ad0d3ea0ff0e7f5624.root': 87L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_31_890d11a7888e0f4d8c59bb2271c5849206370fbb1fc52534936b3a32.root': 38L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_40_7f10bf5fd6e05fa98f5b955d7bad391bd8dec32afbc84053548e89c4.root': 54L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_1_08d1ab886982bef6dc63895703d5c08e3557c8b39ef52ebfedcdeb8e.root': 19L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_42_2dbec05c9c99e9b2513a51f039875a0583b1b6506bde4f1c0832116e.root': 55L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_8_323b6501ecfc8721e0b46f9287022b76cdeddd97676fba3b0f43d4ef.root': 95L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_9_5985395416e0576b0496bda69611a1a1d1b8bec27e15cd30383b9eef.root': 96L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_4_4e91522d791bdd30257eb2f9c7a5ea01d1773e1891daa25fb1129a73.root': 62L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_35_e0be799f3bc4e48245b54c8a4316ca4580f684eba6e39116a2d48b1e.root': 49L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_2_f5f6d040bc1feae27f4570ae8cc55e5ace874fc4365b19cd21eba52f.root': 86L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_43_ec2069f541c0d2b9490ebe60e82b32d85430821f36eba2ffdd7df710.root': 56L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_20_2008c8d0e3df08a825cc0e92bae9f0f8df6f2dc8fad50b52c7e0cf33.root': 19L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_23_55adc6f8b886a0cac6563c98cde4e56472f9c03f8fee6f4554c7e5a3.root': 23L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_22_02bbb4e8d99063adc38a1bdb90087e6a2040ac1be7943078460d2db7.root': 23L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_11_244782c3b32767378da69b722ab4957af4627f323bae3f7fc4051f6a.root': 77L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_47_cde740f448b81c6e8a8cfe097d9cd046fa7cf28fa06c66bacbd54266.root': 61L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_8_ac56a28bb528f6248f992725fd19386ad777efa807818834414be937.root': 68L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_27_eb99f8e350b0ad2a6255c557eb16b62c0949fd2dc3b86ee4c35588d5.root': 28L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_14_1ef80c222a3fcde83dc07d77f76aefb6a9327e8f077d27849b583ec4.root': 81L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_39_10821500b4ba46a2dfded07f45a8bcc6695803077c7e684c4a032ab0.root': 52L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_28_e0ae0592c0ab6ecc1bd9d86bca5316c3fc230b159b3f3769f823e0cb.root': 30L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_5_605e808bc6bd7cea504073aa621cabcc5c44fbef5c72cc8292d6b94e.root': 93L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_41_68f078f19681773a6c317882dd1312e405d8e6305b8a5870381eb108.root': 55L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_12_919f4ba14798e4f0bca235a35d097a45d144f8897c3c2c0bdefa699b.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_45_8b9de30f4d19dd1307215bf88b28ab3a4da97c7ff72b36e1e51ca0d2.root': 58L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_34_605f5b29d44ac7fc90435f5ab9bfa55006605fb22d0a611787739a41.root': 45L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_32_1ab3b6c7a988456129f2b17f52443a4b708e4e84818ea89bb7e38b3c.root': 39L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_46_e59a30ef5079a648b7dc78ec47a9ca7bf59bae2669ccce4ad272e9f4.root': 60L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_5_30ca4922f2ff821f93a65777171d6bd9da7bafffb79dfed557c39dcf.root': 64L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_19_95eaa2e47a4dacdbbc0d44fb0bc5247ebe9eff5acaf40a3b11561015.root': 16L}, 'WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_4_b2b81c1018ae9cb379b01d8d8414c1947cdb3f83901a51e3d217c1a3.root': 27L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_1_e820002e64e96110820e9a5e5dcec25ff0397c5c51a39a8a5ae29241.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_3_3144f6e6c7078cae1f968ee2d441a30ce27b582c687a7508d10867e1.root': 12L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_5_dd1504647982f99862a293f2bdce42a558909e0ee5062f4c2faa78d6.root': 34L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_6_0581a3d60f7b514d4e6e47d79d871b84cacdfb38e41e7c3288d45a07.root': 44L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_2_2b1d1e955c80c8ef7ee3b2ce69afb9fe556cdc04e8bc8018b9872ac1.root': 3L}, 'DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211219_0000_7_27446e899540ecaa812f4b563a7990e9a88e4bcf57f5e751abb3b67d.root': 84793L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211219_0000_2_40bb389f079d0f1db0ec08ae4df5e00fb1dd5100960b2e7b6cf20789.root': 6235L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211219_0000_9_0c2c9718189ee22e4f1e2e8de966cb97c6f39898a5d58e0e650269cb.root': 134891L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211219_0000_5_2b557a991044c18ef34336a91185f78f153572fc663a816f3fdedf86.root': 47850L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211219_0000_1_d05e0f3a913a44371b38334afb9f31ace9d5466773c5b5016e30404a.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211219_0000_8_a354e4c83d562949f4a564dfc0b1b695717aec227f3ef169e551ee7c.root': 114393L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211219_0000_3_240227654a49f8dbde6e6b14ff15d8389fd4b9134806ba7e9b0b8bab.root': 25648L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211219_0000_6_881d58cceb163952264b21ca019a16c88c41bf082dd5b551a59bb899.root': 56267L}, 'DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_200928_124703_0000_1_600e6da12c8a4e0e05f4a4d4b91621f57896c83cc8fa89a9fa338b7d.root': 0}, 'ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_3_a531bcfe7b5195c0b8f1347cffa6b084464936761caad988ba531747.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_13_bd3e42d469b5009ab2ffc0040d84383824301823029f62855758347f.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_5_50f28c4215b53c68b34cbe1dde84dd16d56032f3cdab5705adb151fa.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_14_4f8a29fe193398708d0966643fbdad0af91efdbb217dbdbed2f2513d.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_4_cad24134cae9c2a18d35d0891c344ef2fb2c002e38e68ee5ea9670ae.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_2_4d6c3a436abdb9f6681a7c41fbf33aa406f5f272e896e00e40f9e8ac.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_11_501db3f009bcc7605bee54e09f3af451ad6fea78becbaa84e529b78b.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_12_dd898ed5e8037f04c58add92dacebe1f086e3906c63623e095eb1f8f.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_8_cbd5c0bc9374ee91b57f73fc7f2d69b1c4b3b21dbeb1cacf572e8d74.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_1_bbdccef3b10222c4f047477c8f1754739ecd899c897fc1fdc87f3077.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_6_af138b99dde593b7854723d13b4d19b3fde8c0160c209c35cf1a96d0.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_9_401ef734d578a6cebb5dada6613ded20d353a4fde9c0d63b91b18ca6.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_10_49ccfda5b35d5476b2642330259949cf147664b07aa468d126c5ae68.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_7_5914f81442fa99d0daa17c7767d0a4b79831c89750dc42d3388ae70e.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_15_9914a75df101afb5f8dc8aee763de12bca4b7823e0aa8f05e7329d1e.root': 0L}, 'ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_3_60f402a2b07436fff1183eeb96ecaec24a4cebfbf9bdda43298d166d.root': 189450L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_8_f1a528fa00b707e6c9ddc3f44576ef3418f8d5568429c3a919a59a47.root': 480502L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB83_190607_053836_0000_2_6207aacff63bdd6ac498a7516200dd11efc6e66cfe527ea8714dbf9f.root': 642292L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_2_3be70669fea0dba791b24ba9d1fe5544202a582d5b5ac55753908e58.root': 130969L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_4_7e2268a5acb6a61252dc16e40c651d53001e07f52c49bee1d0104bf1.root': 247639L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_9_cdeff43aa0568dce44f1b9fa2ac4f1afbebd739f99e598a3f27b11dc.root': 538815L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB84_190607_053924_0000_4_bd29d2b3e4804ad79fa0899ba9a45bd75adff062bf952e8a31ccb53b.root': 830262L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB84_190607_053924_0000_1_97142654d0443e2e7395500ef43e101046da0d4d50a4ee34330b9844.root': 657102L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_5_91d5bb5d2eab21c0443bebf83f5499ec2d867c769f46ad07e54b540a.root': 305799L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_7_5b53d8c5383ccb79e60f284b17527b17cd1a4c2290e03d2243562db2.root': 422484L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_11_b52a23e740394f84b7aca34374de9ba5933e0dedbb0d2a8f1986a336.root': 58225L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB84_190607_053924_0000_3_d91b358726d1f4a5166f4d8103bdfc1e0bf28e91f6356f6d571a3c2c.root': 772581L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_1_bf3ca7b31b5ff5890f6d614e15a6da4a60154bd9456f1b2923ebf482.root': 72792L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB84_190607_053924_0000_2_0d09e3b6755fc836c07ce0a74e4d8093e97c48503a2be6f37f99b9c8.root': 715556L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_6_cd92fae854a7e7a99672866fe16413b372eef7e82cfcb790a09af03c.root': 364006L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_10_a1e58b1c85b8d48c76a72616526037c34409850153a7d26b4829a5e2.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB83_190607_053836_0000_1_fde76c4222bf3eeedb0df7a1028f21e8bc359ee10dfe9d1e56a8f47a.root': 584028L}, 'WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211550_0000_1_f52c167f3d00f9beff1c5fc20f9f56db5ef797d367d990e65da06fb4.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211550_0000_3_dcc49d27de3380aca76cba0c6bf48d6e50ac2eeb8553baade0ff512c.root': 5L}, 'WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_16_bf23cc2d04cd09ee0a08b14841d34a1f2a50bedf7dc9152197d924a6.root': 233L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_4_d7f0c9e1bd5a1766cfc3d5d942a2a1463c5514b606683b134bcc93f4.root': 117L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212155_0000_4_27d0b35229d833737e9b9cfb51373a280b94907a15c6c5772d130faa.root': 435L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_8_316840b63496bbaab9676aad262cff3c81e8c2d13ce8528767c4308a.root': 154L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_6_da80136b7429e0d49702ad4ffe3d6e7a36d3aa49060ccdfe45155e0b.root': 353L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_4_7ba73ade347ed820fa5793f731020c8442785afd3d295ee9aa117079.root': 323L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_3_c5273e4ccd7d3d199fe31ab66683b48e07dde9fffd43806fdf4bb7e3.root': 102L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212155_0000_5_6260dc5a694028b9fc237c8f4ba4255ce3008025e1f973dc722830ca.root': 454L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_12_00c26677549f3f7f3116a4237995f1295da5ed04ac948fa96d7b032e.root': 21L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_19_910bc035d291aa18f93a3f74af381dbbaf38c40496b0c65d29a2a822.root': 268L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_18_aa08f9d0c649f9200281a9930197961c80e6d8002942dd9d1c0a8001.root': 254L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_13_8a98325449963cdecb8a9d6cdb995b86a4740df5a1da4e60a9c20c17.root': 31L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_15_318c04a36cc91e1d23df194687d8eec5edb5dcea3bbe5d852e003bb6.root': 48L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_17_248f1fca1f317e57a9cc0a462d5bf97a51438fe081bc23956d8de00c.root': 244L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212155_0000_3_0d9340aad777fb466beda178daa8b44fbadc6e8d5d4f42571dc11cc5.root': 430L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_11_d15ee91845a3b20d6a5f731abd4d0ed09640c5c8ff93d04d1a2bebc8.root': 172L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_12_72b79763d4ce898f612f436428788790580f735a5e6c799c18adc440.root': 186L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_5_16eec05dedd68c8042d10d200665afd6fd216ddc437e4cc64fef9ce3.root': 127L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_9_ff73a6a8eac714ebb398bf6519de1e3210b98b69548db65f9272047d.root': 155L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_15_24bd6374079ac105691d71cd340f1a50062eeca1708119bccb2676b8.root': 215L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_14_270ef89af77a18d8a5f8ceda4ea8e6be09bf9dd63ca2dd2970fd8940.root': 35L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212155_0000_1_bbbcdcd855e8796d4b24e3ab5d66b2ebc69bdf72cd0f470de1242c5f.root': 400L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_10_8f26d6b50690dd074f285e5a47e1fbe9469fa56d886320016251cb8d.root': 162L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_11_661f70b825b6f9a2977aeb60dfbadc9aff7e92b6ba96b9e9e686990d.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212155_0000_2_3df4e6cb99321f70a576af6fb0c07749ea0de5486b7665b35230a957.root': 414L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_20_845afda933a9597f4ef2a5b2f9d74fdf401e61dd2786f5da1bd44499.root': 281L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_2_752a6a63b240a54472449b825355704e9de71848c8cc05bc7f41d4d6.root': 86L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_5_7a60ac6a107bfe9b1a0ae4cb779dae1009eda37e4d5d0d1bed0d9b7e.root': 345L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_13_2c2119420bcc0d7a6947904c774189f84169419b45e98523da285c38.root': 208L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_8_66852fb5c8ed782f82fbf8e391cd01c5ef31a587c66e4e7b72ed369a.root': 373L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_10_f8900baa5cda41f496ab016c9137a882d842ccaa10a169b8fd8218f7.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_9_00e045a826e93cfb073bf5ca4ac1b5e6c3ee48c265a540f3de14c209.root': 389L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_1_fc4ee4742d517a60b7009a4111492ddc1da82db16970ca9767fb943e.root': 77L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_14_95faeef0aa39d0814e64062b82e4bb95656e933b9737a5cdfc2146f2.root': 208L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_2_b3145f9d2d021c3dcdd222c7d31479dbaddde0aa01a8ec6a46ab1bad.root': 306L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_1_43ca926aa50d0198c5b7334662363040a18f3d8f5c16c7be9793945e.root': 279L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_6_e76436498e515bab4dc4a5784f277b09f2f440f241da4a89df83ab42.root': 141L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_7_0f18c0b7edab548b34aea2e086afbe1213a7cd3e86281cb3287a66b9.root': 368L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_7_2c2c5aff98800a68d38964a4f24859b7da67ec7e4c5ba351dfc86ccd.root': 145L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_16_8b81f48d679270340ba9729cfd2e3b98042e5adc09161ecc7690d55f.root': 60L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_3_f45ef064dd7b2f8f86919a297e9d0449dd6f0bf0b3d94acdb1ebdb0a.root': 313L}, 'DoubleEG': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_1_0d44f7566bb96f7b8bb9e849219a21bde5c2a47747548683d0e09413.root': 10869L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_32_8a74991523f9cb8bf458b6ccf011abc0eb0804ecdeeb63526fa5fb96.root': 353903L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_4_3f780b5b0c9cf31e46d39c188f5660f42c90bf4f67507183c2891f44.root': 375893L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_19_98f5d7efac0a40ec8af41edc00fb1ed92a6212c78dbcb8ca2b8f776a.root': 79639L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_22_67185adff99a5a1d3b041246f128deda696b16c1b38df884de2a2194.root': 13755L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_26_a2cb9c56893811a5d2076546da051ad7fd2e767a7b5a26aec03276e6.root': 250173L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_25_786624896d05e8c3c827249bbba0692bf115f3b743abdd871deb8c18.root': 123462L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_7_88ca63754d4106a66c040898290306586d3c99811eff28a018769a9e.root': 291541L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_8_61c1baf5908914f84f6e2c22886731346720ab64e6ba1de4a92ae10f.root': 93569L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_16_4d98b8f63b400adb460b62aa6dea175f11c19c6d5a9d1c227f40e055.root': 106957L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_24_ae5923e83b083f47c0056f97e86deca6ffa68c0cab0733c1b31d3b43.root': 167564L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_51_4fd5c6b9f3cdf4ffd2e23104ee546330485ea3f107d32ca295823388.root': 47548L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_16_383f749a243a11193391dbfd734f70ec3b262622fc30b8303b675c7a.root': 226354L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_14_e415f69627f546c69d53f6128b818523deb9554170c44254e2fdc1bb.root': 189388L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_43_9806a7b49dbba1c28f4cb4df6fbba9d126b25639d3032c498473af56.root': 38602L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_6_8d56aa071cf9702c2444292a7c67a05ec1dfba1d0cbcee9bb34f04b6.root': 91148L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_49_328784a2479aa85c4dbc1001e14d51681b8a3b9923b154887171c780.root': 44293L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_65_87510ff70c052f4ac90d9f47c0e88ec9a04c252b0be19d56ed285576.root': 63414L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_21_19859249bf17c18afe0c8058828ed75f63de366fae41ac4f637e58e2.root': 83393L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_21_e8ba4227adafe7a92e0395d9ffc17a0778b9f130d6e4aa1282308cc3.root': 117641L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_37_0679889d26980c3c8e60b4bb513ef9b94c393fcee048ff0ffdcd8ea0.root': 365641L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_38_e81b727a606b7d6ba8bb7c3035c9694de56bcf0d9174c762b8a13d53.root': 280708L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_3_fcd280238dba4d45b8a4669dc57c3226ec42ca01a6a43fdb5742e175.root': 33657L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_19_17ff3d09f6d4f984e8e02fc1ed872ff7e84ce17f2585af299a033f03.root': 9683L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_37_dd796c8690c81d9792dfd85db0d7f9030264273c988faad12f65bc6f.root': 278448L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_3_ca9bd6986e427f3ae45073079bf0fbd183c150960990ef4faaa2cc10.root': 169863L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_14_88833a13b21479803a3baf90cfa79ca18375c95433756bd609d011fa.root': 149002L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_8_7ca56f3d14db8d57ad1fabeef540a18f43bdd9f6c84fc807eb219dd8.root': 385511L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_6_82bc0457ae9802342c3e77a3db232d707cc13d029c9d218b801593bc.root': 175030L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_17_75248a947e8e08168a4e7f15152b247280f84c3ded00373b5547f9b0.root': 154138L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_41_e1642bffc0c2527911fdff345e8fc07cbbe34cc763ae98c93662d0f0.root': 35835L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_31_95e193663ff8107d25d57a0d8602aff1128906ed884e049269162fbb.root': 24615L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_54_30df5b43d5dc994670c25a19e291c44cf6335fa2368136bc966b0836.root': 50554L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_5_f63b15ea0834026e7e173bd3b5fbba5fe3c0d7ecfd1f635cf32aa878.root': 378449L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_10_3d7b4bb8ce7fe3b60779219bfa5c750bc1978bd677f621d2440c3d2f.root': 298240L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_2_a04592748dce96e270c029ceaaaf97e6e9875c78cb7a4b61dec2b404.root': 259710L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_13_5f63d37551c2e42443d43b755f0d1aa98e65150efdc57c9d95b9abe8.root': 3057L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_11_b575fae2e8dd54711fe8bd7884d9e82471621112a30a5ca0e3a42acb.root': 183745L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_10_0bc3965856f50091f1379d71050c4d29ac9e800c09925fee2a0469da.root': 68154L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_39_57f38e6779c71e0caae78820f0f3fdc28a670f770679632d62fcba7e.root': 370354L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_23_ec9500e923932477da8d30aa21d1174bd761cf0adfc8d52cdd53eff1.root': 86025L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_15_ae866ce2e4847df5376704f811aa75ded212df9c7f7c8813568538ef.root': 223986L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_19_b06b8b946a8b081f1a334f1a61b6f6dd103dfddd03a25a60d4b8a2a3.root': 318509L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_4_cfb74795ca4ae70e13362cfa2c409ceb44d9a1f9555bee32216072e0.root': 45522L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_27_cbeaf7f033ecac12158e35f314528264bda0700ccb2df25b4c20d102.root': 252591L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_5_75cfa7ae7b695abedd485c606241e74dc2c2138d7a9f00172b16e19d.root': 89969L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_1_565f2b73949636f1ed975d3f41e3cfc963933d744cf19fe1b18ca60d.root': 159326L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_23_28d0767e585db7b0fe187f6d5e0c727237433079c0179b6e6dd691d5.root': 329739L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_12_9bdfcfbfc3c6c7a13a0669b4ce97087d8466e07c8493b7e9e06f4724.root': 216910L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_6_32d477c41155d7df391e1d8abeab4fb12d17611a286458b5a19c09a7.root': 134971L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_53_8737d7d7f312270db612be847759d6c52f91c0d857528f4542301d7e.root': 49559L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_13_b5514060e60da1b5ec069e81d7edcf18a3367b920c30f359d547c7fa.root': 187436L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_9_9a7d58b40621287a68edadc31e6d18502aaacfce9c2a5f567bead72d.root': 140294L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_38_4451c923d90c476d55f72de9caba98278410a60d22ba59428c7f6c7f.root': 31402L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_18_282ac37dfa59e907fe3e13ee082543509a864e1982006ec176625354.root': 316075L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_22_999a27c01a731806fedcbb1bb033b7fc9fc34867228ff1364546237c.root': 119337L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_35_8510281787a42e9c2cbd14bc39974dc9cf2a8e0f2431a12608b50260.root': 360782L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_42_f88afd26cd646545df8c3df27763d9d3661120a1585f9d5f2488a13b.root': 37152L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_36_5739ada3d667835ff183759a926c0af29edaf3957cbe89d5732fff0c.root': 276069L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_20_bebff068eace0966d9aa339884b8e66546ee8ce4d166d243334278ca.root': 235958L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_9_fd68aa60f8044f323bada13187b349f78eb29a3730efc6ae9d5bfa8b.root': 388161L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_16_fc37c3e8aa730ad8780504121b2779fdae72a0c011c4deb85379b684.root': 311768L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_15_b6c518ff0e3025df51da2ec0f72cd984d07a23283ab4a69acaf5e107.root': 74632L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_21_d58d75de43abcfcbad53c8f380c1c774796a8bda82ff178e05dc6778.root': 12863L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_9_e76b1b5b0322376a19d2ba2ce13e85d7381c1658309596c0b8bdcd3e.root': 66732L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_6_7cc022eee4b96e68951655f6fa9144c0f924b29e5a523ae139bf603e.root': 63705L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_5_eb51df6281815a09d28b00302f1ab5a214a505037214aaf6ad70c19b.root': 133208L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_19_3ab8b7d65231aad0fca03dae609dcce2104a7cc009e47ae92b4a6f0b.root': 112252L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_33_ac12e2883d0a6f8e48a4eb337a0fb01e71bb6973a35f5594d01807b8.root': 268982L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_31_a072c9c9844c996d9c6123da0dc99f471062b83284a0a4979c5db3a6.root': 264065L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_18_2d62ff4e6749c4720b73856e78b77613d0810c1b0d9cb74176884314.root': 8571L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_34_f5d5b2b2b1c063ed2193056f9e75443f234d4c8e3ac38c5a010d9c9f.root': 27967L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_26_99f8cd69239d60204f7c9be8a78e49249d03ce79d8840e2b5e32a348.root': 337123L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_22_bf48c0aa26feed120e4b3ada653d00195085f2e00793fc7291c0228e.root': 240577L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_58_c5ee854785777c6830def28fb5aa538e7a04ca0ce0465fba33e9502a.root': 54843L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_9_f97c777b6e3cb53b7ac032ff26884b5f3771fe8df1a94a94b446e729.root': 296017L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_1_a3b57e1ef2a32bc9e24d4e06be0ab163ae29719d81d7d2d85fe1ad39.root': 320993L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_19_31a0dc47350ba818ead01fc7074d73c9a5e3f5a13db0d56efb844d18.root': 233177L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_2_12477705d10831684e8316d2d5b01f9d53f54d0d6e58333005bf7ec8.root': 346779L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_64_04febf355eb243350835cf9f6bca8c429f821a06bb50f42e5cb349d8.root': 62342L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_15_c5166c1c0632cefa216df105480379058f5a890eca023bff73e28530.root': 105042L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_30_fc1647f085f7bd8f2e7228e155f6cb19f0fc333ed75c73d83d8dac62.root': 261920L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_15_0e69172f4d339a7b08c77d236dfec3084fa1eddbc41b931eece21a0b.root': 309399L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_60_17b1ec2cba4695bde3e07fcfa933a3cbaefb60d24f8890c96b05f4b9.root': 58035L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_20_c73fdc8f955a6d494bdaff2dc832ebfa97a40a230cc6674266082c04.root': 82071L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_11_d9b8da9b953e2ccba2d357d610c1b607761ab4b20b8afd49cc65c277.root': 69416L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_33_c0ffb42636b5d418fd74f05122a799dcaf06730b3a096443b65b9632.root': 356165L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_24_32cc6dcf13ee9c85e05dd3a760868208b6e7ae0496e9239f5fa45e8d.root': 332342L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_11_a886560ed5b0e3a12ed0b166240d0dc3bfe6217d9a2ab44c2c9c61d5.root': 214786L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_12_5604272afc861037838c1e21265e5132bfd9c58c51dac029a4741cf3.root': 2104L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_16_5b93ed4abf4fa0431c4357683d7a9b2b6b0e11c27f3943f1d25a6194.root': 152345L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_10_b2ca4bc635ca42e2fcd8abe01990a3201d87a12d57b63fc489d8746a.root': 181859L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_10_d6b85f096e27c1a1f300c1b996584eecedd07ece21cfdee289000e40.root': 96084L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_28_354c604e46d275641af91261ceec9f33a4a9ccecf720c66367920e3f.root': 254990L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_23_24c210db8215f06b8eabe39467dc9a392d30410ac38ad19df6862b03.root': 119817L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_15_08fbf51e75c98bc0823c8ddcb1fab00eefbc3ff331552ad8421207c7.root': 5302L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_28_a800f984bfdde76515c16b5ffac3b4da5dbd503d23c9c5aebd9859fc.root': 127082L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_17_93c8b699c639dbab8994328c5f2e3281f48ba06f4dc937e000e5b524.root': 7307L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_36_18d27f343bd543922e5be7258130d7bde1930cce12c8673aa62f9d7e.root': 363295L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_18_70feb6395b3cb6adfea8c1eda05da35fdd53c0ee329e9c9fc1c0359d.root': 155888L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_44_f3cc764650bde72f1e78fc2bffb4b20a1f0cdda637d364529d20dde3.root': 39395L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_2_110b42d0714e04e3b18c80fc1fe3f99fc4c733fcb8afc3d9e0ce7a95.root': 197966L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_28_515133cc02fad85ef4d5fb2edd59463ffea208b372fa2eed24ce8bcd.root': 20552L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_8_82a992b3f7ca9084c9a10fbd7ab0a51c31af7701a5682ecc393670c0.root': 178433L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_26_1d7f12fe44d21c21c2005c51c8f855b0dad6e7c2ea4e744cd517d31a.root': 18590L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_31_08d806925fd0382bb96316e8b639d3ff6fded3b250e5640e198785af.root': 351708L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_7_f881f8d3e2ad0ea21fd5158e1f57316c3471c35a8bf0d6ab521e251d.root': 383163L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_10_5c51866d5dd7fec462225e1c05d982971b494a27230645f0fad9770b.root': 212510L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_21_e2772cf202eb48d745cee3ccd11cf14cfcc8890c788fb88cd4776e03.root': 238373L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_22_a40db802269e4cddaa2c499c405a73a9421dbc339960a7055917ff11.root': 84714L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_22_f6f58f9c3faadf40d5e4a42e5f5510edf992816e1d62e616745ed7e8.root': 327445L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_27_5752205839632b1a9d8700970a58cf34543b1ee63d8db4c1935c2533.root': 125400L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_9_b91a40c47de89e941b5f0d88547d1f09f65e2f8778c41e49f6a38111.root': 180071L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_30_5ff67fc84a8b12e2b5da0e89332e27ba443e44713141eb77d9fe0010.root': 349131L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_17_c3a2c9f999d49892b9df5768b99e50da6cf6613f159e376290515942.root': 228738L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_25_296ad6680f32084bdbd09c0a2f073d8aeb4fc16398e0a3e1896a0cf4.root': 334792L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_10_341c2153bcd0abedbd9a116a5095175752741063c78f05f14a21a0ec.root': 142085L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_9_e9deaf01e3580bcbaac3a8a1c909d8a568c601b865f6d4b3e4e779e8.root': 94809L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_4_db1d9ea66e554271245ae84025fae99b47b8dbdb974e851933fe54a2.root': 171633L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_32_ef5b6db6c967b667a4ec8dbc180b8c23845b472a95b743addb42ab00.root': 266420L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_21_a6d820d9a8df9dd1f6197bccf4ff10a042d0362db3d5638583262a9b.root': 326093L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_17_5ea883f96a1938f670bf230c28a4044519dfee6d690907094ddcc4d1.root': 313813L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_34_73f3660fd9c45adf455b60b56b0c1a7c5a3fc930e84f94d26bfc872c.root': 271438L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_7_064e3dd9cdbdc9ffa205da35fc76f439c5a2b88c0950fe6b5d2096eb.root': 207008L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_20_5d2511d1681ef416912ec2c9e347d89c8b28267a9c090b21062a8a2a.root': 323667L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_8_9615ec4378dde9ba08951eaa9fb2da50d81ee19d369161771686e261.root': 138501L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_17_cdc092cf4770443dc3b11e52e434dedf251f1da8639fe5c89d70116f.root': 108738L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_6_6e7a990ffb552907bc78a37de3d63348dd371f6d1d11c5cfe7bbca80.root': 205265L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_48_5a091993fc8ea738142b20c479813280309c97e6bd6a612f340d08fe.root': 43231L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_16_c1b43445a64dff9a8ac4f295bce0fe78453b20c1f2f2e82b31e9e50a.root': 193174L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_20_df9fa2e5629f11dfeaa56b9f0e266d934f66c7b047770ded3c0c6fcb.root': 115940L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_23_95d0e142303ea460da340b76dc6086e9a0f5679541599dfc11be8079.root': 166452L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_34_7c1898915aac2529fd5988fee838cdb3d6db2b76d07c0597a19542a4.root': 358404L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_12_f6530756a9d05247e91c32d8de45fa60447a4f5238dfc6bf18d88afd.root': 99522L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_37_03f83124f30d8012f061ed6852d50d84f98e050c61bc543268d3df94.root': 30568L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_30_fb6aa8303ee775d06a876ab80202cd4049152986872c1cae1ccf5ff1.root': 23635L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_14_6d59a801a8b8244e12c8030b27d8a0267c764958a8773f7912cdc354.root': 103241L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_35_9c653a0965d55e993d6f795a8ba653b25fc9b8d37f4b21fe9cfec527.root': 273717L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_17_d81e1b8cc3636c36de4938bf2db9fef51fca81d449d4121a9fca966c.root': 194962L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_3_43685a9b1209ce0c3efed671726e059fdfa5fa3eebc227bc9293f5c4.root': 372653L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_11_8c5e68745190f3620bccf131bc7ab4d9974218b34cd745d2fec506b8.root': 1001L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_32_8153fa3f76cfb42ed36824b446ade3753f24dfe3401279c1cdb78892.root': 25728L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_25_5ac5e833e061d4ce472fba54346ad1c8c0b94d3d31793be4c60b9c04.root': 247785L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_55_0f60c13e0b357c1915b847f59b39d2d7d4a9374d630b23e21ae8701c.root': 51684L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_13_8ed6b7451e3539d8c553898c145d089b06e9ba7a51753934d52091a6.root': 147258L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_62_f85b44409dea64c333d4df1be49cd2a2bae2320a79d158920fbf4b93.root': 60270L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_20_5c3a665130922bfb302f66732c20208937256ee1150f59f09f0084e8.root': 161165L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_1_22c3661e820c4d3993f6261721735938eb8d05ce3d18e183cb09e8af.root': 114100L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_38_7e1fc7f1cc39a60e6f7c0d6a9ad0a54d9c195f46af6b9aeb1652a588.root': 367922L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_57_1f044f0131d8bcd5e438cda6d95b1e09da50f70fc6f9865c1dea667a.root': 53934L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_29_574cd4e3811ef0251f56e07d34c31712f2046e7c9cb1d7dd94c71788.root': 344139L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_24_032731f674eb65dc3e9854b19c4cc240a25088a075aa0434e5c12892.root': 121632L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_10_5750d9902e0304b3cbccb64f333a5b222221531debb35536b38d7030.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_1_783e111509cfd181b129668ddfac141ea22ee6e1302dd3f914538b1b.root': 195943L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_13_249c1a5571a8a0ec29fe82f9f09f9fc407f2e52520782f34cb5a2fe6.root': 72067L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_29_905979952524992a18e54a7e2f7e269cf54ef43bbbea329c056c0639.root': 21631L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_50_e3df186969e0078e8735bc2d677a89f80031f0d6373e4144fbf99a59.root': 46384L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_5_542c5c0d82bbb2f962e94ceb18cdfdd559570e9cf696888d2c84f1f5.root': 173341L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_13_8bcb7e3c1773fd0d6e14a2babd2662b2d94c2c44d2eac790de5b66a6.root': 304954L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_17_3dc85eddd51663b17e91e8f024393234b26e9840adaa77b502b5a43e.root': 77160L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_14_2bb86b387b943b72a24bdab27d474820bee48028774ee585550c0c5c.root': 307226L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_13_a317cb87cb17a9575f978f73e41adabee0bad06c6d3e7c4554d8dfaf.root': 219341L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_16_5028ccf93287a89a381c8941f42facf8f0d008fdc8327adace2d0e77.root': 6301L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_5_6571d4dc7561b992a1273055b616a0098b3b1fc14956f8ba230d6408.root': 57048L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_18_f5fd3d32b38e50a39ea9930720370e084300258cd927aa6601341908.root': 230966L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_27_21090b37cc181e72c55858faade5f9cf9e11460d1b578e2e85e8bd84.root': 19544L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_45_85dbb0aa444988e39e3efe8d28f93115cb0718145c52e79694f80e9c.root': 40411L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_11_73e736f47185774db27ffac9ecf12a3e1a0acedca26701b4c18df16d.root': 143857L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_15_413ad589164676e5a688726c87cf7dc6a97e0b1c89718e71a27a1ff9.root': 150623L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_23_3d0da5e31665fa1fc10ee5619d906f01990a19ada137b058d23f7c3d.root': 15009L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_7_d6a7c6a605479f7a7da2447a0854592a1ea303a0935044a23a7a7bef.root': 64821L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_4_37727078a1539654c2cd642bcca8dd241b2b9af7803d25cec6a734d3.root': 131412L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_16_4fe2270fe3c95051eef2a22890de17fad9b02067a88aa7dd47693bb9.root': 75914L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_3_00f47c9a15f8db919e9f62ee6b99debacc6589f2226675e37f6d3932.root': 199923L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_29_8c8e01889ce8e8890b3c80dc78229da193f3115aec3cab93cde08e1b.root': 257333L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_14_f9d590626ccbcc1d51521f3f47c72861d1a366abdc430f2fea445955.root': 73388L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_9_ef35f2e927b747d82a16aeb9b4b47fdc9ef9a7bfc1badb4406510df8.root': 210682L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_3_1fcbb8683f39e194bf9a7fa7803e21578bf5d00a77c2c88674ab55f3.root': 129676L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_5_6a7ff27ba0f0bd43168a250bba6f35912f0bf9c1eda4c426e4c073d8.root': 203275L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_24_cc041db0a855f3a6a37fcd2f06131e8b6bd11fe98cf4279c44864d00.root': 245400L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_1_2878bcce5cb26cd822057292b84eb1bd80d1c036d30146b7d34a0cac.root': 235431L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_35_a9086852d8f48f8b23c91014113ab476df0426d7d2d34fa981c62ae2.root': 28676L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_8_98716f756168349730c562d44bb600af7d1b9241c054f1f549eabe66.root': 65862L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_8_04271886051d19648f29fd77321e3d2feb10f5e0bdf3183208bc3a95.root': 208722L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_12_174436062b1326e52fc69b9eba9a88de185c5f15d7a832e5731314b3.root': 145602L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_52_df8fc0fc35a37a19395f96618e85d68380624ac231098529f2f0055c.root': 48498L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_7_970391a56a1b61e90f6921ff25fc5936d6bf70e09553fac808689382.root': 176749L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_18_b05905716c22db23320c1623fb5a86e999fc864ef02709692e4e8353.root': 110444L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_14_fdd9931f646f7a086890d83c59ac22799dbc6084eb286c0d93118510.root': 221637L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_14_e51543899cd209422b23642c5a375bc1ad8156a20ed9220073b33a92.root': 4142L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_59_946f52d3a775692d0ce80776a11c24a4267571506fce94ab3b6070c3.root': 55922L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_12_20ec7981b1a05c96512c60c41dab8eeff05b8f8eb097de51427579bf.root': 185602L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_23_cf17e48cb0b4d6ec2c8ac0d79e8aa737e440d249ec7449760636271c.root': 242923L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_2_809a6169c4d2bc1a4d7d8cffd5051676d0d3452c24ce78a99d0c67ee.root': 86999L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_61_e4c65810b9980f9ddc088f7fa642aa0b476221dfc739c32fd9988a0e.root': 59160L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_39_caa38630f08aa699a7dfd48633464acc735a63634a4795581e99fb44.root': 32535L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_12_d1dc43a9f6b5ed9c9810737b95bd598b87cb16025b83fd9c6e874238.root': 302806L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_6_a7abf8acc5ac860a59f7d844622f556dc15d090ad07966debae6176d.root': 380883L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_15_2aa2885cc8da50c1b9951026134f1e2593c27a0d7eea305f235d5f82.root': 191318L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_25_957de1058e2b0035bf92f88219f50a6e87b6b0bc6f03249bc4c29505.root': 17466L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_7_831038a472e64f094f99ed97a83d23d1b12584e4b93797cb1ce58625.root': 136705L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_4_8eea40487a4f56900bb1c2b6d61dbf9b78fbf0a75344dca3f567b569.root': 88864L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_18_02782fe971c32cd218e138e85bdc7dcdf8f0cc969fe75a26073f0b2b.root': 78387L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_21_52f3f8336aefb1a4912f7eca08bd21d790bd1d8a8790bd912b11c525.root': 162880L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_11_c458cbca87965c1573ec674d427868fd5bb5ab8d2065395933502f6f.root': 97918L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_20_5cf517dd011b387632c36e9a7fbe22d80066e9fe22a073cba8eab549.root': 11907L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_56_dff3909155bbf4e0d77264dc7754ab133c42d3e7eada13408e20c44a.root': 52708L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_3_cf8a4e27a5fa2de3dbfa6b0b5b3fb14a0b7402c9336a2deccb61c709.root': 281287L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_46_b45da18b6bb28b4c62db0e0af53324232fed9ce92e69d1d05ce97a12.root': 41388L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_40_d656d261a53254ee7083b987180ea2a9e0604874069968b1cb163e0b.root': 34840L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_47_6004fc9b0d240c8072a2df5fa6c95b5e2eacf502be10f729839896af.root': 42332L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_3_6a8028f36e4563024593af8cb0bdaefab851934298e8e1d9b6f01a0c.root': 87529L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_27_ab64b31d0992b852f368c47553d9c889821479460051fdc5dcd033ef.root': 339309L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_2_ab56934f3e679add3987be1b548ec9cd83d87148c9ab40fe8b51431a.root': 167907L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_2_bd199b0dadd782e0121cb1e564d7a2a11b14c8be3fc42beff9b7d36c.root': 127831L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_12_45f8f3eb555facdc4ecac50dfa2d1ddde23f0070f9f850bed9414159.root': 70744L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_2_1a74c2719579caf636bd02f1144f20cf910a70e60362ce568914347d.root': 22643L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_26_41b8ab215db6e47f147a7f8f3867a1840d760ba0bd76f97631bc53f3.root': 125282L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016F-Nano14Dec2018-v185_190426_093607_0000_4_8a98bb471ac1ecd1ce74bc523342af3560a5fe8d742af49ac5c17cef.root': 201267L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_63_e361faf55306e322bdab8659cdafd3435aeafc1d7afc5d9603d4473b.root': 61267L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_1_23a41938be4b518ba7f87a924a0eb201e654219e2b0bb3eb0e78eb25.root': 80844L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_22_a8158f7dd556904cc5dc7eb5274afd4c136ad34d51a3836251165b17.root': 164556L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_8_e6f7e879cecbf76875c2c935a8264f4367aa97199d721d83a89ae2a7.root': 293827L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_36_6220e6104ef90ffd1ce3827b5d94172d6fb5289dc40fa2981240dfb4.root': 29542L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_33_495548d1b1fbc146bc5e5e28b547d8a54ae806d40ef008507ba825d0.root': 26811L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_40_516b2e22440fcc951a4bb6a31ad3fe578d98921a3150465a650869f3.root': 375142L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_4_a8340939465439c0a6b071d47bbf0c5f3f9335a71bca4e9185f24d2d.root': 283659L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016C-Nano14Dec2018-v182_190426_093356_0000_7_5941270fdf3e8577fc41339bc93e8d2dde6b1ef5ddedd045bc13c1e8.root': 92365L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016B_ver2-Nano14Dec2018_ve81_190426_093314_0000_24_e5514263103c9184df97ba1b08bc11c0f3c5414ebe1863cb5b2431d0.root': 16077L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_5_3ce60c69828c3c010b989fce960d0a2c56e20592c6700631d117c850.root': 286428L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_11_38eae038885d79b8faec7f5e795dfed741417fe1f305e9035e1f143e.root': 300521L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016D-Nano14Dec2018-v183_190426_093445_0000_13_cae5e20cdc29af56ad72c24305cc9676f336bc4f5418ffd9c161f93d.root': 101316L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016H-Nano14Dec2018-v187_190426_093739_0000_28_8a1667bc9e3ccfcfc96e0575f3b8891a5a6ec39b60496d230c7303b9.root': 341941L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016E-Nano14Dec2018-v184_190426_093526_0000_19_832cb604f6146902eaeff5faa8c06c00ddb61bec40fb519dd7e9a987.root': 157552L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DoubleEG/tree_Run2016G-Nano14Dec2018-v186_190426_093647_0000_6_a7eca85cc5beea26c005d69b3dc428d6ee21a8fab08a048ad59de6c1.root': 289112L}, 'QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_23_2f31e1da185cc69c5219917b67deba06c8c6d17ad53e51192c7f0288.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_32_2254eb1125b4698b4ffe6a1159aef93cc2b5b48a97ed694b67c96a43.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_13_dd0b920a533311e162483e388b1660c74b02d482381a44a275994b88.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_20_ef5a4f03650d75387025af0c3eaf909cfb8df223d2a7d361a7aa3975.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_14_2a4d626fa3f6ca47fc67852d08578281f2f5801cc908e64ca061d400.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_15_6ce14a3d3e2b5a221a92f9f99d1b61586f13281829473d557da8ea13.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_12_0f286fef695d8f3b424d9113bf016528a679b182cc3b07a65a797a60.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_31_d0023c6fdca27197dcd68a8324e34adee4c27079b186140380130058.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_19_bf0644f8636b399ad13fada6476f4e275af65365906b922939945bf8.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_9_168c86b90e1eed4f168bd199477e0310355b6dbc745523df66cca1a8.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_33_0244e8708aa25234242b3c23fb42a5a5ca570166e50dfa31c4d565ea.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_7_d596074ee238eee857328f336aef145d2079d6ac669f05bcf0848784.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_1_399b1ac2357478aeca326859a410911cb198c09e935890968161703b.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_4_1352d97436937a5be1eb8a54e27ea17e24ecac235fd0e8076c7f0b8d.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_3_b2fb0fbbb6d67a4d16027490f0bf98ea21d6bd552439758dbc125dc8.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_11_f2661bc4d1bbe96d10f99c847e42c2761e37348e33e4765c02796778.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_2_c756197a7e36255a92c22b9cd0f68dc077822af8875d411f5edada4a.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_16_e87bf763ba63f3817dfc84ba5e567178708926d248d6566fc039423e.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_4_267bae5f3d55c1250d3c9fa5b5febc6ad944d13a208ea99e8c65f63c.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_5_f5154dad0fdb8234be55d79d65bb9004077519c272c56bf5ccdcd661.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_27_6c18614b8dcebd0dba0ab4a5365aa6ee2e395722a28e9f1c5ef780d6.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_21_49b788fa3bece595ab957808dbfe21010aa5264b8dc627f0aeccf4c8.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_34_d2599d4f11a84c0ca6e4100c1723190da6f5e078d22d094eca415595.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_10_8eab575882f79486217c951958e89ddc285bc0ccca83158b4b1c2744.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_7_48902f084da259e72adac5079e9045e19a830ed20486293d294c8849.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_14_0412184d61b13da4d941e007454e851369b159f46b365a9d67af4329.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_8_f349bf044b69aafee33f883c39ea4de5cdf3ddcc107e217a2c58a37e.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_22_555873da715567c375e9cf559e5e8b7d10383f202d987b993f6ad070.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_5_07934e48339455675401414dd946ef1988639eb3e779ae3dc2287476.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_28_e2661ce0d50fc330f5ef2deab045d6c04771475e2b8286a263e8d2ce.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_15_708817bbaf52fdc9f1a06414e5445973642d39ec9316aa842e424082.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_2_575f59a47e2ab527af22ae7bad47c951f5852943a963621f71b359c5.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_3_da5ad961268d3ed283beb0b09982e770b4cdbdd169aafcd0e61fa297.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_8_1bad0970f625841609fbeb3a0578053eea08bf3a0c3ccf865af1bca1.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_13_d75e97f6f97f5f753bdd21c50439971acc67dba791caaed6639ba8ed.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_24_93af7e3086c3f71cae4c3b59e33f35012e379dd5cd19cf4efe9acdac.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_17_308b2e78d882c0ba66c21780e221a6a096182a244b5e352c26254708.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_6_fbce6e1d9725450a0615d4014ce5927eff387007eb38ecd268cf22cc.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_1_ecf8a65e1996e2b78401622ba2c2548b5ac78c50e89f6e81e10bd6a6.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_29_f7020c1b11a2cca43b9fa5a3385e5db814f83928974fc7b018c88861.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_12_fba3d26e155745a43664c73a79fddac84ecd6b1f3ba292c8cecb9eea.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_6_9c78f5611510faeadd79ba57202c64d91f58f1f4ba4482b28e5970fa.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_30_148d01f52bbe9e1bbdb98ddc8822b7ef2df8159c8e6ba227fd4c8237.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_11_b3d38c829a87c799cfc8b788468dadbfb1b14f4512d510913323d5ea.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_10_5c599e3cf965c665bf81a417bbcebf799e21a02b0eec89cd0ddf4f42.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_26_c3feb4f7ad1879c8159b2bbf3fa6792bff9b659dd29213588b47013d.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_25_6f7375c48487c777c40606090c5797dab0f74ab8dedd05feccee45e2.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_9_8defa3b14040a02a4f32bacb70bc6bfc42bb07701e982501cf88cbc6.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_18_3c16ad06a07c048f3e9ee932209af59f35f2413b4835aa5f1241f729.root': 1L}, 'ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_1_6072d9b3310dd162d3bf2193102ac55e3fe26dcc5fddac6fae505b12.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB85_190607_054014_0000_2_aa0d04e48bfecab14fcdf936f618d4156e9acdb74f5fcc2788fe3cef.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_6_98810079fa4184bd3705e9808665e067d67a751e2cc0a136657fe4cf.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_8_dec67224732adfaef38677c1f706d83f671737998cdc6bc6ce2bfd3b.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_10_14d62ceb70ac2e2f477d432bfc1427be7666957e3c8652a0d74b4c8b.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_3_617b0af74e607fe48f6e71d2728a3254c08097cfab47377eb0365f55.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_4_b27146bd949193254e69623c86763ef3be1ee615c0456ba8ab571e1f.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB86_190607_054105_0000_3_28108f6b0054346b60ac75a0bb858f27825e374fa137bc6370374681.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB86_190607_054105_0000_2_5ce035eef8b26f0b04c2cd9f842bfe1b44b6cc57bd1b659283b75415.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB85_190607_054014_0000_1_f26ebf1b022816fb88d0b43617f563bbd8d45d9e823be8a72f74b5ff.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_9_ddf7e09957ebca1333043315a2bcbe3975f45d03e58f00fc8ef9d3cd.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_5_822cfc677efa66bf4da276dfce50227a1db347a84b630d16d70da0ec.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_11_dbda9ce4d1748e47154aee8d1427e2a37367d887c483cf0b95f75495.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_2_c7c038e6257b73dbf757562356e1285b581e95e2345a73c804ab4979.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB86_190607_054105_0000_4_bccf5ce0dea01557faef3b5d936adfb6d2ba35ae129752e97678ab5b.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_7_402cfcb5a71af52447a01db08d51259eebf9acc047aa42a3aa7fa71c.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB86_190607_054105_0000_1_4866f39f3db45fd02d376ceaca16511a3ea3130025b5956c668236cc.root': 0L}, 'DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_200928_124738_0000_1_5c1799f8cc2ebda0c33d0b51ce680843dd4acaccb73c2503c13ddec9.root': 0}, 'DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio6_200928_124955_0000_4_1e7286b58d0f07608dc1cf0255e0e0ad8ff0cf069f2fbec94a1a4e36.root': 24095L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio5_200928_124923_0000_3_f6daa219dec2514971a24d4d01414c500ef47a680bbc87476fb02fe7.root': 840L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio6_200928_124955_0000_2_4dfc6ef8cb2f8796228efb9d6703706ae6fce77b6a3682ae6375d123.root': 11790L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio6_200928_124955_0000_3_8bc115058490be03ed62eb66e397117381567ec39efb1ea76902d362.root': 22186L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio6_200928_124955_0000_1_43987c1fbea455b05b10d8a507e34338efd6fedb2f1925d3faef35af.root': 10989L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio5_200928_124923_0000_2_61b7fa2fed2ce6e3a77017c958e0048b4b5244a02b8f04866b214ad4.root': 568L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio5_200928_124923_0000_1_69cae0d38fe5554f4ca176f597e57adbf3d89fceccd6106b3dbbebfb.root': 0}, 'WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211629_0000_10_9f5aa8889907f703d55b38239f56fb044555e3f09d41339a92ee17df.root': 17L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211712_0000_10_f93ba2e8e7906e1c2890088c6a1e623e37ef3be0a36a63c3ed054d1b.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211629_0000_5_cbd6257261700db7ca2b48b2db8d7780cbbc74a643a50d5f412d04fe.root': 49L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211629_0000_3_ea58719294b36cd1a91d0a92cdfafbb76a02526bf49b70e9559043a2.root': 26L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211629_0000_2_52fa09c7bd705ed48ea7dc133b4c129bc96f588d805b15b843be1048.root': 21L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211712_0000_2_47eb24d3fa6706bec57de391dc9d9a226d21a2465b140f098199abba.root': 9L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211629_0000_4_98ed2632f3cc580a11a0c24a38275c79ce0555c42bd99d985ac2b650.root': 36L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211712_0000_3_b3fd2371bafadc442754329f3d41c86b1c4615d69b83b79a5e02fcba.root': 17L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211629_0000_7_f0f32a699636e3cca3d999c8f2a80556b6d65d651ac74f56f54f0986.root': 71L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211712_0000_1_8ce2d0dc1b8c17e41545bd02312eb6a371063387c2d4d801487a38ed.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211629_0000_6_b69024b457e7d9dcdd371a8593e724ec1ab88e4b5db64a427500d19c.root': 50L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211629_0000_1_6b732c5cbd7cd31bdfa2a0862f742471b9838f5fc615f029df08ebb4.root': 21L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211629_0000_9_19bad066e1aade3f1b409422250ae840a03d8cd02487c9937f8e419c.root': 113L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211712_0000_11_0f6c8e17696a5283333b887610b3d8a68bac90850c694926f247f015.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211629_0000_8_6b6c6f5d9b19def36640496b6c831b2bc5f9d9ab18cfc5df998de0e1.root': 95L}} \ No newline at end of file diff --git a/python/Zll2016config/general.ini b/python/Zll2016config/general.ini index 421ed3c1d..5e0f3d9b6 100644 --- a/python/Zll2016config/general.ini +++ b/python/Zll2016config/general.ini @@ -15,18 +15,26 @@ submitScriptSpecialOptions = {'run': ' -l h_vmem=3g'} channel = Zll [Prep] -VHbb = ['VHbbCommon.Clean', 'VHbbCommon.METXY', 'Prep.Selection', 'VHbbCommon.isData', 'VHbbCommon.isSignal','VHbbCommon.isWH','VHbbCommon.isZH','VHbbCommon.HeppyStyleGen','VHbbCommon.genBstatus','VHbbCommon.SampleGroup'] -Selection = VHbbSelection.VHbbSelection(year="2016", channels=["Zll"], jetIdCut=2) +Step1 = ['VHbbCommon.Clean','VHbbCommon.JetSmearer','VHbbCommon.JECcorrelator','Prep.LeptonSelection'] +Step2 = ['VHbbCommon.METXY','Prep.Selection', 'VHbbCommon.isData', 'VHbbCommon.isSignal','VHbbCommon.isWH','VHbbCommon.isZH','VHbbCommon.HeppyStyleGen','VHbbCommon.genBstatus'] + +LeptonSelection = VHbbSelection.VHbbSelection(year="2016", channels=["Zll"], skipJetSelection=True, vpt0lep=130.0, vpt1lep=110.0, vpt2lep=75.0,jetIdCut=2) +Selection = VHbbSelection.VHbbSelection(year="2016", channels=["Zll"],jetIdCut=2) [Sys] useTreeFriends = False -#all = ['VHbbCommon.BTagSFDeepCSV','Sys.electronSFrun2','Sys.muonSF','Sys.Run2017BmuHLT','VHbbCommon.HiggsReco','VHbbCommon.vLeptons','VHbbCommon.EWKweights','VHbbCommon.DYspecialWeight', 'VHbbCommon.FitCorr', 'VHbbCommon.LOtoNLOweight','VHbbCommon.JetPUIDSF'] -all = ['VHbbCommon.BTagSFDeepCSV','Sys.electronSFrun2','VHbbCommon.HiggsReco','VHbbCommon.vLeptons','VHbbCommon.EWKweights','VHbbCommon.DYspecialWeight', 'VHbbCommon.FitCorr', 'VHbbCommon.LOtoNLOweight','VHbbCommon.JetPUIDSF'] +all = ['VHbbCommon.SampleGroup','VHbbCommon.BTagSFDeepCSV','Sys.electronSFrun2','Sys.muonSF','VHbbCommon.HiggsReco','VHbbCommon.vLeptons','VHbbCommon.EWKweights','VHbbCommon.DYspecialWeight', 'VHbbCommon.LOtoNLOweight','VHbbCommon.JetPUIDSF','VHbbCommon.DoubleBtagSF'] + +fix = ['VHbbCommon.HiggsReco'] + +newBranches = BranchTools.TreeFormulas({'dPhiVH': 'abs(TVector2::Phi_mpi_pi(V_phi-H_phi))'}) + +boostedFlags = ['VHbbCommon.isBoosted','VHbbCommon.isBoostedVZ'] # weights -muonSF = MuonSFfromJSON.MuonSFfromJSON(jsonFiles=['data/Zll/Muons/RunBCDEF_SF_ID.json','data/Zll/Muons/RunBCDEF_SF_ISO.json'], channel='Zll',year=2017) -electronSF = ElectronSFfromJSON.ElectronSFfromJSON(jsonFiles=['data/Zll/Electrons/VHbb2ElectronIDISO2017.json','data/Zll/Electrons/VHbb2ElectronTriggerLeg12017.json','data/Zll/Electrons/VHbb2ElectronTriggerLeg22017.json','data/Wlv/Electrons/ScaleFactor_etracker_80x.json'], branchName='electronSF', channel='Zll',year=2017) +muonSF = MuonSFfromJSON.MuonSFfromJSON(jsonFiles=['data/Run2MuonSF/MuID_BCDEF_2016.json','data/Run2MuonSF/MuID_GH_2016.json','data/Run2MuonSF/MuIso_BCDEF_2016.json','data/Run2MuonSF/MuIso_GH_2016.json','data/Run2MuonSF/Eff_Mu8LegBF_MC_2016.json','data/Run2MuonSF/Eff_Mu8LegGH_MC_2016.json','data/Run2MuonSF/Eff_Mu17LegBCDEF_MC_2016.json','data/Run2MuonSF/Eff_Mu17LegGH_MC_2016.json','data/Run2MuonSF/Eff_Mu8LegBF_DATA_2016.json','data/Run2MuonSF/Eff_Mu8LegGH_DATA_2016.json','data/Run2MuonSF/Eff_Mu17LegBCDEF_DATA_2016.json','data/Run2MuonSF/Eff_Mu17LegGH_DATA_2016.json'], branchName='muonSF',channel='Zll', year=2016) +#electronSF = ElectronSFfromJSON.ElectronSFfromJSON(jsonFiles=['data/Zll/Electrons/VHbb2ElectronIDISO2017.json','data/Zll/Electrons/VHbb2ElectronTriggerLeg12017.json','data/Zll/Electrons/VHbb2ElectronTriggerLeg22017.json','data/Wlv/Electrons/ScaleFactor_etracker_80x.json'], branchName='electronSF', channel='Zll',year=2017) electronSFrun2 = ElectronSFfromJSON.ElectronSFfromJSON(jsonFiles=['data/Run2ElectronSF/Trig2016passingDoubleEleLeg1.json','data/Run2ElectronSF/Trig2016passingDoubleEleLeg2.json','data/Run2ElectronSF/IDs2016passingMVA94Xwp90iso.json','data/Wlv/Electrons/ScaleFactor_etracker_80x.json'], branchName='electronSF', channel='Zll',year=2016) # PU weight is now already present! @@ -138,7 +146,7 @@ merge_jesTotal_Up = readKinFitFriendTree.readKinFitFriendTree(directory='++['Eval.weightAsBranch'] +all = ++['Eval.weightAsBranch']+ VV = ['Eval.VV_SR_low_Zll', 'Eval.VV_SR_medhigh_Zll'] VH = ['Eval.SR_low_Zll','Eval.SR_medhigh_Zll'] @@ -184,16 +192,15 @@ BDT_VZ_Zll_BOOSTFinal_wdB = tmvaEvaluator.tmvaEvaluator(mvaName='BDT_VZ_Zll_BOOS ;_*_*_*_ # double muon scale factors broken in 2017 -muonWeight = 1.0 -#muonWeight = muonSF_Iso[0]*muonSF_Id[0] -#electronWeight = electronSF_IdIso[0]*electronSF_trigger[0] +muonWeight = muonSF_Iso[0]*muonSF_Id[0]*muonSF_trigger[0] electronWeight = electronSF[0] leptonWeight = * doubleBtagWeight = (1.0+*(-1.0+bTagWeightDoubleB)) +#bTagWeight = (1.0+*(-1.0+bTagWeightDeepJet)) bTagWeight = (1.0+*(-1.0+bTagWeightDeepCSV)) puWeight = puWeight genWeight = genWeight -weightNLO = weightLOtoNLO +weightNLO = weightLOtoNLO_2016 #weightNLO = weightLOtoNLO_LHEVptV2 #weightNLO = weightLOtoNLO_LHEVptV2b #weightNLO = weightLOtoNLO_LHEVptV3 @@ -205,6 +212,7 @@ FitCorr = 1.0 weightJetPUID = weightJetPUID #weightJetPUID = 1.0 PrefireWeight = PrefireWeight +#PrefireWeight = 1.0 ; use the per sample defined special weight from config ;When True, uses special weight from samples_nosplit.ini @@ -217,14 +225,15 @@ stitchingWeights = !> additionalCorrection = 1.0 -weightF = ******* * * +weightF = ******* * * * + +weight_noPU = ****** * * * + +weight_noLepSF = /() +weight_noEWK = /() +weight_noNLO = /() +weight_noBTag = /() -weight_noPU: ****** * * * -weight_noLepSF: ****** * * * -weight_noEWK: ****** * * * -weight_noNLO: ****** * * * -weight_noBTag: ****** * * * -weight_noFitCorr: ****** * * * #----- jet PU ID -----# CMS_vhbb_jetPUID_UP = /*weightJetPUID_Up diff --git a/python/Zll2016config/hadd.ini b/python/Zll2016config/hadd.ini index 46aa8dc44..17bcd1a41 100644 --- a/python/Zll2016config/hadd.ini +++ b/python/Zll2016config/hadd.ini @@ -1,58 +1,71 @@ -# V11 +# V11 v2 [Hadd] -WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8: 1033 -ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1: 559 -ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 16000 -ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1: 519 -DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 -WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2298 -DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 -ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 9999 -ZZ_TuneCUETP8M1_13TeV-pythia8: 2 -DoubleMuon: 2 -WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8: 338 -DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2 -ZJetsToNuNu_HT-400To600_13TeV-madgraph: 9600 -ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1: 3 DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 -WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 417 +DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 -WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 580 -DoubleEG: 6 -ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8: 667 -QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 472000 +DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 -ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8: 1 -QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2431 -ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph: 8000 -ZJetsToNuNu_HT-200To400_13TeV-madgraph: 14080 -WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8: 917 -WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 424 -ZJetsToNuNu_HT-800To1200_13TeV-madgraph: 8000 -DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 -QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 3754 -QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2750 -TT_TuneCUETP8M2T4_13TeV-powheg-pythia8: 3 -DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 -QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 18286 -ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8: 1 -QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 6000 -ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1: 4 -WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 391 -WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 417 -ZJetsToNuNu_HT-1200To2500_13TeV-madgraph: 6858 -ZJetsToNuNu_HT-100To200_13TeV-madgraph: 30223 -WZ_TuneCUETP8M1_13TeV-pythia8: 4 +DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 4 +DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 7 +DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 4 +DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2 +DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2 +DoubleEG: 10 +DoubleMuon: 4 +QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 5153 +QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 9999 +QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2910 +QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 3745 +QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 156800 +QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 42667 +QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 10722 +QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 8320 +ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8: 1455 +ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1: 1224 +ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1: 1190 +ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1: 5 +ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1: 6 +TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8: 7 +WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 364 +WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 320 +WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1875 +WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 704 +WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 5243 +WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 458 +WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1439 +WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 450 +WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 821 +WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 512 +WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 37334 +WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 502 +WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 59734 +WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8: 1960 +WWTo2L2Nu_13TeV-powheg: 4 +WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8: 636 +WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8: 1 +WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8: 1778 +WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8: 1822 +ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 13715 +ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 9999 ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8: 1 -QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 41264 +ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8: 80000 ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 26667 -QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 7820 -WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8: 1011 -WW_TuneCUETP8M1_13TeV-pythia8: 27 -ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8: 48000 -ZJetsToNuNu_HT-600To800_13TeV-madgraph: 4800 -WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 842 -WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 26353 -DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 -ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8: 17000 +ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 16000 +ZJetsToNuNu_HT-100To200_13TeV-madgraph: 136000 +ZJetsToNuNu_HT-1200To2500_13TeV-madgraph: 6858 +ZJetsToNuNu_HT-200To400_13TeV-madgraph: 29334 +ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph: 8000 +ZJetsToNuNu_HT-400To600_13TeV-madgraph: 14770 +ZJetsToNuNu_HT-600To800_13TeV-madgraph: 9600 +ZJetsToNuNu_HT-800To1200_13TeV-madgraph: 9143 +ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8: 1 +ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8: 54000 +ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8: 1 +ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8: 54400 diff --git a/python/Zll2016config/hadd_V11.ini b/python/Zll2016config/hadd_V11.ini new file mode 100644 index 000000000..46aa8dc44 --- /dev/null +++ b/python/Zll2016config/hadd_V11.ini @@ -0,0 +1,58 @@ +# V11 +[Hadd] +WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8: 1033 +ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1: 559 +ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 16000 +ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1: 519 +DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2298 +DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 9999 +ZZ_TuneCUETP8M1_13TeV-pythia8: 2 +DoubleMuon: 2 +WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8: 338 +DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2 +ZJetsToNuNu_HT-400To600_13TeV-madgraph: 9600 +ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1: 3 +DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 417 +DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 580 +DoubleEG: 6 +ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8: 667 +QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 472000 +DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8: 1 +QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2431 +ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph: 8000 +ZJetsToNuNu_HT-200To400_13TeV-madgraph: 14080 +WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8: 917 +WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 424 +ZJetsToNuNu_HT-800To1200_13TeV-madgraph: 8000 +DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 3754 +QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2750 +TT_TuneCUETP8M2T4_13TeV-powheg-pythia8: 3 +DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 18286 +ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8: 1 +QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 6000 +ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1: 4 +WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 391 +WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 417 +ZJetsToNuNu_HT-1200To2500_13TeV-madgraph: 6858 +ZJetsToNuNu_HT-100To200_13TeV-madgraph: 30223 +WZ_TuneCUETP8M1_13TeV-pythia8: 4 +ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8: 1 +QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 41264 +ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 26667 +QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 7820 +WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8: 1011 +WW_TuneCUETP8M1_13TeV-pythia8: 27 +ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8: 48000 +ZJetsToNuNu_HT-600To800_13TeV-madgraph: 4800 +WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 842 +WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 26353 +DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8: 17000 diff --git a/python/Zll2016config/paths.ini b/python/Zll2016config/paths.ini index 8dfd868f1..2f77d092b 100644 --- a/python/Zll2016config/paths.ini +++ b/python/Zll2016config/paths.ini @@ -1,7 +1,7 @@ [Configuration] #!! List of the config you want to use #!! The list only support spaces between configs -List = paths.ini ../VHbb2016commonconfig/general.ini general.ini cuts.ini training.ini ../VHbb2016commonconfig/systematics.ini datacards.ini plots.ini lhe_weights.ini ../VHbb2016commonconfig/samples_mc.ini ../VHbb2016commonconfig/stxs.ini hadd.ini data.ini ../VHbb2016commonconfig/vhbbPlotDef.ini vhbbPlotDef.ini fit.ini volatile.ini +List = paths.ini ../VHbb2016commonconfig/general.ini general.ini cuts.ini training.ini ../VHbb2016commonconfig/systematics.ini datacards.ini plots.ini lhe_weights.ini ../VHbb2016commonconfig/samples_mc.ini ../VHbb2016commonconfig/stxs.ini hadd.ini data.ini ../VHbb2016commonconfig/vhbbPlotDef.ini vhbbPlotDef.ini fit.ini volatile.ini ../VHbb2016commonconfig/EventCounts2016V11.ini # general config #whereToLaunch = PSI @@ -23,46 +23,57 @@ scratch = /scratch// samplepath = # original samples -samplefiles = /src/Xbb/samples/VHbbPostNano2016_V11/merged_Zll2016/ -samplefiles_split = /src/Xbb/samples/VHbbPostNano2016_V11/ +samplefiles = /src/Xbb/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ +samplefiles_split = /src/Xbb/samples/VHbbPostNano2016_V11_v2/ ;!! from which samples to plot and where to save the plots -;plottingSamples: -;plottingSamples: -plottingSamples: +;plottingSamples: +#plottingSamples: root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zll/VHbbPostNano2016_V11/2020_06_08/eval-withMuonSF/ +plottingSamples: ;plottingSamples: ;plottingSamples: ;plottingSamples: ;plottingSamples: ;#!! cached files -tmpSamples = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2016_V11/2020_06_08/cache-dc/ +tmpSamples = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2016_V11/2021_03_19/cachedc-VZ-NoStitching/ +#tmpSamples = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2016_V11/2021_03_17/cacheplot/ +#tmpSamples = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2016_V11/2020_11_01/cacheplot-withdPhiVHCut-VZonly/ #!! from which samples to make the DCs and where to save the DCs -dcSamples = +dcSamples = # step 1) prep -PREPin = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2016_V11/2020_06_08/eval-withBDT/ -PREPout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2016_V11/2020_06_08/prep-csplitting/ +PREPin = root://eoscms.cern.ch/ +PREP1out = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/prep_step1/ + +PREP2in = +PREPout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2016_V11/2020_11_01/prep_step2/ # step 2) hadd HADDin = -HADDout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2016_V11/2020_06_08/hadd/ +HADDout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2016_V11/2020_11_01/hadd/ # step 3) add systematic variations and weights -SYSin = -SYSout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2016_V11/2020_06_08/sys/ +SYSin = +SYSout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2016_V11/2020_11_01/sys/ + +#FIXin = +#FIXout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2016_V11/2020_10_20/fix/ KINFITin = -KINFITout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2016_V11/2020_06_08/kinfit_temp_/ +KINFITout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2016_V11/2020_11_01/kinfit/ + +BOOSTin = +BOOSTout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2016_V11/2020_11_01/sys_boostedFlags/ -KINFITMERGEin = -KINFITMERGEbase = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2016_V11/2020_06_08/kinfit_temp -KINFITMERGEout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2016_V11/2020_06_08/kinfit/ +MVAin = +MVAout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2016_V11/2020_11_01/eval/ +#MVAout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2016_V11/2020_06_08/eval-withMuonSF/ -#MVAin: -#MVAin = -MVAin = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2016_V11/2020_06_08/eval/ -#MVAout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2016_V11/2020_06_08/eval-withBDT/ -MVAout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2016_V11/2020_06_08/prep-csplitting/ +BOOST2in = +BOOST2out = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2016_V11/2020_11_01/eval_boostedVZ/ +TESTout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2016_V11/2020_11_01/eval_withSTXSunc/ +FIXout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2016_V11/2020_11_01/eval_withdPhiH/ +BOOSTFIXout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2016_V11/2020_11_01/eval_boostedFlags_dPhiVH/ diff --git a/python/Zll2016config/plots.ini b/python/Zll2016config/plots.ini index 051be59b1..3f86e4ce5 100644 --- a/python/Zll2016config/plots.ini +++ b/python/Zll2016config/plots.ini @@ -59,15 +59,19 @@ typLegendDict = # ordering of sample groups in plots # ------------------------------------------------------------------------------------------------------------------------------------------------------ ;#!! Here the order and the groups that will go in the plots. -setup = ZH,WH,ggZH,QCD,VVLF,VVHF,ZJets_0b,ZJets_1b,ZJets_2b,WJets_0b,WJets_1b,WJets_2b,TT,ST +setup = ZH,WH,ggZH,QCD,VVLF,VVHF,ZJets_0b,ZJets_0b_udsg,ZJets_0b_c,ZJets_1b,ZJets_2b,WJets_0b,WJets_0b_udsg,WJets_0b_c,WJets_1b,WJets_2b,TT,ST setupLog = # ------------------------------------------------------------------------------------------------------------------------------------------------------ # plot regions # ------------------------------------------------------------------------------------------------------------------------------------------------------ ; !!! use --regions argument instead of modifying this list if possible !!! -#List = SR_medhigh_Zll,SR_low_Zll -List = SR_high_Zll_BOOST +List = +#List = Zhf_med_Zee,Zhf_high_Zee,Zlf_med_Zee,Zlf_high_Zee,Zhf_med_Zee,Zhf_high_Zmm,Zlf_med_Zmm,Zlf_high_Zmm +#List = , +#List = VV_SR_low_Zll,VV_SR_med_Zll,VV_SR_high_Zll,VV_SR_high1_Zll,VV_SR_high2_Zll,VV_SR_high_Zll_BOOST,VV_SR_high1_Zll_BOOST,VV_SR_high2_Zll_BOOST +#List = SR_low_Zll,SR_med_Zll_0j,SR_med_Zll_ge1j,SR_high_Zll +#List = Zlf_low_Zll,Zlf_low_Zee,Zlf_low_Zmm, Zhf_low_Zll,Zhf_low_Zee,Zhf_low_Zmm, ttbar_low_Zll,ttbar_low_Zee,ttbar_low_Zmm, SR_low_Zll, SR_low_Zee,SR_low_Zmm ListVHLegacy = ,,, ListCRLegacy = ,, ListVH = ttbar_medhigh_Zll,Zlf_medhigh_Zll,Zhf_medhigh_Zll,SR_medhigh_Zll,ttbar_low_Zll,Zlf_low_Zll,Zhf_low_Zll,SR_low_Zll,ttbar_medhigh_Zee,Zlf_medhigh_Zee,Zhf_medhigh_Zee,SR_medhigh_Zee,ttbar_low_Zee,Zlf_low_Zee,Zhf_low_Zee,SR_low_Zee,ttbar_medhigh_Zmm,Zlf_medhigh_Zmm,Zhf_medhigh_Zmm,SR_medhigh_Zmm,ttbar_low_Zmm,Zlf_low_Zmm,Zhf_low_Zmm,SR_low_Zmm @@ -83,12 +87,15 @@ ListZb = Zhf_low_Zll,Zhf_low_Zee,Zhf_low_Zmm,Zhf_med_Zll,Zhf_med_Zee,Zhf_m #ListZlight = Zlf_low_Zee,Zlf_low_Zmm,Zlf_med_Zee_0j,Zlf_med_Zmm_0j,Zlf_med_Zee_ge1j,Zlf_med_Zmm_ge1j,Zlf_high_Zee,Zlf_high_Zmm #ListZb = Zhf_low_Zee,Zhf_low_Zmm,Zhf_med_Zee_0j,Zhf_med_Zmm_0j,Zhf_med_Zee_ge1j,Zhf_med_Zmm_ge1j,Zhf_high_Zee,Zhf_high_Zmm ListSR = SR_low_Zee,SR_low_Zmm,SR_med_Zee_0j,SR_med_Zmm_0j,SR_med_Zee_ge1j,SR_med_Zmm_ge1j,SR_high_Zee,SR_high_Zmm +#ListDNN = SR_low_Zll,SR_medhigh_Zll,VV_SR_low_Zll,VV_SR_medhigh_Zll,SR_high_Zll,VV_SR_high_Zll +ListDNN = VV_SR_low_Zll,VV_SR_med_Zll,VV_SR_high_Zll,VV_SR_high1_Zll,VV_SR_high2_Zll,SR_low_Zll,SR_med_Zll,SR_high_Zll,SR_high1_Zll,SR_high2_Zll,SR_high_Zll_BOOST,SR_high1_Zll_BOOST,SR_high2_Zll_BOOST,VV_SR_high_Zll_BOOST,VV_SR_high1_Zll_BOOST,VV_SR_high2_Zll_BOOST # ------------------------------------------------------------------------------------------------------------------------------------------------------ # variables list # ------------------------------------------------------------------------------------------------------------------------------------------------------ vars_kinFit = kinFit_H_mass,kinFit_H_mass_fine,kinFit_H_pt,kinFit_H_eta,kinFit_H_phi,kinFit_V_pt,kinFit_V_eta,kinFit_V_phi,kinFit_V_mass,kinFit_n_recoil_jets_fit,kinFit_hj0_pt,kinFit_hj1_pt,kinFit_jjVPtRatio_fit -vars_DNN = DNNlow,DNNhigh +#vars_DNN = DNNlow,DNNhigh,VV_DNNlow,VV_DNNhigh,BDT,VV_BDT +vars_DNN = VV_DNNlow,VV_DNNhigh,VV_BDT vars_general = run,count,countNoWeight,countGenWeight,Vtype,parity,parityBDTDNN vars_generator = LHE_Nb,LHE_HT,LHE_Vpt,NGenJets20,BmesonFromPS,BbaryonFromPS,ZJphaseSpace,ZJphaseSpace2,genEtabb,genEtabbPtJ @@ -114,8 +121,10 @@ vars_full = ,,, +#var = FatJet_Pt,FatJet_mSD,DeepAK8_bbVSlight +#var = count,Hj0_DeepCSV,Hj1_DeepCSV,Hj0_pt_reg,Hj1_pt_reg,Hmass,Hpt,MET,METphi,DNNlow,DNNhigh,BDT,DeepAK8_bbVSlight,FatJet_mSD,FatJet_Pt,METphi_uncorrected +var = ,MET,METphi,count,FatJet_Pt,FatJet_mSD,DeepAK8_bbVSlight, +#var = #var = count #!!_*_*_*_*_*_ @@ -442,6 +451,33 @@ blind = False additionalText = + blindCuts = +[Plot:VV_SR_medhigh_Zll] +Datas = +Normalize = +vars = +log = True +blind = False +additionalText = "VZ " + + +blindCuts = + +[Plot:VV_SR_low_Zll] +Datas = +Normalize = +vars = +log = True +blind = False +additionalText = "VZ " + + +blindCuts = + +[Plot:VV_SR_high_Zll] +Datas = +Normalize = +vars = +log = True +blind = False +additionalText = "VZ " + + +blindCuts = + [Plot:SR_medhigh_Zee] Datas = Normalize = @@ -522,7 +558,7 @@ vars = log = True blind = False additionalText = + -blindCuts = +#blindCuts = [Plot:SR_high_Zee] Datas = diff --git a/python/Zll2016config/training.ini b/python/Zll2016config/training.ini index 9256546dc..b22bf54e2 100644 --- a/python/Zll2016config/training.ini +++ b/python/Zll2016config/training.ini @@ -13,9 +13,9 @@ factoryname = MVA factorysettings = !V:Color:!DrawProgressBar:AnalysisType=Classification:Transformations=I [MVALists] -List_for_submitscript = +List_for_submitscript = -List = SR_low_Zll,SR_medhigh_Zll +List = SR_low_Zll,SR_medhigh_Zll,VV_SR_low_Zll,VV_SR_medhigh_Zll List_VZ = VV_SR_low_Zll,VV_SR_medhigh_Zll List_Multi = Multi_medhigh_Zll,Multi_low_Zll List_Boosted = BDT_Zll_BOOSTFinal_wdB @@ -28,9 +28,12 @@ backgrounds = [] treeVarSet = ZllBDTVars__WP treeCut = SR_low_Zll branchName = DNN_low_ -checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/tfZllDNN/Zll2016_SR_low_Zll_200622_V11-Dec9.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/1.000e-01/rnd_466066/checkpoints/model.ckpt -bins = [0.0000, 0.0399, 0.1003, 0.1772, 0.2616, 0.3557, 0.4463, 0.5329, 0.6298, 0.7107, 0.7838, 0.8419, 0.8861, 0.9279, 0.9647, 1.0000] +checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/final_results/Zll2016_SR_low_Zll_201109_V11-Dec9.h5/Zll2016_SR_low_Zll_201109_V11-Dec9.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/1.000e-01/rnd_332064/checkpoints/model.ckpt +#bins = [0.0000, 0.0399, 0.1003, 0.1772, 0.2616, 0.3557, 0.4463, 0.5329, 0.6298, 0.7107, 0.7838, 0.8419, 0.8861, 0.9279, 0.9647, 1.0000] +#bins = [0.00000, 0.27174, 0.39089, 0.47454, 0.54089, 0.60279, 0.65964, 0.70821, 0.75277, 0.79255, 0.82848, 0.86208, 0.89393, 0.92437, 0.95359, 1.00001] signalIndex = 0 +bins = [] + [SR_med_Zll] signals = [] @@ -58,9 +61,11 @@ backgrounds = [] treeVarSet = ZllBDTVars__WP treeCut = SR_medhigh_Zll branchName = DNN_medhigh_ -;checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/tfZllDNN/Zll2016_SR_medhigh_Zll_200622_V11-Dec9.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/1.000e+00/rnd_466067/checkpoints/model.ckpt -bins = [0.0000, 0.0474, 0.1117, 0.1775, 0.2545, 0.3681, 0.5183, 0.7042, 0.8614, 0.9400, 0.9698, 0.9902, 0.9953, 0.9983, 1.0000] +checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/final_results/Zll2016_SR_medhigh_Zll_201109_V11-Dec9.h5/Zll2016_SR_medhigh_Zll_201109_V11-Dec9.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/1.000e+00/rnd_332032/checkpoints/model.ckpt +#bins = [0.0000, 0.0474, 0.1117, 0.1775, 0.2545, 0.3681, 0.5183, 0.7042, 0.8614, 0.9400, 0.9698, 0.9902, 0.9953, 0.9983, 1.0000] +#bins = [0.00000, 0.26008, 0.39695, 0.52291, 0.64898, 0.75612, 0.83798, 0.89533, 0.93295, 0.95836, 0.97522, 0.98561, 0.99210, 0.99603, 0.99833, 1.00001] signalIndex = 0 +bins = [] [SR_lowmedhigh_Zll] signals = [] @@ -76,20 +81,23 @@ signals = [] backgrounds = [] treeVarSet = ZllBDTVars__WP treeCut = VV_SR_low_Zll -branchName = DNN_191023_VHLegacyDNN2017V11_Zll_VV_SR_low_Zll -checkpoint = DNN/191023_VHLegacyDNN2017V11_Zll_VV_SR_low_Zll -bins = [0.0000, 0.0123, 0.0600, 0.1202, 0.2037, 0.3169, 0.4379, 0.5424, 0.6498, 0.7432, 0.8103, 0.8568, 0.8910, 0.9194, 0.9447, 1.0001] +branchName = VV_DNN_low_ +checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/final_results/Zll2016_VV_SR_low_Zll_201109_V11-Dec9.h5/Zll2016_VV_SR_low_Zll_201109_V11-Dec9.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/1.000e-01/rnd_332182/checkpoints/model.ckpt +#bins = [0.0000, 0.0123, 0.0600, 0.1202, 0.2037, 0.3169, 0.4379, 0.5424, 0.6498, 0.7432, 0.8103, 0.8568, 0.8910, 0.9194, 0.9447, 1.0001] signalIndex = 0 +bins = [] [VV_SR_medhigh_Zll] signals = [] backgrounds = [] treeVarSet = ZllBDTVars__WP treeCut = VV_SR_medhigh_Zll -branchName = DNN_191023_VHLegacyDNN2017V11_Zll_VV_SR_medhigh_Zll -checkpoint = DNN/191023_VHLegacyDNN2017V11_Zll_VV_SR_medhigh_Zll -bins = [0.0000, 0.0084, 0.0311, 0.0802, 0.1629, 0.2842, 0.4221, 0.5469, 0.6638, 0.7542, 0.8218, 0.8741, 0.9098, 0.9384, 0.9598, 1.0001] +branchName = VV_DNN_medhigh_ +checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/final_results/Zll2016_VV_SR_medhigh_Zll_201109_V11-Dec9.h5/Zll2016_VV_SR_medhigh_Zll_201109_V11-Dec9.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/1.000e+00/rnd_332159/checkpoints/model.ckpt +#bins = [0.0000, 0.0084, 0.0311, 0.0802, 0.1629, 0.2842, 0.4221, 0.5469, 0.6638, 0.7542, 0.8218, 0.8741, 0.9098, 0.9384, 0.9598, 1.0001] signalIndex = 0 +bins = [] + [VV_SR_lowmedhigh_Zll] signals = [] @@ -181,7 +189,7 @@ Nominal = H_mass H_pt abs(VHbb::deltaPhi(H_phi,V_phi)) Jet_btagDeepB[hJidx[0]] J [ZllBDTBOOSTVarsFinal_wdB] #Nominal = FatJet_Msoftdrop[Hbb_fjidx] FatJet_Pt[Hbb_fjidx] MET_Pt V_mt SA5 FatJet_Pt[Hbb_fjidx]/V_pt (FatJet_deepTagMD_bbvsLight[Hbb_fjidx])>0.97 -99+(hJidx[0]>-1)*(+99+H_mass) -Nominal = FatJet_Msoftdrop[Hbb_fjidx] FatJet_Pt[Hbb_fjidx] SA5 FatJet_Pt[Hbb_fjidx]/V_pt (FatJet_deepTagMD_bbvsLight[Hbb_fjidx])>0.97 (-99+(hJidx[0]>-1)*(99+kinFit_H_mass_fit)) (-99+(hJidx[0]>-1)*(99+H_mass)) (-99+(hJidx[0]>-1)*(99+kinFit_H_pt_fit)) (-99+(hJidx[0]>-1)*(99+H_pt)) (-99+(hJidx[0]>-1)*(99+kinFit_V_pt_fit)) (-99+(hJidx[0]>-1)*(99+V_pt)) (-99+(hJidx[0]>-1)*(99+MET_Pt)) (-99+(hJidx[0]>-1)*(99+hJets_FSRrecovered_dEta)) (-99+(hJidx[0]>-1)*(99+kinFit_jjVPtRatio_fit)) (-99+(hJidx[0]>-1)*(99+V_mass)) (-99+(hJidx[0]>-1)*(99+kinFit_HVdPhi_fit)) (-99+(hJidx[0]>-1)*(99+kinFit_HVdPhi_fit)) (-99+(hJidx[0]>-1)*(99+max(kinFit_hJets_pt_0_fit,kinFit_hJets_pt_1_fit))) (-99+(hJidx[0]>-1)*(99+max(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered))) (-99+(hJidx[0]>-1)*(99+min(kinFit_hJets_pt_0_fit,kinFit_hJets_pt_1_fit))) (-99+(hJidx[0]>-1)*(99+min(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered))) (-99+(hJidx[0]>-1)*(99+Sum$(Jet_Pt>30&&abs(Jet_eta)<2.4&&(Jet_puId>6||Jet_Pt>50)&&Jet_jetId>2&&Jet_lepFilter>0&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]))) (-99+(hJidx[0]>-1)*(99+VHbb::deltaR(kinFit_H_eta_fit,kinFit_H_phi_fit,kinFit_V_eta_fit,kinFit_V_phi_fit))) (-99+(hJidx[0]>-1)*(99+VHbb::deltaR(H_eta,H_phi,V_eta,V_phi))) (-99+(hJidx[0]>-1)*(99+TMath::Sqrt(hJets_FSRrecovered_dEta*hJets_FSRrecovered_dEta+hJets_FSRrecovered_dPhi*hJets_FSRrecovered_dPhi))) (-99+(hJidx[0]>-1)*(99+kinFit_H_mass_sigma_fit)) (-99+(hJidx[0]>-1)*(99+kinFit_n_recoil_jets_fit)) (-99+(hJidx[0]>-1)*(99+H_pt/V_pt)) (-99+(hJidx[0]>-1)*(99+kinFit_V_mass_fit)) (-99+(hJidx[0]>-1)*(99+abs(VHbb::deltaPhi(H_phi,V_phi)))) +Nominal = FatJet_Msoftdrop[Hbb_fjidx] FatJet_Pt[Hbb_fjidx] SA5 FatJet_Pt[Hbb_fjidx]/V_pt (FatJet_deepTagMD_bbvsLight[Hbb_fjidx])>0.97 (-99+(hJidx[0]>-1)*(99+kinFit_H_mass_fit)) (-99+(hJidx[0]>-1)*(99+H_mass)) (-99+(hJidx[0]>-1)*(99+kinFit_H_pt_fit)) (-99+(hJidx[0]>-1)*(99+H_pt)) (-99+(hJidx[0]>-1)*(99+kinFit_V_pt_fit)) (-99+(hJidx[0]>-1)*(99+V_pt)) (-99+(hJidx[0]>-1)*(99+MET_Pt)) (-99+(hJidx[0]>-1)*(99+hJets_FSRrecovered_dEta)) (-99+(hJidx[0]>-1)*(99+kinFit_jjVPtRatio_fit)) (-99+(hJidx[0]>-1)*(99+V_mass)) (-99+(hJidx[0]>-1)*(99+kinFit_V_mass_fit)) (-99+(hJidx[0]>-1)*(99+kinFit_HVdPhi_fit)) (-99+(hJidx[0]>-1)*(99+abs(VHbb::deltaPhi(H_phi,V_phi)))) (-99+(hJidx[0]>-1)*(99+max(kinFit_hJets_pt_0_fit,kinFit_hJets_pt_1_fit))) (-99+(hJidx[0]>-1)*(99+max(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered))) (-99+(hJidx[0]>-1)*(99+min(kinFit_hJets_pt_0_fit,kinFit_hJets_pt_1_fit))) (-99+(hJidx[0]>-1)*(99+min(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered))) (-99+(hJidx[0]>-1)*(99+Sum$(Jet_Pt>30&&abs(Jet_eta)<2.4&&(Jet_puId>6||Jet_Pt>50)&&Jet_jetId>2&&Jet_lepFilter>0&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]))) (-99+(hJidx[0]>-1)*(99+VHbb::deltaR(kinFit_H_eta_fit,kinFit_H_phi_fit,kinFit_V_eta_fit,kinFit_V_phi_fit))) (-99+(hJidx[0]>-1)*(99+VHbb::deltaR(H_eta,H_phi,V_eta,V_phi))) (-99+(hJidx[0]>-1)*(99+TMath::Sqrt(hJets_FSRrecovered_dEta*hJets_FSRrecovered_dEta+hJets_FSRrecovered_dPhi*hJets_FSRrecovered_dPhi))) (-99+(hJidx[0]>-1)*(99+kinFit_H_mass_sigma_fit)) (-99+(hJidx[0]>-1)*(99+kinFit_n_recoil_jets_fit)) (-99+(hJidx[0]>-1)*(99+H_pt/V_pt)) [VZ_ZllBDTBOOSTVarsFinal_wdB] Nominal = FatJet_Msoftdrop[Hbb_fjidx] FatJet_Pt[Hbb_fjidx] SA5 FatJet_Pt[Hbb_fjidx]/V_pt (FatJet_deepTagMD_bbvsLight[Hbb_fjidx])>0.97 abs(TVector2::Phi_mpi_pi(V_phi-FatJet_phi[Hbb_fjidx])) (-99+(hJidx[0]>-1)*(99+H_mass)) (-99+Alt$((hJidx[0]>-1)*(99+H_pt),0)) (-99+Alt$((hJidx[0]>-1)*(99+V_pt/H_pt),0)) (-99+Alt$((hJidx[0]>-1)*(99+abs(TVector2::Phi_mpi_pi(V_phi-H_phi))),0)) (-99+Alt$((hJidx[0]>-1)*(99+max(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered)),0)) (-99+Alt$((hJidx[0]>-1)*(99+min(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered)),0)) (-99+Alt$((hJidx[0]>-1)*(99+hJets_FSRrecovered_dEta),0)) (-99+Alt$((hJidx[0]>-1)*(99+Sum$(Jet_Pt>30&&abs(Jet_eta)<2.5&&(Jet_puId>6||Jet_Pt>50.0)&&Jet_jetId>2&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1])),0)) @@ -194,12 +202,12 @@ MVAtype = MVAsettings = NTrees=100:nCuts=20 signals = [] backgrounds = [] -#signals = [] -#backgrounds = [] treeVarSet = ZllBDTBOOSTVarsFinal_wdB treeCut = Signal_BOOSTv3 systematics = -bins = [-1.00000, -0.13973, -0.05733, 0.01173, 0.07067, 0.12147, 0.16627, 0.21253, 0.25093, 0.29187, 0.33173, 0.37240, 0.41587, 0.46360, 0.52973, 1.00000] +#bins = [-1.00000, -0.13973, -0.05733, 0.01173, 0.07067, 0.12147, 0.16627, 0.21253, 0.25093, 0.29187, 0.33173, 0.37240, 0.41587, 0.46360, 0.52973, 1.00000] +bins = [-1.00000, -0.08898, 0.03444, 0.14974, 0.29900, 1.00001] +#bins = [] [BDT_VZ_Zll_BOOSTFinal_wdB_2016] MVAtype = @@ -209,3 +217,4 @@ backgrounds = [] treeVarSet = VZ_ZllBDTBOOSTVarsFinal_wdB treeCut = VZ_Signal_BOOSTv3 systematics = +bins = [] diff --git a/python/Zll2016config/vhbbPlotDef.ini b/python/Zll2016config/vhbbPlotDef.ini index b25dedfdb..28b4d0203 100644 --- a/python/Zll2016config/vhbbPlotDef.ini +++ b/python/Zll2016config/vhbbPlotDef.ini @@ -15,21 +15,45 @@ visualizeBlindCutThreshold = 0.6 [plotDef:DNNlow] relPath = .Nominal xAxis = DNN (low pt) -nBins = 15 +#nBins = 15 min = 0.0 max = 1.0 -binList = +#binList = plotEqualSize = True +rebinMethod = flats(5,15) visualizeBlindCutThreshold = 0.6 [plotDef:DNNhigh] relPath = .Nominal xAxis = DNN (high pt) -nBins = 15 +#nBins = 15 +min = 0.0 +max = 1.0 +#binList = +plotEqualSize = True +rebinMethod = flats(5,15) +visualizeBlindCutThreshold = 0.6 + +[plotDef:VV_DNNlow] +relPath = .Nominal +xAxis = VZ DNN (low pt) +#nBins = 15 +min = 0.0 +max = 1.0 +#binList = +plotEqualSize = True +rebinMethod = flats(5,15) +visualizeBlindCutThreshold = 0.6 + +[plotDef:VV_DNNhigh] +relPath = .Nominal +xAxis = VZ DNN (high pt) +#nBins = 15 min = 0.0 max = 1.0 -binList = +#binList = plotEqualSize = True +rebinMethod = flats(5,15) visualizeBlindCutThreshold = 0.6 [plotDef:multiDNNhigh] @@ -424,10 +448,16 @@ relPath = BDT_Zll_BOOSTFinal_wdB_2016.Nominal xAxis = boosted BDT min = -1 max = 1 -#nBins = 15000 -binList = [-1.00000, -0.13973, -0.05733, 0.01173, 0.07067, 0.12147, 0.16627, 0.21253, 0.25093, 0.29187, 0.33173, 0.37240, 0.41587, 0.46360, 0.52973, 1.00000] plotEqualSize = True -#rebinMethod = flatsignal +rebinMethod = flats(5,15) + +[plotDef:VV_BDT] +relPath = BDT_VZ_Zll_BOOSTFinal_wdB_2016.Nominal +xAxis = boosted VZ BDT +min = -1 +max = 1 +plotEqualSize = True +rebinMethod = flats(5,15) diff --git a/python/Zll2017config/SRbinning_MVA_Zll.txt b/python/Zll2017config/SRbinning_MVA_Zll.txt new file mode 100644 index 000000000..a41e2d13d --- /dev/null +++ b/python/Zll2017config/SRbinning_MVA_Zll.txt @@ -0,0 +1,29 @@ +[dc:SR_low_Zmm] +rebin_list=[0.00000, 0.25600, 0.36331, 0.44687, 0.51465, 0.57612, 0.63405, 0.68694, 0.73438, 0.77538, 0.81345, 0.84721, 0.87924, 0.90859, 0.93770, 1.00001] + +[dc:SR_low_Zee] +rebin_list=[0.00000, 0.26869, 0.37354, 0.45657, 0.52382, 0.58637, 0.64127, 0.69293, 0.73836, 0.77850, 0.81581, 0.84980, 0.88107, 0.90943, 0.93845, 1.00001] + +[dc:SR_med_Zmm_0j] +rebin_list=[0.00000, 0.36158, 0.50394, 0.60639, 0.69982, 0.77261, 0.83092, 0.87088, 0.90450, 0.93201, 0.95809, 1.00001] + +[dc:SR_med_Zee_0j] +rebin_list=[0.00000, 0.42691, 0.58459, 0.70991, 0.80652, 0.86902, 0.91615, 0.95157, 1.00001] + +[dc:SR_med_Zmm_ge1j] +rebin_list=[0.00000, 0.33313, 0.50006, 0.63854, 0.77522, 0.88704, 1.00001] + +[dc:SR_med_Zee_ge1j] +rebin_list=[0.00000, 0.36893, 0.55578, 0.72884, 0.86970, 1.00001] + +[dc:SR_high1_Zmm] +rebin_list=[0.00000, 0.55095, 0.80100, 0.91264, 0.96489, 1.00001] + +[dc:SR_high1_Zee] +rebin_list=[0.00000, 0.56731, 0.81300, 0.92465, 0.97008, 1.00001] + +[dc:SR_high2_Zmm] +rebin_list=[0.00000, 0.62070, 0.85893, 0.94968, 0.98302, 1.00001] + +[dc:SR_high2_Zee] +rebin_list=[0.00000, 0.61353, 0.92049, 0.97566, 0.99331, 1.00001] diff --git a/python/Zll2017config/cuts.ini b/python/Zll2017config/cuts.ini index df8f239c0..c3197f36e 100644 --- a/python/Zll2017config/cuts.ini +++ b/python/Zll2017config/cuts.ini @@ -44,7 +44,7 @@ BasicCuts = (H_mass>50) # those definitions don't contain cuts on Vpt and nJet bin and resolved/boosted jets ttbar_base = ( && V_mass > 10 && (V_mass < 75 || V_mass > 120) && [] > && [] > && H_mass < 250) #ttbar_base = ( && V_mass > 10 && (V_mass < 75 || V_mass > 120) && [] > && [] > ) -Zlf_base = ( && V_mass > 75. && V_mass < 105. && [] < && [] < && VHbb::deltaPhi(_phi, V_phi) > 2.5 && (_mass > 90 && _mass < 150)) +Zlf_base = ( && V_mass > 75. && V_mass < 105. && [] < && [] < && abs(VHbb::deltaPhi(_phi, V_phi)) > 2.5 && (_mass > 90 && _mass < 150)) #original #Zhf_base = ( && abs(TVector2::Phi_mpi_pi(_phi-V_phi)) > 2.5 && V_mass > 85. && V_mass < 97. && MET_Pt < 60 && [] > && [] > ) @@ -56,11 +56,13 @@ Zlf_base = ( && V_mass > 75. && V_mass < 105. && && V_mass > 75 && V_mass < 105 && [] > && [] > && abs(dPhiVH)>2.5 && H_mass < 250) # no MET cut -Zhf_base = ( && V_mass > 85. && V_mass < 97. && [] > && [] > && VHbb::deltaPhi(_phi, V_phi) > 2.5 && H_mass < 250) +Zhf_base = ( && V_mass > 85. && V_mass < 97. && [] > && [] > && abs(VHbb::deltaPhi(_phi, V_phi)) > 2.5 && H_mass < 250) +#Zhf_base = ( && V_mass > 85. && V_mass < 97. && [] > && [] > && abs(VHbb::deltaPhi(_phi, V_phi)) > 2.5 && H_mass < 250) -SR_base = ( && V_mass > 75 && V_mass < 105 && [] > && [] > && VHbb::deltaPhi(_phi, V_phi) > 2.5 && H_mass < 250) +SR_base = ( && V_mass > 75 && V_mass < 105 && [] > && [] > && abs(VHbb::deltaPhi(_phi, V_phi)) > 2.5 && H_mass < 250) +#SR_base = ( && V_mass > 75 && V_mass < 105 && [] > && [] > && abs(VHbb::deltaPhi(_phi, V_phi)) > 2.5 && H_mass < 250) #added cut on SR dPhi>2.5 following Chris and Krunal investigations (Dec 15, 2020) @@ -147,6 +149,9 @@ SR_med_Zll = && && SR_med_Zll_0j = && && && SR_med_Zll_ge1j = && && && SR_high_Zll = && && +SR_high1_Zll = && && +SR_high2_Zll = && && + ; e/u low/high pt (fit) SR_low_Zmm = && && @@ -213,6 +218,8 @@ VV_ttbar_high_Zmm = && && ttbar_high_Zee = && && VV_ttbar_high_Zee = && && +ttbar_lowmedhigh_Zmm = && && +ttbar_lowmedhigh_Zee = && && Zhf_lowmedhigh_Zmm = && && Zhf_lowmedhigh_Zee = && && @@ -237,10 +244,12 @@ ttbar_medhigh_Zmm = && && ; for inclusive DNN trainings SR_lowmedhigh_Zll = && && SR_lowmedhigh_Zmm = && && +SR_lowmedhigh_Zee = && && VV_SR_lowmedhigh_Zll = && && Zlf_lowmedhigh_Zll = && && Zlf_lowmedhigh_Zmm = && && +Zlf_lowmedhigh_Zee = && && ; VZ analysis VV_Zhf_low_Zmm = && && @@ -465,8 +474,6 @@ SR_high_Zmm_BOOST = && SR_high1_Zmm_BOOST = && SR_high2_Zmm_BOOST = && - - ttbar_high_Zee_BOOST = && VV_ttbar_high_Zee_BOOST = && ttbar_high_Zmm_BOOST = && @@ -487,6 +494,8 @@ SR_high_Zll_BOOST = ttbar_high_Zll_BOOST = Zlf_high_Zll_BOOST = Zhf_high_Zll_BOOST = +SR_high1_Zll_BOOST = +SR_high2_Zll_BOOST = [mjjAnalysis] diff --git a/python/Zll2017config/datacards.ini b/python/Zll2017config/datacards.ini index 77fdd4da6..389e78f1a 100644 --- a/python/Zll2017config/datacards.ini +++ b/python/Zll2017config/datacards.ini @@ -95,42 +95,42 @@ weightF_sys = [ ; 'TEST_vhbb_BtagMjj_TM_120_130', ; 'TEST_vhbb_BtagMjj_TM_130_140', ; 'TEST_vhbb_BtagMjj_TM_140_150', - 'CMS_vhbb_VjetsStitching100_2017_13TeV', - 'CMS_vhbb_VjetsBenriched_DYBJets_2017_13TeV', - 'CMS_vhbb_VjetsBenriched_DYJetsBGenFilter_2017_13TeV', - 'CMS_vhbb_VjetsBenriched_DYBJets_RW_2017_13TeV', - 'CMS_vhbb_VjetsBenriched_DYJetsBGenFilter_RW_2017_13TeV', - 'CMS_vhbb_Vjets_DYBJets_RW_2017_13TeV', - 'CMS_vhbb_Vjets_DYJetsBGenFilter_RW_2017_13TeV', - 'CMS_vhbb_Vjets_minJetPt', +; 'CMS_vhbb_VjetsStitching100_2017_13TeV', +; 'CMS_vhbb_VjetsBenriched_DYBJets_2017_13TeV', +; 'CMS_vhbb_VjetsBenriched_DYJetsBGenFilter_2017_13TeV', +; 'CMS_vhbb_VjetsBenriched_DYBJets_RW_2017_13TeV', +; 'CMS_vhbb_VjetsBenriched_DYJetsBGenFilter_RW_2017_13TeV', +; 'CMS_vhbb_Vjets_DYBJets_RW_2017_13TeV', +; 'CMS_vhbb_Vjets_DYJetsBGenFilter_RW_2017_13TeV', +; 'CMS_vhbb_Vjets_minJetPt', 'CMS_vhbb_Vpt150_13TeV', 'CMS_vhbb_Vpt250_13TeV', - 'CMS_vhbb_DeepCSV_TT', - 'CMS_vhbb_DeepCSV_TM', - 'CMS_vhbb_DeepCSV_TL', - 'CMS_vhbb_DeepCSV_MM', - 'CMS_vhbb_DeepCSV_ML', - 'CMS_vhbb_DeepCSV_LL', +; 'CMS_vhbb_DeepCSV_TT', +; 'CMS_vhbb_DeepCSV_TM', +; 'CMS_vhbb_DeepCSV_TL', +; 'CMS_vhbb_DeepCSV_MM', +; 'CMS_vhbb_DeepCSV_ML', +; 'CMS_vhbb_DeepCSV_LL', ; LO to NLO weight ; 'CMS_vhbb_DY_NLO_weight', -; 'CMS_vhbb_vjetnlodetajjrw_13TeV', + 'CMS_vhbb_vjetnlodetajjrw_13TeV', ; 2017 version - 'CMS_vhbb_vjetnlovptrw_13TeV', - 'CMS_vhbb_vjetnlovptrw_ZJets0_13TeV', - 'CMS_vhbb_vjetnlovptrw_ZJets1_13TeV', - 'CMS_vhbb_vjetnlovptrw_ZJets2_13TeV', - 'CMS_vhbb_vjetnlovptrw_WJets0_13TeV', - 'CMS_vhbb_vjetnlovptrw_WJets1_13TeV', - 'CMS_vhbb_vjetnlovptrw_WJets2_13TeV', - 'CMS_vhbb_vjetnlovptrw_DYJets0_13TeV', - 'CMS_vhbb_vjetnlovptrw_DYJets1_13TeV', - 'CMS_vhbb_vjetnlovptrw_DYJets2_13TeV', - 'CMS_vhbb_vjetnlovptrw_ZBJets1_13TeV', - 'CMS_vhbb_vjetnlovptrw_ZBJets2_13TeV', - 'CMS_vhbb_vjetnlovptrw_WBJets1_13TeV', - 'CMS_vhbb_vjetnlovptrw_WBJets2_13TeV', - 'CMS_vhbb_vjetnlovptrw_DYBJets1_13TeV', - 'CMS_vhbb_vjetnlovptrw_DYBJets2_13TeV', +; 'CMS_vhbb_vjetnlovptrw_13TeV', +; 'CMS_vhbb_vjetnlovptrw_ZJets0_13TeV', +; 'CMS_vhbb_vjetnlovptrw_ZJets1_13TeV', +; 'CMS_vhbb_vjetnlovptrw_ZJets2_13TeV', +; 'CMS_vhbb_vjetnlovptrw_WJets0_13TeV', +; 'CMS_vhbb_vjetnlovptrw_WJets1_13TeV', +; 'CMS_vhbb_vjetnlovptrw_WJets2_13TeV', +; 'CMS_vhbb_vjetnlovptrw_DYJets0_13TeV', +; 'CMS_vhbb_vjetnlovptrw_DYJets1_13TeV', +; 'CMS_vhbb_vjetnlovptrw_DYJets2_13TeV', +; 'CMS_vhbb_vjetnlovptrw_ZBJets1_13TeV', +; 'CMS_vhbb_vjetnlovptrw_ZBJets2_13TeV', +; 'CMS_vhbb_vjetnlovptrw_WBJets1_13TeV', +; 'CMS_vhbb_vjetnlovptrw_WBJets2_13TeV', +; 'CMS_vhbb_vjetnlovptrw_DYBJets1_13TeV', +; 'CMS_vhbb_vjetnlovptrw_DYBJets2_13TeV', ; 'CMS_vhbb_vjetnlovptrw_p0_13TeV', ; 'CMS_vhbb_vjetnlovptrw_p1_13TeV', ; 'CMS_vhbb_vjetnlovptrw_naddjet0_p0_13TeV', @@ -383,22 +383,24 @@ systematicsnaming = removeWeightSystematics = {} +;List = List = -;List = ;List = ;List = ;List = ;List = , ;List = -ListVHLegacy = SR_low_Zmm,SR_low_Zee,SR_med_Zmm_0j,SR_med_Zee_0j,SR_med_Zmm_ge1j,SR_med_Zee_ge1j,SR_high1_Zmm,SR_high2_Zmm,SR_high1_Zee,SR_high2_Zee,Zlf_low_Zmm,Zlf_low_Zee,Zlf_med_Zmm,Zlf_med_Zee,Zlf_high_Zmm,Zlf_high_Zee,Zhf_low_Zmm,Zhf_low_Zee,Zhf_med_Zmm,Zhf_med_Zee,Zhf_high_Zmm,Zhf_high_Zee,ttbar_low_Zmm,ttbar_low_Zee,ttbar_med_Zmm,ttbar_med_Zee,ttbar_high_Zmm,ttbar_high_Zee,SR_high1_Zee_BOOST,SR_high2_Zee_BOOST,SR_high1_Zmm_BOOST,SR_high2_Zmm_BOOST,Zlf_high_Zee_BOOST,Zlf_high_Zmm_BOOST,Zhf_high_Zmm_BOOST,Zhf_high_Zee_BOOST,ttbar_high_Zmm_BOOST,ttbar_high_Zee_BOOST +ListVHLegacy = SR_low_Zmm,SR_low_Zee,SR_med_Zmm_0j,SR_med_Zee_0j,SR_med_Zmm_ge1j,SR_med_Zee_ge1j,SR_high1_Zmm,SR_high2_Zmm,SR_high1_Zee,SR_high2_Zee,Zlf_low_Zmm,Zlf_low_Zee,Zlf_med_Zmm,Zlf_med_Zee,Zlf_high_Zmm,Zlf_high_Zee,Zhf_low_Zmm,Zhf_low_Zee,Zhf_med_Zmm,Zhf_med_Zee,Zhf_high_Zmm,Zhf_high_Zee,ttbar_low_Zmm,ttbar_low_Zee,ttbar_med_Zmm,ttbar_med_Zee,ttbar_high_Zmm,ttbar_high_Zee +#ListVHLegacy = SR_low_Zmm,SR_low_Zee,SR_med_Zmm_0j,SR_med_Zee_0j,SR_med_Zmm_ge1j,SR_med_Zee_ge1j,SR_high1_Zmm,SR_high2_Zmm,SR_high1_Zee,SR_high2_Zee,Zlf_low_Zmm,Zlf_low_Zee,Zlf_med_Zmm,Zlf_med_Zee,Zlf_high_Zmm,Zlf_high_Zee,Zhf_low_Zmm,Zhf_low_Zee,Zhf_med_Zmm,Zhf_med_Zee,Zhf_high_Zmm,Zhf_high_Zee,ttbar_low_Zmm,ttbar_low_Zee,ttbar_med_Zmm,ttbar_med_Zee,ttbar_high_Zmm,ttbar_high_Zee,SR_high1_Zee_BOOST,SR_high2_Zee_BOOST,SR_high1_Zmm_BOOST,SR_high2_Zmm_BOOST,Zlf_high_Zee_BOOST,Zlf_high_Zmm_BOOST,Zhf_high_Zmm_BOOST,Zhf_high_Zee_BOOST,ttbar_high_Zmm_BOOST,ttbar_high_Zee_BOOST +#ListVHLegacy = SR_low_Zmm,SR_low_Zee,SR_med_Zmm_0j,SR_med_Zee_0j,SR_med_Zmm_ge1j,SR_med_Zee_ge1j,SR_high1_Zmm,SR_high2_Zmm,SR_high1_Zee,SR_high2_Zee ;ListVHLegacy_VZ = VV_SR_low_Zmm,VV_SR_low_Zee,VV_SR_med_Zmm_0j,VV_SR_med_Zee_0j,VV_SR_med_Zmm_ge1j,VV_SR_med_Zee_ge1j,VV_SR_high_Zmm,VV_SR_high1_Zmm,VV_SR_high2_Zmm,VV_SR_high_Zee,VV_SR_high1_Zee,VV_SR_high2_Zee,VV_Zlf_low_Zmm,VV_Zlf_low_Zee,VV_Zlf_med_Zmm,VV_Zlf_med_Zee,VV_Zlf_high_Zmm,VV_Zlf_high_Zee,VV_Zhf_low_Zmm,VV_Zhf_low_Zee,VV_Zhf_med_Zmm,VV_Zhf_med_Zee,VV_Zhf_high_Zmm,VV_Zhf_high_Zee,VV_ttbar_low_Zmm,VV_ttbar_low_Zee,VV_ttbar_med_Zmm,VV_ttbar_med_Zee,VV_ttbar_high_Zmm,VV_ttbar_high_Zee -ListVZ = VV_SR_low_Zmm,VV_SR_low_Zee,VV_SR_med_Zmm_0j,VV_SR_med_Zee_0j,VV_SR_med_Zmm_ge1j,VV_SR_med_Zee_ge1j,VV_SR_high1_Zmm,VV_SR_high2_Zmm,VV_SR_high1_Zee,VV_SR_high2_Zee,Zlf_low_Zmm,Zlf_low_Zee,Zlf_med_Zmm,Zlf_med_Zee,Zlf_high_Zmm,Zlf_high_Zee,VV_Zhf_low_Zmm,VV_Zhf_low_Zee,VV_Zhf_med_Zmm,VV_Zhf_med_Zee,VV_Zhf_high_Zmm,VV_Zhf_high_Zee,ttbar_low_Zmm,ttbar_low_Zee,ttbar_med_Zmm,ttbar_med_Zee,ttbar_high_Zmm,ttbar_high_Zee,VV_SR_high1_Zee_BOOST,VV_SR_high2_Zee_BOOST,VV_SR_high1_Zmm_BOOST,VV_SR_high2_Zmm_BOOST,Zlf_high_Zee_BOOST,Zlf_high_Zmm_BOOST,VV_Zhf_high_Zmm_BOOST,VV_Zhf_high_Zee_BOOST,ttbar_high_Zmm_BOOST,ttbar_high_Zee_BOOST +ListVZ = VV_SR_low_Zmm,VV_SR_low_Zee,VV_SR_med_Zmm_0j,VV_SR_med_Zee_0j,VV_SR_med_Zmm_ge1j,VV_SR_med_Zee_ge1j,VV_SR_high1_Zmm,VV_SR_high2_Zmm,VV_SR_high1_Zee,VV_SR_high2_Zee,VV_Zlf_low_Zmm,VV_Zlf_low_Zee,VV_Zlf_med_Zmm,VV_Zlf_med_Zee,VV_Zlf_high_Zmm,VV_Zlf_high_Zee,VV_Zhf_low_Zmm,VV_Zhf_low_Zee,VV_Zhf_med_Zmm,VV_Zhf_med_Zee,VV_Zhf_high_Zmm,VV_Zhf_high_Zee,VV_ttbar_low_Zmm,VV_ttbar_low_Zee,VV_ttbar_med_Zmm,VV_ttbar_med_Zee,VV_ttbar_high_Zmm,VV_ttbar_high_Zee,VV_SR_high1_Zee_BOOST,VV_SR_high2_Zee_BOOST,VV_SR_high1_Zmm_BOOST,VV_SR_high2_Zmm_BOOST,VV_Zlf_high_Zee_BOOST,VV_Zlf_high_Zmm_BOOST,VV_Zhf_high_Zmm_BOOST,VV_Zhf_high_Zee_BOOST,VV_ttbar_high_Zmm_BOOST,VV_ttbar_high_Zee_BOOST -List_BOOSToverlap = SR_high1_Zee_BOOST,SR_high2_Zee_BOOST,SR_high1_Zmm_BOOST,SR_high2_Zmm_BOOST,Zlf_high_Zee_BOOST,Zlf_high_Zmm_BOOST,Zhf_high_Zmm_BOOST,Zhf_high_Zee_BOOST,ttbar_high_Zmm_BOOST,ttbar_high_Zee_BOOST +;List_BOOSToverlap = SR_high1_Zee_BOOST,SR_high2_Zee_BOOST,SR_high1_Zmm_BOOST,SR_high2_Zmm_BOOST,Zlf_high_Zee_BOOST,Zlf_high_Zmm_BOOST,Zhf_high_Zmm_BOOST,Zhf_high_Zee_BOOST,ttbar_high_Zmm_BOOST,ttbar_high_Zee_BOOST ;List_BOOSToverlap_VZ = VV_SR_high_Zee_BOOST,VV_SR_high1_Zee_BOOST,VV_SR_high2_Zee_BOOST,VV_SR_high_Zmm_BOOST,VV_SR_high1_Zmm_BOOST,VV_SR_high2_Zmm_BOOST,VV_Zlf_high_Zee_BOOST,VV_Zlf_high_Zmm_BOOST,VV_Zhf_high_Zmm_BOOST,VV_Zhf_high_Zee_BOOST,VV_ttbar_high_Zmm_BOOST,VV_ttbar_high_Zee_BOOST @@ -428,6 +430,9 @@ VVbackgrounds = [] # make VV datacards without STXS signal categories: # --set='Datacard.VVsignals=;Datacard.VVbackgrounds=' +DNNlow_trafo = (TMath::Sqrt(.Nominal)+TMath::Power((.Nominal),12))/2. +DNNmedhigh_trafo = (TMath::Sqrt(.Nominal)+TMath::Power((.Nominal),12))/2. + #!! ------------------------- #!! DNN binning #!! ------------------------- @@ -796,11 +801,13 @@ type = cr [dc:SR_low_Zee] var = -range = +#range = signal = background = data = type = BDT +#var = +#range = 15,0.0,1.0 rebin_method = list rebin_list = [0.00000, 0.30073, 0.41849, 0.50441, 0.57660, 0.63817, 0.69175, 0.73741, 0.77585, 0.81155, 0.84261, 0.87101, 0.89776, 0.92277, 0.94868, 1.00001] @@ -863,13 +870,15 @@ type = cr [dc:SR_med_Zee] var = -range = +#range = signal = background = data = type = BDT rebin_method = list rebin_list = +#var = +#range = 15,0.0,1.0 [dc:Zlf_med_Zee_0j] var = V_pt @@ -901,15 +910,16 @@ type = cr [dc:SR_med_Zee_0j] var = -range = +#range = signal = background = data = type = BDT rebin_method = list -#rebin_list = -rebin_list = [0.00000, 0.45027, 0.62239, 0.74731, 0.82971, 0.87972, 0.91772, 0.94736, 1.00001] - +rebin_list = +#rebin_list = [0.00000, 0.45027, 0.62239, 0.74731, 0.82971, 0.87972, 0.91772, 0.94736, 1.00001] +#var = +#range = 15,0.0,1.0 [dc:Zlf_med_Zee_ge1j] var = V_pt @@ -941,14 +951,16 @@ type = cr [dc:SR_med_Zee_ge1j] var = -range = +#range = signal = background = data = type = BDT rebin_method = list -#rebin_list = -rebin_list = [0.00000, 0.39379, 0.58765, 0.76166, 0.87540, 1.00001] +rebin_list = +#rebin_list = [0.00000, 0.39379, 0.58765, 0.76166, 0.87540, 1.00001] +#var = +#range = 15,0.0,1.0 [dc:VV_SR_med_Zee_ge1j] @@ -1045,26 +1057,29 @@ rebin_list = [0.00000, 0.61935, 0.83338, 0.91585, 0.95534, 0.97756, 1.00001] [dc:SR_high1_Zee] var = -range = +#range = signal = background = data = type = BDT rebin_method = list -#rebin_list = -rebin_list = [0.00000, 0.64760, 0.85587, 0.93127, 0.96764, 1.00001] +rebin_list = +#rebin_list = [0.00000, 0.64760, 0.85587, 0.93127, 0.96764, 1.00001] +#var = +#range = 15,0.0,1.0 [dc:SR_high2_Zee] var = -range = +#range = signal = background = data = type = BDT rebin_method = list -#rebin_list = -rebin_list = [0.00000, 0.76312, 0.93762, 0.97674, 0.98972, 1.00001] - +rebin_list = +#rebin_list = [0.00000, 0.76312, 0.93762, 0.97674, 0.98972, 1.00001] +#var = +#range = 15,0.0,1.0 @@ -1165,15 +1180,16 @@ type = cr [dc:SR_low_Zmm] var = -range = +#range = signal = background = data = type = BDT rebin_method = list -#rebin_list = -rebin_list = [0.00000, 0.28863, 0.40683, 0.49637, 0.56588, 0.62940, 0.68419, 0.73179, 0.77256, 0.80807, 0.83998, 0.86957, 0.89610, 0.92186, 0.94813, 1.00001] - +rebin_list = +#rebin_list = [0.00000, 0.28863, 0.40683, 0.49637, 0.56588, 0.62940, 0.68419, 0.73179, 0.77256, 0.80807, 0.83998, 0.86957, 0.89610, 0.92186, 0.94813, 1.00001] +#var = +#range = 15,0.0,1.0 ;med pt @@ -1269,14 +1285,15 @@ type = cr [dc:SR_med_Zmm_0j] var = -range = +#range = signal = background = data = type = BDT rebin_method = list rebin_list = [0.00000, 0.38860, 0.52918, 0.64669, 0.73962, 0.80377, 0.84758, 0.88141, 0.90751, 0.93206, 0.95356, 1.00001] - +#var = +#range = 15,0.0,1.0 @@ -1338,14 +1355,16 @@ type = cr [dc:SR_med_Zmm_ge1j] var = -range = +#range = signal = background = data = type = BDT rebin_method = list -#rebin_list = -rebin_list = [0.00000, 0.35844, 0.52280, 0.67988, 0.80218, 0.88987, 1.00001] +rebin_list = +#rebin_list = [0.00000, 0.35844, 0.52280, 0.67988, 0.80218, 0.88987, 1.00001] +#var = +#range = 15,0.0,1.0 [dc:VV_SR_med_Zmm_ge1j] var = @@ -1519,27 +1538,29 @@ rebin_list = [0.00000, 0.81153, 0.88805, 0.92559, 0.96634, 1.00001] [dc:SR_high1_Zmm] var = -range = +#range = signal = background = data = type = BDT rebin_method = list -#rebin_list = -rebin_list = [0.00000, 0.62735, 0.84686, 0.92543, 0.96397, 1.00001] - +rebin_list = +#rebin_list = [0.00000, 0.62735, 0.84686, 0.92543, 0.96397, 1.00001] +#var = +#range = 15,0.0,1.0 [dc:SR_high2_Zmm] var = -range = +#range = signal = background = data = type = BDT rebin_method = list -#rebin_list = -rebin_list = [0.00000, 0.75484, 0.91718, 0.96257, 0.98354, 1.00001] - +rebin_list = +#rebin_list = [0.00000, 0.75484, 0.91718, 0.96257, 0.98354, 1.00001] +#var = +#range = 15,0.0,1.0 diff --git a/python/Zll2017config/general.ini b/python/Zll2017config/general.ini index 071a77124..7794c2ba6 100644 --- a/python/Zll2017config/general.ini +++ b/python/Zll2017config/general.ini @@ -17,10 +17,10 @@ channel = Zll [Prep] Step1 = ['VHbbCommon.Clean','VHbbCommon.JetSmearer','VHbbCommon.JECcorrelator','Prep.LeptonSelection'] Step2 = ['VHbbCommon.METXY','Prep.Selection', 'VHbbCommon.isData', 'VHbbCommon.isSignal','VHbbCommon.isWH','VHbbCommon.isZH','VHbbCommon.HeppyStyleGen','VHbbCommon.genBstatus'] -LeptonSelection = VHbbSelection.VHbbSelection(year="2017", channels=["Zll"], skipJetSelection=True, vpt0lep=130.0, vpt1lep=110.0, vpt2lep=75.0) +LeptonSelection = VHbbSelection.VHbbSelection(year="2017", channels=["Zll"], skipJetSelection=True, vpt0lep=130.0, vpt1lep=110.0, vpt2lep=75.0,jetIdCut=1) VHbb = ['VHbbCommon.Clean','VHbbCommon.mSD_sys_2017','VHbbCommon.JetSmearer','VHbbCommon.METXY','Prep.Selection', 'VHbbCommon.isData', 'VHbbCommon.isSignal','VHbbCommon.isWH','VHbbCommon.isZH','VHbbCommon.HeppyStyleGen','VHbbCommon.genBstatus'] -Selection = VHbbSelection.VHbbSelection(year="2017", channels=["Zll"]) +Selection = VHbbSelection.VHbbSelection(year="2017", channels=["Zll"],jetIdCut=1) [Sys] useTreeFriends = False @@ -56,7 +56,9 @@ HH4Bres = BranchTools.TreeFormulas({ }) [KinematicFit] -fitter = kinFitterXbb.kinFitterXbb(year=2017) +#fitter = kinFitterXbb.kinFitterXbb(year=2017) + +fitter = kinFitterXbb.kinFitterXbb(year=2017, jetIdCut=1, puIdCut=6) # this is to remove all kinfit variables from trees Drop = Drop.Drop(['kinFit*']) @@ -71,7 +73,9 @@ systematics_Nominal = Nominal [Eval] weightAsBranch = WeightAsBranch.WeightAsBranch() -all = + +all = +#all = +++ +#all = VV = VZ = ['Eval.VV_SR_low_Zll', 'Eval.VV_SR_medhigh_Zll'] VH = ['Eval.SR_low_Zll','Eval.SR_medhigh_Zll'] @@ -82,6 +86,11 @@ bEnrichedAsSignalDNN = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mv bEnrichedAsSignalDNN_gen = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName='SR_LHE') # DNNs + +RESOLVED_BDT = ['Eval.BDT_SR_medhigh_Zll', 'Eval.BDT_SR_low_Zll'] +BDT_SR_medhigh_Zll = tmvaEvaluator.tmvaEvaluator(mvaName='SR_medhigh_Zll') +BDT_SR_low_Zll = tmvaEvaluator.tmvaEvaluator(mvaName='SR_low_Zll') + SR_low_Zll = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName='SR_low_Zll',condition='hJidx[0]>-1&&hJidx[1]>-1') SR_medhigh_Zll = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName='SR_medhigh_Zll',condition='hJidx[0]>-1&&hJidx[1]>-1') VV_SR_low_Zll = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName='VV_SR_low_Zll',condition='hJidx[0]>-1&&hJidx[1]>-1') @@ -131,7 +140,12 @@ puWeight = puWeight weightPU = genWeight = genWeight #weightNLO = weightLOtoNLO_LHEVptV6 -weightNLO = weightLOtoNLO_LHEVptV7 +#weightNLO = weightLOtoNLO_LHEVptV7 +#weightNLO = 1.0 +#weightNLO = weightLOtoNLO*weightLOtoNLO_LHEVptV7*weightLOtoNLO_LHEVptV7_Up*weightLOtoNLO_LHEVptV7_Down +weightNLO = weightLOtoNLO +#weightNLO = weightLOtoNLO*weightLOtoNLO +#ewkWeight = (1*((sampleIndex>=13000&&sampleIndex<=13800)||(sampleIndex>=6000&&sampleIndex<=7100)||(sampleIndex>=17000&&sampleIndex<=17700)) + EWKw[0]*(((sampleIndex>=13000&&sampleIndex<=13800)||(sampleIndex>=6000&&sampleIndex<=7100)||(sampleIndex>=17000&&sampleIndex<=17700))==0)) ewkWeight = EWKw[0] weightEWK = ; top pt reweighting diff --git a/python/Zll2017config/hadd.ini b/python/Zll2017config/hadd.ini index 6749d2f26..8038e3751 100644 --- a/python/Zll2017config/hadd.ini +++ b/python/Zll2017config/hadd.ini @@ -1,10 +1,21 @@ [Hadd] +DY1JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8: 1 +DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8: 1 +DY1JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8: 1 +DY1JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8: 1 +DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8: 1 +DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8: 1 +DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8: 1 +DY2JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8: 1 DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack: 1 DYBJetsToLL_M-50_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack: 5 +DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8: 3630 +DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8: 2 +DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8: 1 DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack: 2 DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack: 4 -DYJetsToLL_M-4to50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8: 1 -DYJetsToLL_M-4to50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8: 2 +DYJetsToLL_M-4to50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8: 2 +DYJetsToLL_M-4to50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8: 3 DYJetsToLL_M-4to50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8: 1 DYJetsToLL_M-4to50_HT-600toInf_TuneCP5_13TeV-madgraphMLM-pythia8: 2 DYJetsToLL_M-50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8: 1 @@ -15,45 +26,68 @@ DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8: 1 DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8: 1 DYJetsToLL_M-50_HT-70to100_TuneCP5_13TeV-madgraphMLM-pythia8: 1 DYJetsToLL_M-50_HT-800to1200_TuneCP5_13TeV-madgraphMLM-pythia8: 1 -DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8: 1 -DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8: 2 -DoubleEG: 3 -DoubleMuon: 2 -QCD_HT1000to1500_TuneCP5_13TeV-madgraph-pythia8: 10000 -QCD_HT100to200_TuneCP5_13TeV-madgraph-pythia8: 64000 -QCD_HT1500to2000_TuneCP5_13TeV-madgraph-pythia8: 1186 -QCD_HT2000toInf_TuneCP5_13TeV-madgraph-pythia8: 1600 -QCD_HT200to300_TuneCP5_13TeV-madgraph-pythia8: 28000 -QCD_HT300to500_TuneCP5_13TeV-madgraph-pythia8: 4149 -QCD_HT500to700_TuneCP5_13TeV-madgraph-pythia8: 3479 -QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8: 7423 -ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8: 101 -ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8: 73 -ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8: 234 -ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8: 3 -ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8: 4 +DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8: 2 +DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8: 3 +DoubleEG: 5 +DoubleMuon: 3 +QCD_HT1000to1500_TuneCP5_13TeV-madgraph-pythia8: 12000 +QCD_HT100to200_TuneCP5_13TeV-madgraph-pythia8: 9999 +QCD_HT1500to2000_TuneCP5_13TeV-madgraph-pythia8: 1524 +QCD_HT2000toInf_TuneCP5_13TeV-madgraph-pythia8: 1778 +QCD_HT200to300_TuneCP5_13TeV-madgraph-pythia8: 112000 +QCD_HT300to500_TuneCP5_13TeV-madgraph-pythia8: 8000 +QCD_HT500to700_TuneCP5_13TeV-madgraph-pythia8: 5162 +QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8: 16000 +ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8: 237 +ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8: 186 +ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8: 788 +ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8: 5 +ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8: 7 TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8: 1 -TTToHadronic_TuneCP5_PSweights_13TeV-powheg-pythia8: 426 -TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8: 35 -WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack: 768 -WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack: 1434 -WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack: 1343 -WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack: 2250 -WJetsToLNu_HT-100To200_TuneCP5_13TeV-madgraphMLM-pythia8: 1064 -WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8: 289 -WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8: 480 -WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8: 304 -WJetsToLNu_HT-400To600_TuneCP5_13TeV-madgraphMLM-pythia8: 436 -WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8: 344 -WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8: 437 -WJetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8: 12062 -WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8: 4 -WW_TuneCP5_13TeV-pythia8: 15 -WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8: 259 -WZ_TuneCP5_13TeV-pythia8: 2 -WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8: 471 -WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8: 466 -ZBJetsToNuNu_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack: 98667 +TTToHadronic_TuneCP5_PSweights_13TeV-powheg-pythia8: 1340 +TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8: 65 +W1JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8: 9999 +W1JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8: 3556 +W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8: 1618 +W1JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8: 3000 +W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8: 3859 +W1JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8: 21600 +W2JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8: 12000 +W2JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8: 654 +W2JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8: 791 +W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8: 2806 +W2JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8: 485 +W2JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8: 1812 +WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack: 1266 +WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack: 1802 +WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8: 9999 +WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8: 28445 +WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8: 1661 +WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack: 2168 +WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack: 2483 +WJetsToLNu_HT-100To200_TuneCP5_13TeV-madgraphMLM-pythia8: 2688 +WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8: 293 +WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8: 762 +WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8: 310 +WJetsToLNu_HT-400To600_TuneCP5_13TeV-madgraphMLM-pythia8: 543 +WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8: 384 +WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8: 454 +WJetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8: 27035 +WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8: 6 +WWTo2L2Nu_NNPDF31_TuneCP5_PSweights_13TeV-powheg-pythia8: 5 +WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8: 497 +WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8: 1 +WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8: 1044 +WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8: 1045 +Z1JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8: 9999 +Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8: 9999 +Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8: 9999 +Z1JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8: 9999 +Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8: 293334 +Z2JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8: 32000 +Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8: 176000 +Z2JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8: 9999 +ZBJetsToNuNu_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack: 296000 ZBJetsToNuNu_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack: 9999 ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8: 1 ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8: 69334 @@ -61,14 +95,12 @@ ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpac ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack: 9999 ZJetsToNuNu_HT-100To200_13TeV-madgraph: 9999 ZJetsToNuNu_HT-1200To2500_13TeV-madgraph: 9999 -ZJetsToNuNu_HT-200To400_13TeV-madgraph: 56000 +ZJetsToNuNu_HT-200To400_13TeV-madgraph: 224000 ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph: 9999 -ZJetsToNuNu_HT-400To600_13TeV-madgraph: 34667 -ZJetsToNuNu_HT-600To800_13TeV-madgraph: 24000 -ZJetsToNuNu_HT-800To1200_13TeV-madgraph: 10667 +ZJetsToNuNu_HT-400To600_13TeV-madgraph: 104000 +ZJetsToNuNu_HT-600To800_13TeV-madgraph: 32000 +ZJetsToNuNu_HT-800To1200_13TeV-madgraph: 16000 ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8: 1 -ZZTo4L_13TeV_powheg_pythia8: 1 -ZZ_TuneCP5_13TeV-pythia8: 2 +ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8: 70400 ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8: 1 -ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8: 24000 - +ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8: 48000 diff --git a/python/Zll2017config/paths.ini b/python/Zll2017config/paths.ini index bb7d8573b..5b62340aa 100644 --- a/python/Zll2017config/paths.ini +++ b/python/Zll2017config/paths.ini @@ -2,7 +2,7 @@ #!! List of the config you want to use #!! The list only support spaces between configs #List = paths.ini userpaths.ini ../VHbb2017commonconfig/general.ini general.ini cuts.ini training.ini ../VHbb2017commonconfig/systematics.ini datacards.ini plots.ini lhe_weights.ini ../VHbb2017commonconfig/samples_mc.ini ../VHbb2017commonconfig/stxs.ini hadd.ini data.ini ../VHbb2017commonconfig/vhbbPlotDef.ini vhbbPlotDef.ini fit.ini volatile.ini -List = paths.ini ../VHbb2017commonconfig/general.ini general.ini cuts.ini training.ini ../VHbb2017commonconfig/systematics.ini datacards.ini plots.ini lhe_weights.ini ../VHbb2017commonconfig/samples_mc.ini ../VHbb2017commonconfig/stxs.ini hadd.ini data.ini ../VHbb2017commonconfig/vhbbPlotDef.ini vhbbPlotDef.ini fit.ini volatile.ini +List = paths.ini ../VHbb2017commonconfig/general.ini general.ini cuts.ini training.ini ../VHbb2017commonconfig/systematics.ini datacards.ini plots.ini lhe_weights.ini ../VHbb2017commonconfig/samples_mc.ini ../VHbb2017commonconfig/stxs.ini hadd.ini data.ini ../VHbb2017commonconfig/vhbbPlotDef.ini vhbbPlotDef.ini fit.ini volatile.ini SRbinning_MVA_Zll.txt # general config #whereToLaunch = PSI @@ -24,32 +24,55 @@ scratch = /scratch// samplepath = # original samples -samplefiles = /mnt/t3nfs01/data01/shome/berger_p2/VHbb/CMSSW_10_1_0/src/Xbb/samples/VHbbPostNano2017_V11/merged_Zll2017/ -samplefiles_split = /mnt/t3nfs01/data01/shome/berger_p2/VHbb/CMSSW_10_1_0/src/Xbb/samples/VHbbPostNano2017_V11/merged_Zll2017/ +samplefiles = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/samples/VHbbPostNano2017_V11/merged_Zll2017/ +samplefiles_split = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/samples/VHbbPostNano2017_V11/ -trainingSamples = +trainingSamples = plottingSamples = dcSamples = # defined in userpaths.ini -tmpSamples = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/acalandr/VHbb/Wlv/VHbbPostNano2017_V11/tmp/v466/ -PREPin = -PREPout = -HADDin = -HADDout = -SYSin = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/acalandr/VHbb/Zll/VHbbPostNano2017_V11/Oct2020/eval/v3/ -SYSout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/acalandr/VHbb/Zll/VHbbPostNano2017_V11/Oct2020/eval/v5/ -KINFITin = -KINFITout = -KINFITMERGEin = -KINFITMERGEbase = -KINFITMERGEout = -#MVAin = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/berger_p2/VHbb/Zll/VHbbPostNano2017_V11/Oct2020v1/eval/ -MVAin = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/acalandr/VHbb/Zll/VHbbPostNano2017_V11/Oct2020/eval/v5/ -#MVAout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/acalandr/VHbb/Zll/VHbbPostNano2017_V11/Oct2020/eval/v3/ -MVAout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/acalandr/VHbb/Zll/VHbbPostNano2017_V11/Oct2020/eval/v6/ +#tmpSamples = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2017_V11/tmp/2022_01_25/training/ +tmpSamples = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2017_V11/tmp/2022_01_30/cachedc/ +#v5 is the one with all plots inside + +PREPin = root://eoscms.cern.ch/ +PREPout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2017_V11/2022_01_19/prep_step1/ +#PREPout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2017_V11/2021_05_20-v2/prep_step1/ +#PREP2out = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2017_V11/2022_01_19/prep_step2/ +PREP2out = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2017_V11/2022_01_21/prep_step2/ +#PREP2out = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2017_V11/2021_05_20-v2/prep_step2/ + +HADDin = +HADDout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2017_V11/2022_01_22/hadd/ + +SYSin = +#SYSout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2017_V11/2021_05_20-v2/sys/ +SYSout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2017_V11/2022_01_22/sys/ + +KINFITin = +#KINFITout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2017_V11/2021_05_20-v2/kinfit/ +KINFITout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2017_V11/2022_01_22/kinfit/ + +BOOSTin = +BOOSTout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2017_V11/2022_01_22/boost/ + +LOtoNLOout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2017_V11/2022_01_22/LOtoNLO/ + +MVAin = +#MVAin = +#MVAout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2017_V11/2021_05_20-v2/eval/ +#MVAout_v3 = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2017_V11/2021_10_12/eval/LOtoNLO/ +#MVAout_v4 = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2017_V11/2021_11_23/eval_withBDT/ +#MVAout_v6 = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2017_V11/2021_12_08/HIG18016_DNNs/ +MVAout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zll/VHbbPostNano2017_V11/2022_01_22/eval/ + +MVAPIRMINout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/berger_p2/VHbb/Zll/VHbbPostNano2017_V11/forShapes/NLOv7/ +MVAALESSANDROout = root://t3dcachedb03.psi.ch:1094///pnfs/psi.ch/cms/trivcat/store/user/acalandr/VHbb/Zll/VHbbPostNano2017_V11/June2021/mva/ + +TESTout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/test/ #v5 was the old input, v6 is the input with isBoosted diff --git a/python/Zll2017config/plots.ini b/python/Zll2017config/plots.ini index 441dac9d4..fa6221442 100644 --- a/python/Zll2017config/plots.ini +++ b/python/Zll2017config/plots.ini @@ -26,13 +26,17 @@ additionalText_med = " med p_{T}(V)" additionalText_high = " high p_{T}(V)" additionalText_high_boost = " high p_{T}(V) boosted" additionalText_medhigh = " >150 p_{T}(V)" +additionalText_lowmedhigh = " full p_{T}(V) range" # ------------------------------------------------------------------------------------------------------------------------------------------------------ # data # ------------------------------------------------------------------------------------------------------------------------------------------------------ muData = ['DoubleMuon'] +#muData = [] eData = ['DoubleEG'] +#eData = [] Data = ['DoubleEG','DoubleMuon'] +#Data = [] # ------------------------------------------------------------------------------------------------------------------------------------------------------ # MC samples definitions @@ -45,6 +49,8 @@ allBKG = ,,, #VZ #Plot_general.allSIG=;.allBKG= samples = [,] +#samples = [] +#samples = [] allSIG_noSTXS = 'ZH_Zll','ZH_Znunu','ggZH_Zll','ggZH_Znunu','WplusH','WminusH' @@ -75,10 +81,16 @@ setupLog = # plot regions # ------------------------------------------------------------------------------------------------------------------------------------------------------ ; !!! use --regions argument instead of modifying this list if possible !!! -List = +#List = +#List = SR_low_Zmm,SR_low_Zee,SR_med_Zmm_0j,SR_med_Zee_0j,SR_med_Zmm_ge1j,SR_med_Zee_ge1j,SR_high1_Zmm,SR_high2_Zmm,SR_high1_Zee,SR_high2_Zee,SR_high1_Zee_BOOST,SR_high2_Zee_BOOST,SR_high1_Zmm_BOOST,SR_high2_Zmm_BOOST +#List = SR_low_Zmm,SR_low_Zee,SR_med_Zmm_0j,SR_med_Zee_0j,SR_med_Zmm_ge1j,SR_med_Zee_ge1j,SR_high1_Zmm,SR_high2_Zmm,SR_high1_Zee,SR_high2_Zee,SR_high1_Zee_BOOST,SR_high2_Zee_BOOST,SR_high1_Zmm_BOOST,SR_high2_Zmm_BOOST +List = SR_low_Zmm,SR_low_Zee,SR_med_Zmm_0j,SR_med_Zee_0j,SR_med_Zmm_ge1j,SR_med_Zee_ge1j,SR_high1_Zmm,SR_high2_Zmm,SR_high1_Zee,SR_high2_Zee #List = +#List = Zhf_lowmedhigh_Zmm,Zhf_lowmedhigh_Zee,SR_lowmedhigh_Zee,SR_lowmedhigh_Zmm,Zlf_lowmedhigh_Zmm,Zlf_lowmedhigh_Zee,ttbar_lowmedhigh_Zmm,ttbar_lowmedhigh_Zee +#List = Zhf_lowmedhigh_Zmm,Zhf_lowmedhigh_Zee,SR_lowmedhigh_Zee,SR_lowmedhigh_Zmm,Zlf_lowmedhigh_Zmm,Zlf_lowmedhigh_Zee ListVHLegacy = SR_low_Zmm,SR_low_Zee,SR_med_Zmm_0j,SR_med_Zee_0j,SR_med_Zmm_ge1j,SR_med_Zee_ge1j,SR_high1_Zmm,SR_high2_Zmm,SR_high1_Zee,SR_high2_Zee,Zlf_low_Zmm,Zlf_low_Zee,Zlf_med_Zmm,Zlf_med_Zee,Zlf_high_Zmm,Zlf_high_Zee,Zhf_low_Zmm,Zhf_low_Zee,Zhf_med_Zmm,Zhf_med_Zee,Zhf_high_Zmm,Zhf_high_Zee,ttbar_low_Zmm,ttbar_low_Zee,ttbar_med_Zmm,ttbar_med_Zee,ttbar_high_Zmm,ttbar_high_Zee,SR_high1_Zee_BOOST,SR_high2_Zee_BOOST,SR_high1_Zmm_BOOST,SR_high2_Zmm_BOOST,Zlf_high_Zee_BOOST,Zlf_high_Zmm_BOOST,Zhf_high_Zmm_BOOST,Zhf_high_Zee_BOOST,ttbar_high_Zmm_BOOST,ttbar_high_Zee_BOOST +;ListVHLegacy = SR_low_Zll,SR_med_Zll_0j,SR_med_Zll_ge1j,SR_high1_Zll,SR_high2_Zll,Zlf_low_Zll,Zlf_med_Zll,Zlf_high_Zll,Zhf_low_Zll,Zhf_med_Zll,Zhf_high_Zll,ttbar_low_Zll,ttbar_med_Zll,ttbar_high_Zll,SR_high1_Zll_BOOST,SR_high2_Zll_BOOST,Zlf_high_Zll_BOOST,Zhf_high_Zll_BOOST,ttbar_high_Zll_BOOST ListVH = ListMulti = Multi_medhigh_Zll,Multi_low_Zll @@ -114,17 +126,22 @@ vars_inputs = Hj0_btag,Hj1_btag,Hj0_btag_WP,Hj1_btag_WP,btagWP2D,kinFit_H_mas vars_full = ,,,,,,,,,,,,,,,Hmasslin,Heta,Hphi,Hmass_0to500,rawMET,tkMET,dPhi_MET_tkMET,min_MET_MHT,tkmetphi,HT20_600,e0pt,e0phi,e0eta,e1pt,e1phi,e1eta,DNNlow,Vpt_low -vars_reduced = ,,btagWP2D,count,countNoWeight,countGenWeight,Vtype,parity,parityBDTDNN,Veta,Vphi,e0pt,e1pt,m0pt,m1pt, +vars_reduced = ,,btagWP2D,count,countNoWeight,countGenWeight,Vtype,parity,parityBDTDNN,Veta,Vphi,e0pt,e1pt,m0pt,m1pt,,deltaRbbWithFSR,deltaEtabbWithFSR #----- Boosted analysis plots -----# #var_additionalBTAGALGOS: BDT_VZ_Zvv_BOOSTFinal_wdB #var_Boost: Vpt,FatJet_mSD,FatJet_Pt,DeepAK8_bbVSlightBDT_Zvv_BOOSTFinal_wdB -var_Boost = Vpt,FatJet_mSD,FatJet_Pt,DeepAK8_bbVSlight,BDT_Zll_BOOSTFinal_wdB,BDT_VZ_Zll_BOOSTFinal_wdB +#var_Boost = Vpt,FatJet_mSD,FatJet_Pt,DeepAK8_bbVSlight,BDT_Zll_BOOSTFinal_wdB,BDT_VZ_Zll_BOOSTFinal_wdB # reduced list -var = +;var = +;var = deltaEtabb,deltaEtabbWithFSR,Vpt +;var = count +;var = DNNlow,DNNhigh,BDT +var = DNNlow,DNNhigh + # standard sets diff --git a/python/Zll2017config/training.ini b/python/Zll2017config/training.ini index 9bcebde21..b0560505f 100644 --- a/python/Zll2017config/training.ini +++ b/python/Zll2017config/training.ini @@ -15,7 +15,8 @@ factorysettings = !V:Color:!DrawProgressBar:AnalysisType=Classification:Transfor [MVALists] List_for_submitscript = -List = BDT_VZ_Zll_BOOSTFinal_wdB +;List = BDT_VZ_Zll_BOOSTFinal_wdB +List = SR_low_Zll,SR_medhigh_Zll ;List = BDT_Zll_BOOSTFinal_wdB,BDT_VZ_Zll_BOOSTFinal_wdB ;List_Multi = Multi_medhigh_Zll,Multi_low_Zll ;List_Boosted = BDT_Zll_BOOSTFinal_wdB @@ -31,12 +32,20 @@ classes = [['ZL',[]],['ZC',[]],['ZB',[< ;==================== [SR_low_Zll] +#xml = weights/MVA_SR_low_Zll.weights.xml +#branchName = BDT_20211123_TL_low +#branchName = DNN_211208_HIG18016DNN2017V11_Zll_SR_low_Zll +MVAtype = +#MVAsettings = NTrees=100:nCuts=20 signals = [] backgrounds = [] treeVarSet = ZllBDTVars__WP +#treeVarSet = ZllHIG18016Vars treeCut = SR_low_Zll -branchName = DNN_200924_VHLegacyDNN2017V11_Zll_Apr2020v6final_SR_low_Zll -checkpoint = DNN/200924_VHLegacyDNN2017V11_Zll_Apr2020v6final_SR_low_Zll +branchName = DNN_220125_VHLegacyDNN2017V11_Zll_Jan2022jetIdCut1_SR_low_Zll +#checkpoint = DNN/200924_VHLegacyDNN2017V11_Zll_Apr2020v6final_SR_low_Zll +#checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/Zll2017_SR_low/Zll2017_SR_low_Zll_211208_V11DeepCSV-final.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/1.000e-01/rnd_28866/checkpoints/model.ckpt +checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/jetIdCut1_220125/Zll2017_SR_low_Zll_220125_V11DeepCSV-final.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/1.000e-01/rnd_550580/checkpoints/model.ckpt bins = [0.0000, 0.2653, 0.3832, 0.4709, 0.5428, 0.6076, 0.6652, 0.7148, 0.7587, 0.7970, 0.8315, 0.8630, 0.8920, 0.9194, 0.9470, 1.0001] signalIndex = 0 @@ -61,12 +70,21 @@ bins = signalIndex = 0 [SR_medhigh_Zll] +#xml = weights/MVA_SR_medhigh_Zll.weights.xml +#branchName = DNN_211208_VHLegacy_VHLegacyDNN2017V11_Zll_SR_medhigh_Zll +#branchName = DNN_211208_HIG18016DNN2017V11_Zll_SR_medhigh_Zll +MVAtype = +#MVAsettings = NTrees=100:nCuts=20 signals = [] backgrounds = [] treeVarSet = ZllBDTVars__WP +#treeVarSet = ZllHIG18016Vars treeCut = SR_medhigh_Zll -branchName = DNN_200924_VHLegacyDNN2017V11_Zll_Apr2020v6final_SR_medhigh_Zll -checkpoint = DNN/200924_VHLegacyDNN2017V11_Zll_Apr2020v6final_SR_medhigh_Zll +branchName = DNN_220125_VHLegacyDNN2017V11_Zll_Jan2022jetIdCut1_SR_medhigh_Zll +#branchName = DNN_200924_VHLegacyDNN2017V11_Zll_Apr2020v6final_SR_medhigh_Zll +#checkpoint = DNN/200924_VHLegacyDNN2017V11_Zll_Apr2020v6final_SR_medhigh_Zll +#checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/Zll2017_SR_medhigh/Zll2017_SR_medhigh_Zll_211208_V11DeepCSV-final.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/1.000e+00/rnd_28876/checkpoints/model.ckpt +checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/jetIdCut1_220125/Zll2017_SR_medhigh_Zll_220125_V11DeepCSV-final.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/1.000e+00/rnd_551249/checkpoints/model.ckpt bins = [0.0000, 0.2686, 0.3893, 0.4840, 0.5700, 0.6516, 0.7228, 0.7801, 0.8245, 0.8592, 0.8879, 0.9115, 0.9323, 0.9507, 0.9692, 1.0001] signalIndex = 0 @@ -190,7 +208,8 @@ Nominal = kinFit_H_mass_fit H_mass kinFit_H_pt_fit H_pt kinFit_HVdPhi_fit abs(VH Nominal = kinFit_H_mass_fit H_mass kinFit_H_pt_fit H_pt kinFit_HVdPhi_fit abs(VHbb::deltaPhi(H_phi,V_phi)) Jet_btagDeepFlavB[hJidx[0]] Jet_btagDeepFlavB[hJidx[1]] max(kinFit_hJets_pt_0_fit,kinFit_hJets_pt_1_fit) max(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) min(kinFit_hJets_pt_0_fit,kinFit_hJets_pt_1_fit) min(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) kinFit_V_mass_fit V_mass Sum$(Jet_Pt>30&&abs(Jet_eta)<2.4&&(Jet_puId>6||Jet_Pt>50)&&Jet_jetId>4&&Jet_lepFilter>0&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) kinFit_V_pt_fit V_pt kinFit_jjVPtRatio_fit (H_pt/V_pt) hJets_FSRrecovered_dEta SA5 VHbb::deltaR(kinFit_H_eta_fit,kinFit_H_phi_fit,kinFit_V_eta_fit,kinFit_V_phi_fit) VHbb::deltaR(H_eta,H_phi,V_eta,V_phi) MET_Pt kinFit_H_mass_sigma_fit kinFit_n_recoil_jets_fit TMath::Sqrt(hJets_FSRrecovered_dEta*hJets_FSRrecovered_dEta+hJets_FSRrecovered_dPhi*hJets_FSRrecovered_dPhi) [ZllBDTVarsDeepCSV_KINFIT_WP] -Nominal = kinFit_H_mass_fit H_mass kinFit_H_pt_fit H_pt kinFit_HVdPhi_fit abs(VHbb::deltaPhi(H_phi,V_phi)) (Jet_btagDeepB[hJidx[0]]>0.1522)+(Jet_btagDeepB[hJidx[0]]>0.4941)+(Jet_btagDeepB[hJidx[0]]>0.8001) (Jet_btagDeepB[hJidx[1]]>0.1522)+(Jet_btagDeepB[hJidx[1]]>0.4941)+(Jet_btagDeepB[hJidx[1]]>0.8001) max(kinFit_hJets_pt_0_fit,kinFit_hJets_pt_1_fit) max(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) min(kinFit_hJets_pt_0_fit,kinFit_hJets_pt_1_fit) min(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) kinFit_V_mass_fit V_mass Sum$(Jet_Pt>30&&abs(Jet_eta)<2.4&&(Jet_puId>6||Jet_Pt>50)&&Jet_jetId>4&&Jet_lepFilter>0&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) kinFit_V_pt_fit V_pt kinFit_jjVPtRatio_fit (H_pt/V_pt) hJets_FSRrecovered_dEta SA5 VHbb::deltaR(kinFit_H_eta_fit,kinFit_H_phi_fit,kinFit_V_eta_fit,kinFit_V_phi_fit) VHbb::deltaR(H_eta,H_phi,V_eta,V_phi) MET_Pt kinFit_H_mass_sigma_fit kinFit_n_recoil_jets_fit TMath::Sqrt(hJets_FSRrecovered_dEta*hJets_FSRrecovered_dEta+hJets_FSRrecovered_dPhi*hJets_FSRrecovered_dPhi) +Nominal = kinFit_H_mass_fit H_mass kinFit_H_pt_fit H_pt kinFit_HVdPhi_fit abs(VHbb::deltaPhi(H_phi,V_phi)) (Jet_btagDeepB[hJidx[0]]>0.1522)+(Jet_btagDeepB[hJidx[0]]>0.4941)+(Jet_btagDeepB[hJidx[0]]>0.8001) (Jet_btagDeepB[hJidx[1]]>0.1522)+(Jet_btagDeepB[hJidx[1]]>0.4941)+(Jet_btagDeepB[hJidx[1]]>0.8001) max(kinFit_hJets_pt_0_fit,kinFit_hJets_pt_1_fit) max(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) min(kinFit_hJets_pt_0_fit,kinFit_hJets_pt_1_fit) min(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) kinFit_V_mass_fit V_mass Sum$(Jet_Pt>30&&abs(Jet_eta)<2.4&&(Jet_puId>6||Jet_Pt>50)&&Jet_jetId>1&&Jet_lepFilter>0&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) kinFit_V_pt_fit V_pt kinFit_jjVPtRatio_fit (H_pt/V_pt) hJets_FSRrecovered_dEta SA5 VHbb::deltaR(kinFit_H_eta_fit,kinFit_H_phi_fit,kinFit_V_eta_fit,kinFit_V_phi_fit) VHbb::deltaR(H_eta,H_phi,V_eta,V_phi) MET_Pt kinFit_H_mass_sigma_fit kinFit_n_recoil_jets_fit TMath::Sqrt(hJets_FSRrecovered_dEta*hJets_FSRrecovered_dEta+hJets_FSRrecovered_dPhi*hJets_FSRrecovered_dPhi) +#Nominal = kinFit_H_mass_fit H_mass kinFit_H_pt_fit H_pt kinFit_HVdPhi_fit abs(VHbb::deltaPhi(H_phi,V_phi)) (Jet_btagDeepB[hJidx[1]]>0.1522)+(Jet_btagDeepB[hJidx[1]]>0.4941)+(Jet_btagDeepB[hJidx[1]]>0.8001) max(kinFit_hJets_pt_0_fit,kinFit_hJets_pt_1_fit) max(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) min(kinFit_hJets_pt_0_fit,kinFit_hJets_pt_1_fit) min(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) kinFit_V_mass_fit V_mass Sum$(Jet_Pt>30&&abs(Jet_eta)<2.4&&(Jet_puId>6||Jet_Pt>50)&&Jet_jetId>1&&Jet_lepFilter>0&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) kinFit_V_pt_fit V_pt kinFit_jjVPtRatio_fit (H_pt/V_pt) hJets_FSRrecovered_dEta SA5 VHbb::deltaR(kinFit_H_eta_fit,kinFit_H_phi_fit,kinFit_V_eta_fit,kinFit_V_phi_fit) VHbb::deltaR(H_eta,H_phi,V_eta,V_phi) MET_Pt kinFit_H_mass_sigma_fit kinFit_n_recoil_jets_fit TMath::Sqrt(hJets_FSRrecovered_dEta*hJets_FSRrecovered_dEta+hJets_FSRrecovered_dPhi*hJets_FSRrecovered_dPhi) # uses both variables [ZllBDTVarsDeepCSV_KINFIT] @@ -202,7 +221,8 @@ Nominal = kinFit.H_mass_fit_fallback kinFit.H_pt_fit_fallback kinFit.HVdPhi_fit_ [ZllBDTVarsDeepCSV_REG] Nominal = H_mass H_pt abs(VHbb::deltaPhi(H_phi,V_phi)) Jet_btagDeepB[hJidx[0]] Jet_btagDeepB[hJidx[1]] Jet_PtReg[hJidx[0]] Jet_PtReg[hJidx[1]] V_mass Sum$(Jet_PtReg>30&&abs(Jet_eta)<2.4&&(Jet_puId>6||Jet_Pt>50)&&Jet_jetId>0&&Jet_lepFilter>0&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) V_pt (H_pt/V_pt) abs(Jet_eta[hJidx[0]]-Jet_eta[hJidx[1]]) SA5 VHbb::deltaR(H_eta,H_phi,V_eta,V_phi) MET_Pt VHbb::deltaR(Jet_eta[hJidx[0]],Jet_phi[hJidx[0]],Jet_eta[hJidx[1]],Jet_phi[hJidx[1]]) - +[ZllHIG18016Vars] +Nominal = kinFit_H_mass_fit kinFit_H_pt_fit V_pt Jet_btagDeepB[hJidx[0]] Jet_btagDeepB[hJidx[1]] Sum$(Jet_Pt>30&&abs(Jet_eta)<2.4&&(Jet_puId>6||Jet_Pt>50)&&Jet_jetId>4&&Jet_lepFilter>0&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) SA5 V_mass MET_Pt max(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) min(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) kinFit_jjVPtRatio_fit hJets_FSRrecovered_dEta kinFit_HVdPhi_fit kinFit_n_recoil_jets_fit kinFit_H_mass_sigma_fit ;!! ------------------ ;!! Boosted MVA @@ -245,7 +265,7 @@ systematics = bins = [-1.00000, -0.62213, -0.56653, -0.53320, -0.50147, -0.46027, -0.38867, -0.32333, -0.24667, -0.16773, -0.06573, 0.06507, 0.22200, 0.31693, 0.40360, 1.00001] [BDT_VZ_Zll_BOOSTFinal_wdB] -xml = weights/MVA_BDT_VZ_Wlv_forZll_BOOSTFinal_2017.xml +xml = weights/MVA_BDT_VZ_Wlv_forZll_BOOSTFinal_wdB_2017.weights.xml MVAtype = MVAsettings = NTrees=100:nCuts=20 signals = [] diff --git a/python/Zll2017config/vhbbPlotDef.ini b/python/Zll2017config/vhbbPlotDef.ini index b4bb2f280..eb165e814 100644 --- a/python/Zll2017config/vhbbPlotDef.ini +++ b/python/Zll2017config/vhbbPlotDef.ini @@ -1,7 +1,7 @@ [General] BDTbins = 20 -[plotDef:BDT_Zll_BOOSTFinal_wdB] +[plotDef:BDT] relPath = BDT_Zll_BOOSTFinal_wdB.Nominal xAxis = BDT_Zll_BOOSTFinal_wdB nBins = 10000 @@ -61,6 +61,7 @@ relPath = .Nominal xAxis = DNN (low pt) nBins = 15 min = 0.0 +#min = -1.0 max = 1.0 binList = rebin_method = list @@ -383,6 +384,7 @@ relPath = .Nominal xAxis = DNN (high pt) nBins = 15 min = 0.0 +#min = -1.0 max = 1.0 #binList = binList = [0.00000, 0.38860, 0.52918, 0.64669, 0.73962, 0.80377, 0.84758, 0.88141, 0.90751, 0.93206, 0.95356, 1.00001] diff --git a/python/Zvv2016config/cuts.ini b/python/Zvv2016config/cuts.ini index 76c15bbcb..4632eda56 100755 --- a/python/Zvv2016config/cuts.ini +++ b/python/Zvv2016config/cuts.ini @@ -33,8 +33,7 @@ Incl = isZnn # -------------------------------------------------------------------------------------------------- # BASIC cuts: Selection common to all CR # -------------------------------------------------------------------------------------------------- -BasicCuts = ( && isZnn && > 170.0 && min(MHT_pt, MET_pt) > 100 && > && H_mass < 500 && H_mass > 50 && H_pt > 120.0 && ==0 && > 2.0 && ) - +BasicCuts = (isZnn && > 170.0 && min(MHT_pt, MET_pt) > 100 && > && < 250 && H_pt > 120.0 && ==0 && > 2.0 && && >50 ) # -------------------------------------------------------------------------------------------------- # CONTROL regions # -------------------------------------------------------------------------------------------------- @@ -60,45 +59,69 @@ VV_SR = ( && ( > 60 && >= 150.0 && < 250.0) medhigh = ( >= 150.0) high = ( >= 250.0) +high1 = ( >= 250.0 && < 400.0 ) +high2 = ( >= 400.0 ) -ttbar_med_Znn = ()&&() -Zlf_med_Znn = ()&&() -Zhf_med_Znn = ()&&() -SR_med_Znn = ()&&() +resolvedCR = (&&(||||)) +resolvedSR = (&&()) -ttbar_med_Znn_0j = ()&&&& -Zlf_med_Znn_0j = ()&&&& -Zhf_med_Znn_0j = ()&&&& -SR_med_Znn_0j = ()&&&& +resolvedCR_VZ = (&&(||||)) +resolvedSR_VZ = (&&()) -ttbar_med_Znn_ge1j = ()&&&& -Zlf_med_Znn_ge1j = ()&&&& -Zhf_med_Znn_ge1j = ()&&&& -SR_med_Znn_ge1j = ()&&&& +ttbar_med_Znn = (&&)&&() +Zlf_med_Znn = (&&)&&() +Zhf_med_Znn = (&&)&&() +SR_med_Znn = (&&)&&() -ttbar_high_Znn = ()&&() -Zlf_high_Znn = ()&&() -Zhf_high_Znn = ()&&() -SR_high_Znn = ()&&() +ttbar_med_Znn_0j = (&&&&&&) +Zlf_med_Znn_0j = (&&&&&&) +Zhf_med_Znn_0j = (&&&&&&) +SR_med_Znn_0j = (&&&&&&) -ttbar_medhigh_Znn = ()&&() -Zlf_medhigh_Znn = ()&&() -Zhf_medhigh_Znn = ()&&() -SR_medhigh_Znn = ()&&() +ttbar_med_Znn_ge1j = (&&&&&&) +Zlf_med_Znn_ge1j = (&&&&&&) +Zhf_med_Znn_ge1j = (&&&&&&) +SR_med_Znn_ge1j = (&&&&&&) -# VV +ttbar_high_Znn = (&&&&) +Zlf_high_Znn = (&&&&) +Zhf_high_Znn = (&&&&) +SR_high_Znn = (&&&&) +SR_high1_Znn = (&&&&) +SR_high2_Znn = (&&&&) -VV_SR_med_Znn = ()&& -VV_SR_med_Znn_0j = ()&&&& -VV_SR_med_Znn_ge1j = ()&&&& -VV_SR_high_Znn = ()&& -VV_SR_medhigh_Znn = ()&& +ttbar_medhigh_Znn = (&&&&) +Zlf_medhigh_Znn = (&&&&) +Zhf_medhigh_Znn = (&&&&) +SR_medhigh_Znn = (&&&&) -VV_Zhf_med_Znn = ()&& -VV_Zhf_med_Znn_0j = ()&&&& -VV_Zhf_med_Znn_ge1j = ()&&&& -VV_Zhf_high_Znn = ()&& -VV_Zhf_medhigh_Znn = ()&& +Zrw_medhigh_Znn = (&&&&) +Zrw2_medhigh_Znn = (&&&&) + +# VV + +VV_SR_med_Znn = (&&)&& +VV_SR_med_Znn_0j = (&&)&&&& +VV_SR_med_Znn_ge1j = (&&)&&&& +VV_SR_high_Znn = (&&)&& +VV_SR_high1_Znn = (&&&&) +VV_SR_high2_Znn = (&&&&) +VV_SR_medhigh_Znn = (&&)&& + +VV_Zhf_med_Znn = (&&)&& +VV_Zhf_med_Znn_0j = (&&)&&&& +VV_Zhf_med_Znn_ge1j = (&&)&&&& +VV_Zhf_high_Znn = (&&)&& +VV_Zhf_medhigh_Znn = (&&)&& + +VV_ttbar_med_Znn = (&&)&&() +VV_Zlf_med_Znn = (&&)&&() +VV_ttbar_med_Znn_0j = (&&&&&&) +VV_Zlf_med_Znn_0j = (&&&&&&) +VV_ttbar_med_Znn_ge1j = (&&&&&&) +VV_Zlf_med_Znn_ge1j = (&&&&&&) +VV_ttbar_high_Znn = (&&&&) +VV_Zlf_high_Znn = (&&&&) # -------------------------------------------------------------------------------------------------- # Mjj regions @@ -146,23 +169,46 @@ HighPt_Inclusive = dijet_mass_BOOST = FatJet_Msoftdrop[Hbb_fjidx] DphiMET_Lep = lepMetDPhi -BasicCuts_BOOST= ( && FatJet_Pt[Hbb_fjidx]>250 && abs(FatJet_eta[Hbb_fjidx])<2.5 && MET_Pt > 250 && >50 && ) +BasicCuts_BOOST= (FatJet_Pt[Hbb_fjidx]>250 && abs(FatJet_eta[Hbb_fjidx])<2.5 && MET_Pt > 250 && >50 && && MHT_pt>100.0) +BasicCuts_BOOST1= (FatJet_Pt[Hbb_fjidx]>250 && abs(FatJet_eta[Hbb_fjidx])<2.5 && MET_Pt >= 250 && MET_Pt<400 && >50 && && MHT_pt>100.0) +BasicCuts_BOOST2= (FatJet_Pt[Hbb_fjidx]>250 && abs(FatJet_eta[Hbb_fjidx])<2.5 && MET_Pt > 400 && >50 && && MHT_pt>100.0) #Region definitions NaddbJets_boosted=Sum$(VHbb::deltaR(FatJet_eta[Hbb_fjidx],FatJet_phi[Hbb_fjidx],Jet_eta,Jet_phi)> 0.8 && > && Jet_lepFilter>0 && Jet_PtReg>25 && fabs(Jet_eta)<2.5) Signal_BOOSTv3 = ( && > 90 && < 150 && == 0 && ==0 && FatJet_deepTagMD_bbvsLight[Hbb_fjidx]>0.8) +Signal_BOOSTv3_1 = ( && > 90 && < 150 && == 0 && ==0 && FatJet_deepTagMD_bbvsLight[Hbb_fjidx]>0.8) +Signal_BOOSTv3_2 = ( && > 90 && < 150 && == 0 && ==0 && FatJet_deepTagMD_bbvsLight[Hbb_fjidx]>0.8) tt_BOOST = ( && > 50 && > 0 && FatJet_deepTagMD_bbvsLight[Hbb_fjidx]>0.8 && ==0) Zlf_BOOSTv11 = ( && > 50 && == 0 && ==0 && FatJet_deepTagMD_bbvsLight[Hbb_fjidx]<0.8) Zhf_BOOSTv2 = ( && (( > 50 && < 90) || ( > 150 && < 250 )) && == 0 && ==0 && FatJet_deepTagMD_bbvsLight[Hbb_fjidx]>0.8) -all_BOOST = ( || || || ) +all_BOOST = (&&(||||||)) -VZ_Signal_BOOSTv3 = ( && > 60 && < 120 && == 0 && ==0 && FatJet_deepTagMD_bbvsLight[Hbb_fjidx]>0.8) -VZ_Zhf_BOOSTv2 = ( && (( > 50 && < 60) || ( > 120 && < 250 )) && == 0 && ==0 && FatJet_deepTagMD_bbvsLight[Hbb_fjidx]>0.8) -all_BOOST_VZ = ( || || || ) +Signal_BOOSTv3_VZ = ( && > 60 && < 120 && == 0 && ==0 && FatJet_deepTagMD_bbvsLight[Hbb_fjidx]>0.8) +Signal_BOOSTv3_VZ_1 = ( && > 60 && < 120 && == 0 && ==0 && FatJet_deepTagMD_bbvsLight[Hbb_fjidx]>0.8) +Signal_BOOSTv3_VZ_2 = ( && > 60 && < 120 && == 0 && ==0 && FatJet_deepTagMD_bbvsLight[Hbb_fjidx]>0.8) -SR_high_Znn_BOOST = && -ttbar_high_Znn_BOOST = && -Zlf_high_Znn_BOOST = && -Zhf_high_Znn_BOOST = && +VZ_Zhf_BOOSTv2 = ( && (( > 50 && < 60) || ( > 120 && < 250 )) && == 0 && ==0 && FatJet_deepTagMD_bbvsLight[Hbb_fjidx]>0.8) +all_BOOST_VZ = ( || || || ) + +boostedCR = ( && ( || || )) +boostedSR = ( && ) + +boostedCR_VZ = ( && ( || || )) +boostedSR_VZ = ( && ) + +# cuts with overlap treatment applied +SR_high_Znn_BOOST = ( && && ) +SR_high1_Znn_BOOST = ( && && ) +SR_high2_Znn_BOOST = ( && && ) +ttbar_high_Znn_BOOST = ( && && ) +Zlf_high_Znn_BOOST = ( && && ) +Zhf_high_Znn_BOOST = ( && && ) + +VV_SR_high_Znn_BOOST = ( && && ) +VV_SR_high1_Znn_BOOST = ( && && ) +VV_SR_high2_Znn_BOOST = ( && && ) +VV_ttbar_high_Znn_BOOST = ( && && ) +VV_Zlf_high_Znn_BOOST = ( && && ) +VV_Zhf_high_Znn_BOOST = ( && && ) diff --git a/python/Zvv2016config/datacards.ini b/python/Zvv2016config/datacards.ini index 1cef38d12..7eaecd88f 100644 --- a/python/Zvv2016config/datacards.ini +++ b/python/Zvv2016config/datacards.ini @@ -33,33 +33,19 @@ remove_systematics = True sys_cr = [ 'jer', 'jerReg', - 'jesAbsoluteStat', - 'jesAbsoluteScale', - 'jesAbsoluteMPFBias', - 'jesFragmentation', - 'jesSinglePionECAL', - 'jesSinglePionHCAL', + 'jerRegSmear', + 'jerRegScale', + 'jesAbsolute', + 'jesAbsolute_2016', + 'jesBBEC1', + 'jesBBEC1_2016', + 'jesEC2', + 'jesEC2_2016', 'jesFlavorQCD', - 'jesRelativeJEREC1', - 'jesRelativeJEREC2', - 'jesRelativeJERHF', - 'jesRelativePtBB', - 'jesRelativePtEC1', - 'jesRelativePtEC2', - 'jesRelativePtHF', + 'jesHF', + 'jesHF_2016', 'jesRelativeBal', - 'jesRelativeFSR', - 'jesRelativeStatFSR', - 'jesRelativeStatEC', - 'jesRelativeStatHF', - 'jesPileUpDataMC', - 'jesPileUpPtRef', - 'jesPileUpPtBB', - 'jesPileUpPtEC1', - 'jesPileUpPtEC2', - 'jesPileUpPtHF', - 'jesPileUpMuZero', - 'jesPileUpEnvelope', + 'jesRelativeSample_2016', 'unclustEn', 'jmr', 'jms', @@ -69,6 +55,11 @@ sys_BDT = sys_Mjj = weightF_sys = [ + 'THU_ZH_acc', + 'THU_WH_acc', + 'THU_ggZH_acc', + 'CMS_vhbb_Vpt150_13TeV', + 'CMS_vhbb_Vpt250_13TeV', ; TEST shape uncertainties ;2017 run era weight ; 'CMS_vhbb_runEra2017B', @@ -147,7 +138,7 @@ weightF_sys = [ 'CMS_vhbb_Vjets_pdfwgt_1lep', 'CMS_vhbb_Vjets_pdfwgt_2lep', ; Prefire correction -; 'CMS_vhbb_PrefireWeight_13TeV', + 'CMS_vhbb_PrefireWeight_13TeV', ; MET SF ; small -> use 0.5% global uncert. ; btag @@ -286,17 +277,16 @@ weightF_sys = [ 'CMS_bTagWeightDeepBcErr2_13TeV_pt4_eta0', 'CMS_bTagWeightDeepBcErr2_13TeV_pt4_eta1', 'CMS_bTagWeightDeepBcErr2_13TeV_pt4_eta2', -; -; 'bTagWeightDoubleB_mp_pt200to300', -; 'bTagWeightDoubleB_mp_pt300to400', -; 'bTagWeightDoubleB_mp_pt400to500', -; 'bTagWeightDoubleB_mp_pt500to600', -; 'bTagWeightDoubleB_mp_pt600toInf', -; 'bTagWeightDoubleB_hp_pt200to300', -; 'bTagWeightDoubleB_hp_pt300to400', -; 'bTagWeightDoubleB_hp_pt400to500', -; 'bTagWeightDoubleB_hp_pt500to600', -; 'bTagWeightDoubleB_hp_pt600toInf', + 'bTagWeightDoubleB_mp_pt200to300', + 'bTagWeightDoubleB_mp_pt300to400', + 'bTagWeightDoubleB_mp_pt400to500', + 'bTagWeightDoubleB_mp_pt500to600', + 'bTagWeightDoubleB_mp_pt600toInf', + 'bTagWeightDoubleB_hp_pt200to300', + 'bTagWeightDoubleB_hp_pt300to400', + 'bTagWeightDoubleB_hp_pt400to500', + 'bTagWeightDoubleB_hp_pt500to600', + 'bTagWeightDoubleB_hp_pt600toInf', ] rebin_active = True @@ -312,7 +302,7 @@ rebin_active = True ;setupSignals: ['ZH', 'WH', 'ggZH'] ; STXS -setupSignals = ['ZH_lep_PTV_0_75_hbb','ZH_lep_PTV_75_150_hbb','ZH_lep_PTV_150_250_0J_hbb','ZH_lep_PTV_150_250_GE1J_hbb','ZH_lep_PTV_GT250_hbb','WH_lep_PTV_0_75_hbb','WH_lep_PTV_75_150_hbb','WH_lep_PTV_150_250_0J_hbb','WH_lep_PTV_150_250_GE1J_hbb','WH_lep_PTV_GT250_hbb','ggZH_lep_PTV_0_75_hbb','ggZH_lep_PTV_75_150_hbb','ggZH_lep_PTV_150_250_0J_hbb','ggZH_lep_PTV_150_250_GE1J_hbb','ggZH_lep_PTV_GT250_hbb'] +setupSignals = setupBackgrounds_Default = ['ZJets_0b', 'ZJets_1b', 'ZJets_2b', 'WJets_0b', 'WJets_1b', 'WJets_2b','VVHF', 'VVLF', 'TT', 'ST', 'QCD'] setupBackgrounds_VJ4 = ['ZJets_0b', 'ZJets_1b', 'ZJets_2b', 'WJets_0b', 'WJets_1b', 'WJets_2b','VVHF', 'VVLF', 'TT', 'ST', 'QCD'] setupBackgrounds = !> @@ -340,15 +330,16 @@ removeWeightSystematics = {'Zee': ['CMS_vhbb_eff_m_13TeV', 'CMS_vhbb_eff_m_trigg ptRegionsDict = {'HighPt': ['Znn_13TeV_Signal','Znn_13TeV_Zlight','Znn_13TeV_Zbb','Znn_13TeV_TT']} # datacard CR+SR -List = , -ListMulti = Multi_medhigh_Znn_BKG,Multi_medhigh_Znn_SIG -ListMjj = Zhf_medhigh_Znn,Zlf_medhigh_Znn,ttbar_medhigh_Znn,Znn_Mjj_0,Znn_Mjj_1,Znn_Mjj_2,Znn_Mjj_3 -ListVV = VV_SR_medhigh_Znn,Zhf_medhigh_Znn,ttbar_medhigh_Znn,Zlf_medhigh_Znn -ListVH = SR_medhigh_Znn,Zhf_medhigh_Znn,Zlf_medhigh_Znn,ttbar_medhigh_Znn -ListVHLegacy = SR_med_Znn_0j,Zhf_med_Znn,Zlf_med_Znn,ttbar_med_Znn,SR_med_Znn_ge1j,SR_high_Znn,Zhf_high_Znn,Zlf_high_Znn,ttbar_high_Znn -ListVHLegacyNjetCR = SR_med_Znn_0j,Zhf_med_Znn_0j,Zlf_med_Znn_0j,ttbar_med_Znn_0j,SR_med_Znn_ge1j,Zhf_med_Znn_ge1j,Zlf_med_Znn_ge1j,ttbar_med_Znn_ge1j,SR_high_Znn,Zhf_high_Znn,Zlf_high_Znn,ttbar_high_Znn -List_BOOSToverlap = SR_high_Znn_BOOST,Zlf_high_Znn_BOOST,Zhf_high_Znn_BOOST,ttbar_high_Znn_BOOST +;List = , +;List = ,,, +List = , +;List = SR_high1_Znn_BOOST,SR_high2_Znn_BOOST,VV_SR_high1_Znn_BOOST,VV_SR_high2_Znn_BOOST +ListVZ_resolved = VV_SR_med_Znn_0j,VV_Zhf_med_Znn,VV_Zlf_med_Znn,VV_ttbar_med_Znn,VV_SR_med_Znn_ge1j,VV_SR_high1_Znn,VV_SR_high2_Znn,VV_Zhf_high_Znn,VV_Zlf_high_Znn,VV_ttbar_high_Znn +ListVZ_boosted= VV_SR_high1_Znn_BOOST,VV_SR_high2_Znn_BOOST,VV_Zlf_high_Znn_BOOST,VV_Zhf_high_Znn_BOOST,VV_ttbar_high_Znn_BOOST + +ListVHLegacy = SR_med_Znn_0j,Zhf_med_Znn,Zlf_med_Znn,ttbar_med_Znn,SR_med_Znn_ge1j,SR_high_Znn,SR_high1_Znn,SR_high2_Znn,Zhf_high_Znn,Zlf_high_Znn,ttbar_high_Znn +List_BOOSToverlap = SR_high_Znn_BOOST,SR_high1_Znn_BOOST,SR_high2_Znn_BOOST,Zlf_high_Znn_BOOST,Zhf_high_Znn_BOOST,ttbar_high_Znn_BOOST [Datacard] @@ -360,13 +351,32 @@ Backgrounds = VV_Signals = VV_Backgrounds = +bins_med = [0.00000, 0.19754, 0.30342, 0.39313, 0.48110, 0.56465, 0.64271, 0.70883, 0.75878, 0.80078, 0.83824, 0.86995, 0.89728, 0.92324, 0.94767, 1.00001] +bins_high = [0.00000, 0.33034, 0.48288, 0.60640, 0.70058, 0.76871, 0.81533, 0.85377, 0.88228, 0.90520, 0.92427, 0.94164, 0.95561, 0.96818, 0.97975, 1.00001] +bins_high1 = [0.00000, 0.31639, 0.46072, 0.57739, 0.67549, 0.74754, 0.79959, 0.83800, 0.86928, 0.89449, 0.91489, 0.93366, 0.94947, 0.96302, 0.97552, 1.00001] +bins_high2 = [0.00000, 0.78871, 0.90960, 0.95305, 0.97935, 1.00001] +bins_high_BOOST = [-1.00000, -0.17658, -0.04706, 0.05874, 0.14380, 0.21856, 0.29602, 0.37704, 0.49816, 1.00001] +bins_high1_BOOST = [-1.00000, -0.12624, 0.03898, 0.17022, 0.29240, 1.00001] +bins_high2_BOOST = [-1.00000, 0.06894, 0.26462, 0.39072, 0.53984, 1.00001] +bins_medhigh = [] + +VV_bins_med = [0.00000, 0.24256, 0.34027, 0.41523, 0.49125, 0.57069, 0.63990, 0.69390, 0.73376, 0.77186, 0.80143, 0.83288, 0.86156, 0.88829, 0.91542, 1.00001] +VV_bins_high = [0.00000, 0.41067, 0.51071, 0.61199, 0.69035, 0.74053, 0.78528, 0.81702, 0.84680, 0.87317, 0.89130, 0.91160, 0.92594, 0.94467, 0.96045, 1.00001] +VV_bins_high1 = [0.00000, 0.40481, 0.49565, 0.59412, 0.68440, 0.73631, 0.77390, 0.80647, 0.83714, 0.86666, 0.88552, 0.90598, 0.92142, 0.93987, 0.95659, 1.00001] +VV_bins_high2 = [0.00000, 0.70055, 0.84877, 0.90075, 0.94315, 0.96585, 1.00001] +VV_bins_high_BOOST = [-1.00000, -0.25156, -0.10668, -0.02540, 0.02354, 0.07782, 0.12036, 0.16188, 0.20770, 0.25468, 0.30002, 0.38526, 0.44878, 0.49982, 0.58172, 1.00001] +VV_bins_high1_BOOST = [-1.00000, -0.27544, -0.15582, -0.05404, -0.00662, 0.04908, 0.10440, 0.14140, 0.18578, 0.22886, 0.28046, 0.37898, 0.44090, 0.48986, 0.55636, 1.00001] +VV_bins_high2_BOOST = [-1.00000, 0.03530, 0.13672, 0.23170, 0.29960, 0.39472, 0.54534, 1.00001] +VV_bins_medhigh = [] + + #------------------------------------------------- # standard RESOLVED analysis #------------------------------------------------- [dc:Zlf_med_Znn] -var = 1 -range = 1,0,2 +var = V_pt +range = 10,150.0,250.0 #var = (>) #range = 2,-0.5,1.5 signal = @@ -374,18 +384,27 @@ background = data = type = cr +[dc:VV_Zlf_med_Znn] +var = V_pt +range = 10,150.0,250.0 +#var = (>) +#range = 2,-0.5,1.5 +signal = +background = +data = +type = cr + [dc:Zlf_med_Znn_0j] -var = 1 -range = 1,0,2 +var = V_pt +range = 10,150.0,250.0 signal = background = data = type = cr - [dc:Zlf_med_Znn_ge1j] -var = 1 -range = 1,0,2 +var = V_pt +range = 10,150.0,250.0 signal = background = data = @@ -419,8 +438,8 @@ data = type = BDT [dc:ttbar_med_Znn] -var = 1 -range = 1,0,2 +var = V_pt +range = 10,150.0,250.0 signal = background = type = cr @@ -428,9 +447,19 @@ data = !> data_MET = data_SingleLepton = +[dc:VV_ttbar_med_Znn] +var = V_pt +range = 10,150.0,250.0 +signal = +background = +type = cr +data = !> +data_MET = +data_SingleLepton = + [dc:ttbar_med_Znn_0j] -var = 1 -range = 1,0,2 +var = V_pt +range = 10,150.0,250.0 signal = background = type = cr @@ -439,8 +468,8 @@ data_MET = data_SingleLepton = [dc:ttbar_med_Znn_ge1j] -var = 1 -range = 1,0,2 +var = V_pt +range = 10,150.0,250.0 signal = background = type = cr @@ -450,7 +479,7 @@ data_SingleLepton = [dc:SR_med_Znn] rebin_method = list -rebin_list = +rebin_list = var = .Nominal signal = background = @@ -459,7 +488,7 @@ type = BDT [dc:SR_med_Znn_0j] rebin_method = list -rebin_list = +rebin_list = var = .Nominal signal = background = @@ -468,7 +497,7 @@ type = BDT [dc:SR_med_Znn_ge1j] rebin_method = list -rebin_list = +rebin_list = var = .Nominal signal = background = @@ -476,15 +505,23 @@ data = type = BDT [dc:Zlf_high_Znn] -var = 1 -range = 1,0,2 -#var = (>) -#range = 2,-0.5,1.5 +var = V_pt +range = 35,250.0,2000.0 signal = background = data = type = cr +[dc:VV_Zlf_high_Znn] +var = V_pt +range = 35,250.0,2000.0 +#var = (>) +#range = 2,-0.5,1.5 +signal = +background = +data = +type = cr + [dc:Zhf_high_Znn] rebin_method = list rebin_list = @@ -494,9 +531,18 @@ background = data = type = BDT +[dc:VV_Zhf_high_Znn] +rebin_method = list +rebin_list = +var = .Nominal +signal = +background = +data = +type = BDT + [dc:ttbar_high_Znn] -var = 1 -range = 1,0,2 +var = V_pt +range = 35,250.0,2000.0 signal = background = type = cr @@ -504,9 +550,55 @@ data = !> data_MET = data_SingleLepton = +[dc:VV_ttbar_high_Znn] +var = V_pt +range = 35,250.0,2000.0 +signal = +background = +type = cr +data = !> +data_MET = +data_SingleLepton = + [dc:SR_high_Znn] rebin_method = list -rebin_list = +rebin_list = +var = .Nominal +signal = +background = +data = +type = BDT + +[dc:VV_SR_high1_Znn] +rebin_method = list +rebin_list = +var = .Nominal +signal = +background = +data = +type = BDT + +[dc:VV_SR_high2_Znn] +rebin_method = list +rebin_list = +var = .Nominal +signal = +background = +data = +type = BDT + +[dc:SR_high1_Znn] +rebin_method = list +rebin_list = +var = .Nominal +signal = +background = +data = +type = BDT + +[dc:SR_high2_Znn] +rebin_method = list +rebin_list = var = .Nominal signal = background = @@ -542,7 +634,7 @@ data_SingleLepton = [dc:SR_medhigh_Znn] rebin_method = list -rebin_list = +rebin_list = var = .Nominal signal = background = @@ -552,7 +644,7 @@ type = BDT # VZ analysis [dc:VV_SR_medhigh_Znn] rebin_method = list -rebin_list = +rebin_list = var = .Nominal signal = background = @@ -561,7 +653,7 @@ type = BDT [dc:VV_SR_med_Znn] rebin_method = list -rebin_list = +rebin_list = var = .Nominal signal = background = @@ -570,7 +662,7 @@ type = BDT [dc:VV_SR_med_Znn_0j] rebin_method = list -rebin_list = +rebin_list = var = .Nominal signal = background = @@ -579,7 +671,7 @@ type = BDT [dc:VV_SR_med_Znn_ge1j] rebin_method = list -rebin_list = +rebin_list = var = .Nominal signal = background = @@ -588,17 +680,17 @@ type = BDT [dc:VV_Zhf_med_Znn] rebin_method = list -rebin_list = -var = .Nominal -signal = -background = +rebin_list = +var = .Nominal +signal = +background = data = type = BDT [dc:VV_Zhf_med_Znn_0j] rebin_method = list -rebin_list = -var = .Nominal +rebin_list = +var = .Nominal signal = background = data = @@ -606,8 +698,8 @@ type = BDT [dc:VV_Zhf_med_Znn_ge1j] rebin_method = list -rebin_list = -var = .Nominal +rebin_list = +var = .Nominal signal = background = data = @@ -705,19 +797,56 @@ type = BDT ;====================== ;BDT output names and datacards ;====================== -BDToutname_BOOST = BDT_Znn_BOOSTFinal_wdB_2016.Nominal +BDToutname_BOOST = BDT_Zvv_BOOSTFinal_wdB_2016.Nominal BTagVar_BOOST = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] #----- Boosted analysis -----# [dc:SR_high_Znn_BOOST] -var = BDT_Znn_BOOSTFinal_wdB_2016.Nominal +var = BDT_Zvv_BOOSTFinal_wdB_2016.Nominal +signal = +background = +data = +type = BDT +rebin_method = list +rebin_list = + +[dc:SR_high1_Znn_BOOST] +var = BDT_Zvv_BOOSTFinal_wdB_2016.Nominal +signal = +background = +data = +type = BDT +rebin_method = list +rebin_list = + +[dc:SR_high2_Znn_BOOST] +var = BDT_Zvv_BOOSTFinal_wdB_2016.Nominal signal = background = data = type = BDT rebin_method = list -rebin_list = +rebin_list = + + +[dc:VV_SR_high1_Znn_BOOST] +var = BDT_VZ_Zvv_BOOSTFinal_wdB_2016.Nominal +signal = +background = +data = +type = BDT +rebin_method = list +rebin_list = + +[dc:VV_SR_high2_Znn_BOOST] +var = BDT_VZ_Zvv_BOOSTFinal_wdB_2016.Nominal +signal = +background = +data = +type = BDT +rebin_method = list +rebin_list = [dc:Zlf_high_Znn_BOOST] var = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] @@ -737,6 +866,24 @@ type = cr rebin_method = list rebin_list = [0.8,0.97,1.00001] +[dc:VV_Zlf_high_Znn_BOOST] +var = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] +signal = +background = +data = +type = cr +rebin_method = list +rebin_list = [0.0,0.4,0.8] + +[dc:VV_Zhf_high_Znn_BOOST] +var = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] +signal = +background = +data = +type = cr +rebin_method = list +rebin_list = [0.8,0.97,1.00001] + [dc:ttbar_high_Znn_BOOST] var = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] signal = @@ -746,6 +893,15 @@ type = cr rebin_method = list rebin_list = [0.8,0.97,1.00001] +[dc:VV_ttbar_high_Znn_BOOST] +var = FatJet_deepTagMD_bbvsLight[Hbb_fjidx] +signal = +background = +data = +type = cr +rebin_method = list +rebin_list = [0.8,0.97,1.00001] + # to speed up shape creation [ZJetsToNuNu_HT-200To400_13TeV-madgraph] diff --git a/python/Zvv2016config/event_counts.dat b/python/Zvv2016config/event_counts.dat index 982b31c3e..82f719ca3 100644 --- a/python/Zvv2016config/event_counts.dat +++ b/python/Zvv2016config/event_counts.dat @@ -1 +1 @@ -{'WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_8_94ab1960aacfe6b658ba463d0aaed78413e5fc3a6214e4ca22057dfe.root': 32633L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_1_2297a171dca388374479109f72227c75ea4504f7d03679df75e29ba0.root': 13812L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_6_245eaf27d2db6caaf2d7183d03f683a905d4400407c2b4283544281a.root': 13145L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_5_cce185cd536619fc069319b09fcc9ab5272a4f97d9f16d9975d81c3a.root': 10424L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_2_81d86dff59c75bb2d615efc87ea961ff23cd1974cd585456c0d56ffe.root': 2779L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_2_4fed1ad070c8d6700782fdccaa88b260af5b979908a20b1b3872ad4e.root': 16452L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_3_d09146b0688f6c5f45e4d47b61ada2396cc79ab0eab700d3ccb71b5a.root': 19196L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_3_f39b1a7e6b19108158a1dab16d6cc7ba6f6b11c7a43494f3ce455cdd.root': 5630L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_6_39ed70afe620c623ab432a8ccdd7b8daeed6d8acd42b5574e821ef32.root': 27551L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_5_69ed48716128bb69855a0df09a0c9fd7f62f8b034a941790b40e7628.root': 24722L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_1_5703ea0985fffe6031512fc73068adab2dc3e1cf90f37774266f6bd3.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_7_d384b65ee9bce463ab24eed9ea7252cb803814636f5839d5dc99b00d.root': 29872L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_4_b151668b210a36e10fcf95766aec18b672b1ca93718fd9650568c72c.root': 8326L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_4_ba8b00fc25e0199db465d8c1b1ec364c7ec3b305eb8165240c529aff.root': 21985L}, 'ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213326_0000_1_fd4c805670bae0e9c48f1a1372fd797efdc0a5f5b2245728bd87b842.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213326_0000_3_754e4352422617dd448bda021f6ced2fa9fbde2bf46fa7e7e0b92526.root': 585718L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213326_0000_4_0b8d8d3f90a73743ecda13fc2e1f41c1cb5f094326c0ab5d7e35ad2a.root': 640316L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213326_0000_2_7023135e9d95ea61207e1e762e7f8c276392a5fc3049cd9178f5a19a.root': 226215L}, 'ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_5_012a89bf4807ff81aba3a68725608d8f45e9f620533e50b93e394530.root': 60016L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_12_94bf14ca0fec2b78d49da1053287b43104394927730452fd3ddaf0b8.root': 5312L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_22_0bc75b37b0f149c6bafd3c13595efd484043857a33969260e76976d3.root': 36997L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_6_ff47515da767a7237fe5871c6915e4f055feff6c3c7e6a857fd5c298.root': 63437L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_24_298070d06c5f2a42933222df0b9f850a51ee1e0998156d920c5c0a71.root': 42642L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_26_bc29161c0491a4b503ab35b6758b683e512593825c0fc77c3bfe1556.root': 48000L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_2_7e63633bd4f37a3b46ea9662ab164745d725b5f3c97d1bb29e4e6309.root': 28452L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_17_2b399af008288719eb99bcc22b9596cd8ba663f49d6bbd8f6788f89b.root': 19674L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_19_2e926d5dfe9a9f65691e3b43a533d75f9be6ee5fbecb3469acfb4b83.root': 25024L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_3_7a2bdf3b7de543f63d40b52eebe357840986015c418671e8f6261d31.root': 55060L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_14_672f8086dc50fb0029dc4f02df56aca1adb50c00034b56118ec64d14.root': 9409L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_13_7fefb1c9cf4cb8b4ac51bcc394ffd8f2e4ba0ed3ad1f00f82aacb2f3.root': 8403L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_9_52ff02a99df9011b089bf9cadb3478ffaa3edcb1a08ff994a9393fa4.root': 73383L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_8_a25b65e5bc633bdea490cfc20d537d0ae62282bcc0675d49db56ba45.root': 69904L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_21_97bd350cb9805a47aab8f76e9f4dae4eb8b847aba7fe698c46fec162.root': 34474L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_27_591f4a98c1ae36fe4cd86e301ca183c24d8a81d90cf555fb406f2283.root': 51550L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_25_afde4bedf79491c9b119642ddfba1470382bc14565c491893b2c2b8e.root': 46205L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_16_1334d7799c7e9a3fac4307851a622e720a1f8ff0caff42322703eb72.root': 16335L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_10_84de7463877e81227fa2cc53556b85ba3ca301188e740724a025cc9a.root': 61L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_23_990db23757085eb1ed027894f8f5a8496c62c2dafaa462ad3c8c07ba.root': 40397L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_18_e87784187e4bc9f6e88f8b46d7850985e94ac9af7f9358723acc7f54.root': 23244L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_15_536ef1861670ecdbc094d8e13f545b11cb1e0ecda4e98282910e6357.root': 12865L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_1_7a23df555b6b9c2bb5122a03bbb9074d915ab13f38d03294ab93b3ee.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_11_369b9dd4a437c449a2c14f2e244ee1ca2133f34af2892a821c6b605c.root': 1858L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_20_887baa35015d03ef587660a31350515ad92dbb75b009afe92dd284a3.root': 31084L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_7_6bcf9287f8c3f5b6e5d0117035797c0b9f11ae813b6bba35dff7c6a7.root': 67037L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_4_4c79ecbd89ce843c7b123d9dd65de6cf2a3cb11acbecf6c7c4f71c7f.root': 57954L}, 'DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_5_c715c6e822f84fd191d510c7e2c995d3796d085202c3d73d5f0018b7.root': 5307L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210344_0000_1_02264589f0a5d3d0a92745868847023a90a4c165f95d7ad88b495d2f.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210344_0000_6_50b723c3d902b438d948b131144418ba6e2b58f14bebf8fa1682fe49.root': 3039L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210344_0000_2_b5bf65130886e798f4420c596f0672a3be1d4312bdf9d3bf7eca5847.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210344_0000_4_ec3fc34495e3ec3280c7828e2b83677a1c2449ec690ac1ad0b99f880.root': 1302L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_2_8802ac19928cd2d5794b527d7b2899779122fdcc7a2c1c6698b0912c.root': 3093L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_6_ffd6252191f23d603a3a28301690f2046188e981aa3e221baac33fe0.root': 7582L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_7_5d7aacfbfdedac486d4c55aeb7717fd961f201d763c22ffce55bc9f0.root': 9412L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_4_c999f19905aa2d7e9c6cffc6e6bac01ace1a6cef80b000d2721c216d.root': 3565L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_1_995e2e9a6e1bc1b68075980eb8e895f52cf8f73f2506849e3ed90962.root': 3084L}, 'WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_3_f411a10929ac9ed284af9a97e251244e86d267c2ebc0ac2f48e58950.root': 866L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_25_e83e58baecfb8b733567592207a083b8763b4453373808da8b328001.root': 36456L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_5_1e0a009f95712c711787974319722e0cb44b8a73d0aa5b9cd18601ea.root': 17747L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_4_4b36f4184ddb8ee3ae488e5555a6771643df4addf07fa709d941b1ac.root': 1620L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_8_80c6e3375039f15c64281277ecb16f747afda3dcb94253685d25d913.root': 4146L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_18_756f8493d7ddcfd7d93a029e59c92d7717e86e1f2bc9d6a951a1043d.root': 30412L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_6_622a8b7cecf2dcf9ddde31cb43cc48c800e6b8c32ec81bbafb341f67.root': 2867L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_7_a10d068b82e31813ca68a19ac185b21a5d74be8949529356c2bddf28.root': 19938L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_9_74d53e9272a5905eb55d6e1e52c097e41b08b1870e54d4496ed03f4e.root': 45012L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_5_fc38df7ef22610b5dc171a68b55d8212f1252f139eea6fc9d8a2369c.root': 41842L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_4_dfa005f30f8f7ca334fbb115563183c4f4a3fd29880a4b380a5caa30.root': 17499L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_7_d6fa153422bec782a92e00cfb82391e9d4770f3a5992be29d266ce1e.root': 43621L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_22_104ab16b8d8e9afc9631304b2914842968066be032f48b33a92752f8.root': 34425L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_28_96067d128d1a56094601d2658ae2f86a0d4ef09982b1c76863478651.root': 38124L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_24_3fb43d2af42dbe31be7eec0f1775921237891f2376740a6ff4086b15.root': 35876L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_9_fc037da09fb16828e56d76e429cc48ece6745793c98e07a736988793.root': 21641L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_6_d4fa32172fa13429748a6b15e6ff2d5ff165d3158a33bac8e6034dfb.root': 18758L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_11_a24241db62f4e4026c9c1df8f6d703cafb3df631ff548bbbb96f5d7b.root': 7207L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_17_87a2a8b081bf9d31015d2b464e05a28de66e9e4496a8c9f8a9309ae0.root': 29405L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_1_8f93135d825c756445812d2b176dc43359291cb08c4f42543af638cb.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_15_ecec0c9b31234e6225ee05876d2a83e8415e578fb5a264a6225bc6d7.root': 11312L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_1_cf6f6b1a4a7a3be80c42f1c9975642d1ccd8dff74429a09605b3fb67.root': 22772L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_16_a97f5d4e9366c5b616183f7d2eb8d0ecb9f7935d8dc33aea3d93229c.root': 12415L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_1_dc7e7925433735645d4a9eb90fe508e5537310ba87021cb86edf158e.root': 4831L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_13_f066e111a8ddea976865e7a4de33c221941021cfd3af8630a4586c1e.root': 9529L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_15_f1023e3b080bd190b05d48b48ddc7cbed8a9a3e8dc44cbc2f5106b58.root': 27876L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_27_19da015892e2e4d8924b817305ffa3cbfdd9d7cc2f5b03ce0b8a4c54.root': 38103L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_12_30fdc8911cc56f8bf1efab527a64a8352f6d2f3061230de2412ecdd5.root': 8356L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_30_e0731860c3ff7c6b350a0c409e743f7e99fa59cc0a93a7ade63b6772.root': 39539L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_6_8331abbf7be15ec62365921ca1b6ea4e0b88830b92a1302537c2658c.root': 42817L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_13_45cdc6c5c9e17fae76e93c0b7b11492cca1403b1639b0b4abcb9e527.root': 25603L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_11_56e1e4b8a410f0cddf03f34a4257adc11e098ffc06f5140a805b7bfd.root': 23981L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_8_02cf444dbdd80dfe482f862f05efd4e7a2a2354a828664eb64b16395.root': 21042L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_29_78c6114a2f1e5b08532633742f3a5d336955a61b08cd3b688747b5bb.root': 38584L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_7_dfbd27fb75e9e7f70817643cc01b7a7e17107826afd19e613f3c1104.root': 3485L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_26_e86fdb8ece0f41b67fec416e7d8324cf02892a6b0fd9353cf0c6a1d2.root': 37343L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_3_70274aab22c341157555628e22b2981ec7c01c7243680767edb65b2a.root': 39179L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_20_7742a1200de409bc4976c653e006dabb2bc4aa108e8cf72dad6a46b2.root': 32378L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_2_dd9d773bf8307e2385f503d27094df42008b42d1e78b5b7df85a9da8.root': 15155L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_12_363fcc6ff2b7aca3a1cf23c74e37942bbeeba35f890e28285c0e8d91.root': 24735L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_18_77c33d117108643be369cff59815229ac6c884e053db2f0f42a5d617.root': 14383L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_14_0cbce65fbaea2fadfa6374f04f9f7b934f6ae522dfbbcf89a1930505.root': 10212L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_8_447ae9ca3b1822ac4fc6b62955d7949717014c4c8856b1dac87ef6c5.root': 44255L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_19_c0e7263d7b100af324938bce8ae659c3f93d34f2222d8a016ef1e7c3.root': 31256L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_3_83da6a1659f06129bd2544d7f536ef73f4aff30c03ff2597c05d2922.root': 16327L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_10_913ee14aaebceae4768395a94fdfc1bb2b0532fb664e9357716e13dd.root': 5988L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_16_906e0dc5e9eaf82077afd083dce861732db5e770ce92aa524e0b7192.root': 28502L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_17_09549b25b1774b5ee5a08fc75a5426df6bb10d237dda845357f5e191.root': 13594L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_2_7fe63e57be4268786b1fa2f3ace82cabfd16ef26e66ca70752899df1.root': 32278L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_14_62ac9ed8d0feaa35ec75a190fe7b1c3e1356b49ec4bfc3d8c037f883.root': 26731L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_4_4d7ecc169b13e56f24894406d9c793edcd5fd650355fe4ed5ce808bd.root': 40723L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_21_162c18755901325e173ec94f9687854d952793eba2565d1998206388.root': 33350L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_23_e5a9f51b6d8df005edfedfa0c06b967c4f5c033b878b1dc9f15ea8ce.root': 35107L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_19_32e3a90d88aa085f2d645d39d0a173533631eda3fea7a384043fa15b.root': 14499L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_5_642ceed03b6f61173fd5848f2e89d64dfaa446331a212348e74e4905.root': 2245L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_10_312a5500ddb1e2c03a94a9d35a311f1be68e0fc127b59a18cf716a9f.root': 22818L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_2_86c9888d8907c1022086c7dc75a75fdbe425258ec995a65187aaae31.root': 647L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_31_ccae5be5dfd9b9a45fe23bf411a8d47d1e0d1579951558aac41206f3.root': 40136L}, 'DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211140_0000_8_5dc49ec5c1e2964b7b97c79d88f315e99d2029f01fb7dc33683f9ff7.root': 35589L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211140_0000_7_e118a64b3dc15378b2709ef3f623d8e66fe71ac832dd6903650165c9.root': 22793L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211140_0000_2_a2d71bfdb579d4a2c6a4d97f069edd82ef07eeccbbc750c8ca8f44e0.root': 453L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211140_0000_10_ee16bf61015a30d0156a6ae665080023348a37124fc11bee37da9b12.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211140_0000_4_731bda1dcd206f60f12404212f7027b071ebe93c47190c020170bd46.root': 7751L}, 'DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211306_0000_3_fe1cb50a461995a5a835afd7ce7e73cc24d9ae0d848d23c35113983e.root': 3249L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211306_0000_1_d3b503927ac6c2bbaefa0f0ab9b7412783042ea3983f97d643f9d3b4.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211306_0000_5_d47a3964ab6a4918eec60959ca7666e7c2d02a95194a6c54676bb690.root': 20656L}, 'ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_3_60f402a2b07436fff1183eeb96ecaec24a4cebfbf9bdda43298d166d.root': 5106L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_7_5b53d8c5383ccb79e60f284b17527b17cd1a4c2290e03d2243562db2.root': 11469L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_5_91d5bb5d2eab21c0443bebf83f5499ec2d867c769f46ad07e54b540a.root': 8168L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_11_b52a23e740394f84b7aca34374de9ba5933e0dedbb0d2a8f1986a336.root': 3176L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_1_bf3ca7b31b5ff5890f6d614e15a6da4a60154bd9456f1b2923ebf482.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB84_190607_053924_0000_1_97142654d0443e2e7395500ef43e101046da0d4d50a4ee34330b9844.root': 17915L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_4_7e2268a5acb6a61252dc16e40c651d53001e07f52c49bee1d0104bf1.root': 6687L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_8_f1a528fa00b707e6c9ddc3f44576ef3418f8d5568429c3a919a59a47.root': 13088L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_10_a1e58b1c85b8d48c76a72616526037c34409850153a7d26b4829a5e2.root': 1612L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB83_190607_053836_0000_1_fde76c4222bf3eeedb0df7a1028f21e8bc359ee10dfe9d1e56a8f47a.root': 15935L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_9_cdeff43aa0568dce44f1b9fa2ac4f1afbebd739f99e598a3f27b11dc.root': 14729L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB84_190607_053924_0000_4_bd29d2b3e4804ad79fa0899ba9a45bd75adff062bf952e8a31ccb53b.root': 22691L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB84_190607_053924_0000_2_0d09e3b6755fc836c07ce0a74e4d8093e97c48503a2be6f37f99b9c8.root': 19542L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB83_190607_053836_0000_2_6207aacff63bdd6ac498a7516200dd11efc6e66cfe527ea8714dbf9f.root': 17525L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_2_3be70669fea0dba791b24ba9d1fe5544202a582d5b5ac55753908e58.root': 3573L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_6_cd92fae854a7e7a99672866fe16413b372eef7e82cfcb790a09af03c.root': 9844L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB84_190607_053924_0000_3_d91b358726d1f4a5166f4d8103bdfc1e0bf28e91f6356f6d571a3c2c.root': 21072L}, 'WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_16_a2beaa5a4d37028fa7ee6760c27021ed27c5ff9b84eee06550899b2a.root': 113293L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_14_c197454559d43fe1ffecd80543d5cd332ba9ac3702a8ad17c906ea38.root': 81697L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_6_7c318d301739a10129eca4bbf67b317a9113db70ad083e30e441f161.root': 216363L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_13_f3a8c29dc4f74dcf8b64461a76afdb3ecc113882790270cb749697cb.root': 65225L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_12_d65360165deaaf3cd634610e3a6d81aa6f3629b16fa9af0eba3b5cdd.root': 50891L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_17_d5c8adc8ef01186c4d74d7d14b7fab9e039748427ffe70c698b2dd84.root': 133810L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_9_9268e809a234e778d82d1a9b2e4d64f9bd730037a2b94fc81f44f8c5.root': 264887L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_2_1e8dc5ac73d430ce7fb2b1960b8ed1e746fb57afba5fe7f2f53188a9.root': 154380L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_15_7b593288a0d347502c5eab0589a3b27a22c60d096b8b5ca58031f989.root': 102149L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_11_05b8cffd88b3aa6576a7fb085da88aea8ce68a5a0b598ccb0155d29b.root': 30666L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_5_dedfaa6b5be6b3d0239506d37badef4506d3c551cc44367c71dbcea0.root': 204378L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_8_880b7d81c67b42b195dd81527b10dcec33f35ac0f4f30b74af5aadea.root': 256177L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_3_29ed3d3d80a3f1b10e89d782ba4f7a443873901d1001a29ce38e31bd.root': 173341L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_10_eb07493e825c01e66c9c8592ce330eb21ba9f00f422f4500e37c20ea.root': 10366L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_7_f5a6c5d7c63b23b769236494de3509c71527db20d5cc766364b6345e.root': 235487L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_4_035e8c0eb934d25383a8da98fc85ebea548f5354dd01fa0c6fd8b780.root': 191558L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_1_50871ddcfa285dd48fb0350a6ae37dcfa4dc6bfb68e5cac7d2c4dc4b.root': 0}, 'DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211021_0000_1_cbf3c204aa47f28861ad420564e6806d624424773c35d168dad4013e.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211102_0000_3_4991ed259afb0aabae4aad04f512e18b398204dcd0b90c3baf4d68e2.root': 20601L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211021_0000_2_21564f60b5a0967c13290febdb3411b266413dd68a01e23ad58a427c.root': 2267L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211102_0000_11_4616f9baff5739cb0cc9e7bb19e69442c3e1e32a7bbd755f93182f9d.root': 11291L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211102_0000_2_c1c733a5575b22b40476441ced55d7db44a1597a012907db1df636a4.root': 12141L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211102_0000_6_d67f81a28adb72bbca1302747cad29f3d10aab9714f53b4992a8a2b7.root': 22208L}, 'DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_16_936fdc2fb12f5c86ec600a4676385309b48aea9d697fbe62da59c27d.root': 2675L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_32_8d70aa391d5125e37eb5a4e4ca49e359a98a4aecced9734e11a88413.root': 1567L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_15_e64422c2f72fa19c87de5e689ecf6db7adb0d98ce795dcaedeaa06a9.root': 2588L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_34_cf3e86f46559f15a25da2aa7bd57dbe4aa9cc927dfe65ac991a2c93b.root': 1684L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_27_614cf652499f5535b5da944fee7335236c8e2a33eee2df1ccdd077d4.root': 1190L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_16_549433e3373271efbfe2bbdfe0f872e3dc4b7c9f52891ac391e7a83a.root': 473L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_20_01104fda5fcc90e2ae065234e590ffa4947e5d2c7ba30597762261b6.root': 786L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_47_483fb4457bfc4f977050fa29189b25057b207a781fa84afd917f151a.root': 5006L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_33_e35ed21567f3f6bd17dc0957d56219e1a57c32f8c92e090279f60789.root': 3895L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_28_4094824f99c2a18a11a8f535f9500ef8190c34dadbe1bd806f0fa55f.root': 3506L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_27_d89d721aab0fd087dd64739d5b7881f763510187a0bf5fba53ac362c.root': 3411L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_36_6b911aeb8fad80df4270b9707b2fbf6311cae5a7f033a4d11f37b82f.root': 4122L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_65_4bc5c01b57e6c56b63a183b31edae3ef993711ec4c6f5e968d093993.root': 6227L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_64_128aa618a3241f2a5f3219dd16b65e9a24570e7d26c0654dd84a8c03.root': 6181L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_34_0921b077d00c0cae0d73d7a220631ff72f01b174ec5c8b455505badc.root': 3973L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_32_71cf3a41caf263c96b56efa726f54549d76f48360599d382b5681fa5.root': 3828L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_17_dbf0f323bdb7e5cd8097d3f2becf2daa06dc4a203948c62aafa5f6a4.root': 520L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_38_684a6bdf5f4bba1470f0e5b534c4d635429887d83de5bb396d387039.root': 4253L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_18_381efa4f9fd2b47a217166d37cc4095c11c9175320141029bb550167.root': 573L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_25_8bb3eab71f8b6c7d8293e42d0e7d8b7a2f7fe44716f9f46c52f30b87.root': 3302L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_5_84a5b90c92cd59276acb3582b8072ac2b66f33281e83abdc7ffed98b.root': 5221L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_19_41337a331e1785bd78dae350286b9f7eb1758b78163eaad51e0b15d3.root': 617L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_9_44ab91268449df9c25abe5ecfb5380fde9e0a85aa17ae13936c4124f.root': 6526L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_41_455b0d2afcc68d6b572b8b6b3a753b81abe1befa6c19aba12f2de81e.root': 4546L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_62_5076561ca65a5357f91a8ff037137ab889e65039b2ceb876516361fa.root': 6078L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_11_e16621dd11825c1f553fd506e5ed8ffe0b72b0314fc19d269291a9c8.root': 2294L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_15_647387b73452c3c6da3856e96ae77025140f715709bb85b8fa2c7c36.root': 419L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_35_ef289447ab4499b0bdabb18a747143d661a9993c27f310c5d69350a2.root': 4064L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_19_1260e1af10745e4b887a5584c063ae969debe151a41be23334a48b80.root': 2887L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_10_42a93afaa37eb8bde4f76378748e2cab39c478a642bcf895592d85f1.root': 2288L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_42_c4fca61a5ebb886f27d1fc198f0698c0050454f47cb897b6e6698f87.root': 4604L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_37_212d984e1284d0bc154b36c3fb622b384cb980424a74f9514a466d81.root': 4178L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_48_cab8ca704554ff58a742844ff7ef93e5894d15732bce9b177533d638.root': 5103L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_49_8496a3b8216898d3265ad847e5e9e66dcb2efc38ebc4482db14d56e4.root': 5173L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_31_49526fc5afcc40a71a9ba78b0d81f5b3626ecd7f008e67f7b4969235.root': 3732L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_13_03d69c8176d38257e5191951b1248e8b427ec571aab8f3e7164c8ac0.root': 2430L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_1_4ab817926851993d24f8a7705de18bafcaf37d51463d3f39312fc17d.root': 2256L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_45_1918420756fba9ae2116df46f82aa428d852f1ac5dcc0a455073fb01.root': 4848L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_6_d9688e0f8377e37d7fd31b96471a9f096644b0a64a7d72bf21331a50.root': 5920L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_12_57c27fdbba20be53099cbc6b50b28d001a17d4e93752d7585f6a5db8.root': 2385L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_14_4b50efd8edb47621d19de3c5cd4548fb4ed169fd7953bbaa562b209c.root': 372L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_6_036f22e2163c33373fa1cd9e65f45f10a6842822ec4ea05bd6ca9248.root': 1980L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_13_70087c6d17bba152e4f1f565bbdd4962920626ecb04fb3c4993f097c.root': 318L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_21_1e6dd6abc9dd63028ed19be76dee0284e191559bea4b89cc1a56df6b.root': 842L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_55_7af19982a846a0a9700d9904524ffe22387a35695e749c2443c0542f.root': 5703L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_54_a6f44b48bb56f16d0197b97be48b8b5ecae63e35f2b887671e6de780.root': 5610L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_30_c0f620da9a106e70e4540643b455bb08af74ecfec722e0babfdc84a1.root': 3612L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_7_945591357e8be529b4bad1b2d46850c7c89a1659b6865bf666621df3.root': 2033L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_60_d3aa9e1afda9897b33ae29e6954c9976ee8bf555b833d84e9dfe0c5d.root': 5976L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_35_7c3e5cdc7a4ec270249ac0b90a3c3715a8568b903181b71e5e81d6a3.root': 1757L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_40_4278e76ae88cddb57c8e35e6cc89aab8e4c513a61bcf46af0897bc9b.root': 4480L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_63_2c6f50346511c59bb42d5b9d8bb66031fa1c867ff4f7caa8b35add54.root': 6097L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_56_a4661fb91d6df0ee09494b8951bf290f10a449d50ae2ac3170d6886b.root': 5758L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_52_136086862d8ea7e644a6dbdc8101b1c2cbaa6aca65b888940cb6009b.root': 5442L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_3_4d66b871a3fc8cecbdd8b1e06c825c5eda2fcdbcd1b347e5604e2bb8.root': 3607L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_17_7f079e829cca4fc28367312b6c327f4341bcf0a95fb5b68c2dc80938.root': 2767L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_4_c63ac7cf84b200a24e81d3c142dada589de8774c55843522122c542c.root': 4396L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_23_38bcec6d8f6c5cdc7b60cfe1bb0a57838e3980dac5e26a7f05491d25.root': 3206L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_8_7ba9b7dc0db2eaac4ea50399c7a83c6abd23228cf0ef2fd5f04b1e6a.root': 6477L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_59_ebc74305a873b1ec5954b3fdce085276620d8020bcafb3696164d0b5.root': 5898L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_57_ca5501bb21cae5aef9860e16692819cca11c5b8bc289429d070b0854.root': 5820L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_10_2b811c6b10cc9d20060967548e7cff06c8dbcdd4eddcaaabb51f95e8.root': 64L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_28_40e2ab01188d8fdb2875b0a6876d00ad97636cd5e89809350b00c880.root': 1271L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_1_3df224fd7c891a27acc8605edb01fb1cfda756267a76b996d11aef0d.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_67_c708d2aedc17a754a27474cfcef979ef259c453b03593eb00c754be1.root': 6350L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_29_738694c569dd3aeea39d73a719b4f79189d6f6b39e00932599959feb.root': 3514L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_51_c66e57f50122116c955ed5df929db28e2b1321fe099e2d9455ede95f.root': 5389L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_3_0e427aa5afe590b241e155cc539e280c312e7559bc2aefa9eee0d143.root': 1357L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_9_1d299474d185674d89beaeae1067b7e67de6c4e3feda4754e88b59aa.root': 2198L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_18_53812e3a819afef3527f25734493471bf8685ab370352098d27467c4.root': 2823L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_2_5b93b6639e5d01082f3b213f6484abad4bf92bc81e07dbdf2ae7a1af.root': 2997L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_46_679b24244479d39135fb5294d36756c2db2f4159aa1a500861d0ec8e.root': 4897L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_50_e571f13def547fb138dba89f83aaa7799b7c8943cb75594562665465.root': 5302L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_7_194a2755a20f05a30c983b46e3e552f5711be0b5f823625a7c677bf6.root': 6394L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_22_ef50ae4fd8b4c90578a050fd06b45b89d3c2962ee84921a4f325d5f5.root': 923L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_43_a17f8bdecf3402d3aac144095d3629d1b2d1ac8f22b13bc23609fca0.root': 4671L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_5_7f86d3cbaba332414c8cd481c8e88442ead90cc5086944cba88dadc8.root': 1866L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_14_d35f25027517379e1395dfef798b74d01eef420f55a2b0dd3bd85948.root': 2521L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_21_5922b472ab5f723c09b9f232ef79d9fdc271b7c460e5a05362a64bc8.root': 3105L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_31_b4f7f247fb78dcee6e63583632823cf1012529fb207f5cafe42acee3.root': 1508L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_58_3fe3fa606aaf326532f8324a0d115249c7ee834c612be126098a049b.root': 5891L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_39_979bbcbefdce41765169e5f1f44eb573dc826aa0eab1dc0c8a557cf5.root': 4341L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_24_e7f3f4f1af3c517c003ce1643f6f82e9100b5f713732ba1a333466cc.root': 3257L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_25_c70ed3f5898cb3da5da445bfd24a83e932ae00cc797184a8e5b803f8.root': 1091L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_26_35fbca5e3dbc5eb3e661b626d77a5a55d2fe59e5a19904c42c734334.root': 3355L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_33_b21c0ac9f3d8dcdd0584502f547c660f697b85132cd03da07c25d9ab.root': 1623L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_29_f56db0d673728b4c57655397001296df7fe98b3a3e0a77acdeeb93e8.root': 1325L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_4_bcf5e81af0b72c7700673b14fb9846c139dff5291e2df2cd45b60403.root': 1812L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_61_b4255a356ab41bae1dcbda6801bec8733fef2e43b5c3c1f1df086726.root': 6025L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_24_a14cdab27960d900997faf51d47f4c8b40904fb2e40ca763d9ed95e3.root': 1030L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_20_2d902ff20485a7e3ed80b95b1919cbc952520ba8927857ee839f888a.root': 3053L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_23_16510534ccd366018c68357ea6b1db9437d8451743cfa8bf9adf1e84.root': 979L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_22_d6cab1f853cfb70cef11cb58c4ad9cc76e9932c2dca5da0fb36dbf9e.root': 3154L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_66_d59803fb855b899f78bdbe3a5edfdea8a13774b8effc82205435f76a.root': 6282L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_12_7e4ce2c49dc19a7e2e09c7ffca21d69b479963a738e812b1480b3dec.root': 221L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_8_981a1f48456e20c19a4d9b93960377a12614b91e634b61584953fb9b.root': 2128L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_44_cb72bdd9040cc44219bedc7af7057e1d6046ed251a252347d75ca7e3.root': 4765L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_30_8bf216e032868800544a4e63972cd3f1fc97eb1c602eaf66d99eada4.root': 1426L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_2_d5ebf9eee8bd0e5000981f911150bd601e54032ec0bb4dad5c7f5f73.root': 687L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_11_5e49fe4057af8cc9d66422bc14d212aecdc2d78c23c69574152eafd3.root': 165L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_26_246c06463cb9bdedd25ce8c3deb075ec4d9fdace4c2e3899d8cd2017.root': 1138L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_53_22d311721ab1937e2ec12511f33cd39f9e9dcd90c75ff2bddad1ce75.root': 5531L}, 'ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_5_758ae4a0eaa5f141bb52ac6ae5fc3e35b1b8b60cf900c0b81da3d215.root': 50472L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_1_55f2fa102e7811e0003a6dc040eecff53f36fa4cf1985dd9fae1907a.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_6_e95cdf3b5dd45f77b6c8378e7911104cb1fb5c2b76bf62537a32f65f.root': 56229L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_4_be8aecc3cb062ffb93229b555253a0200332be3ef8a0e628a50a75ad.root': 37646L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_3_1514ae0e729223ca0d5abb08c78c2f3c6ab1c2de81035227600855e5.root': 23828L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_2_a5f0e1dfc7c89c583d851a2fbb9199e81126db321eb4a920ca8e3072.root': 15194L}, 'DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210103_0000_1_dc1b6c24d69dcd59eca271c3de974dd8a2ebcbc9186d2763a0500488.root': 10958L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_202422_0000_1_99b1c841a4aafd62779a593beb3ef83802eba96c509ad9d3d1e2ecdc.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210103_0000_5_9e2598d90f84e1025c5cf800dfd9502a423e926450c75ca1b07a4c64.root': 14662L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_202422_0000_4_336e259b79437ccc48e060532bbddc108b8c66895576481e5cc65311.root': 2364L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210103_0000_4_0514eb5d6f9f5f90517d2412181503404e619930694dc0e37462bb83.root': 12879L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_202422_0000_5_be2fac3c0822de7b9bd7ef5a87540ce6ae04c074ad3e646b952b8aca.root': 4194L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_202422_0000_3_4d8585376a1d2ca1f537f9ceae091e6290792a8007b930b9ed4daf08.root': 393L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210023_0000_1_6c0b0f2045e1714485ed104d81b64a5fd8e80559e2b55a191f3fd10f.root': 5479L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210023_0000_3_5e2b04820593450679ada0c26435c0971c445ff92bcc5391b0861a05.root': 5872L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210023_0000_5_78fa5a91f3bee8812ceae0f6df01b866b778a0434824a18137745ff8.root': 9673L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210023_0000_4_8dd796558b0760ec56ad4198381e6a851a183527592c385d9b7a7cd3.root': 7843L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210103_0000_3_6165606c66b1615401794d4414d197a77c5b4066880a28f0b310f5cd.root': 11167L}, 'WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_4_6c277a5d177187f7789c0ee3ec6cbb15c479854153e471438ed1c758.root': 160274L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_5_e5b15f06e878cf8ea151b1adf3673f6ef0510d1fcb6aa0da490c64d1.root': 223779L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_6_b583a5fd4bc275f462480887ce6e802e3a5acc5d93e30fd11e272886.root': 327678L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_1_9b76c123c9efde240814b14faaefa9767f199d3e665a22129e40239d.root': 386L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212835_0000_1_cecb7e3b3e0e37e71e48012341a03d7cb1f07a48df064a6b22156a0c.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_3_b5f271c9c6e3440ad5569c2b86692a97016c731ac93bab91325a8d9c.root': 94285L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_8_4dad18d6d6dd6baa245e6b6c831c3e9ae42b2ddf34f9d33a0d43d0bd.root': 465132L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_7_e9e89cc28c78bfeb8285760f2d0fec8b54ee1e44c42fda4b1fddd139.root': 392809L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_2_0cdc3dc6e381f0c5bbc06e0fd55a11dabb9b6de53f88ea01764028d1.root': 61422L}, 'DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_6_e3d360a656e6beba39e614f41e14c0874367a3467613607d23998f13.root': 818L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_2_e4c27a13c3432f6be934a02ed4a2da92823ef85d379c5f266102045c.root': 459L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_7_7947f167d9a40b9c3185625e07ce1984c1ad43316c9500c125d3a4c7.root': 873L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210624_0000_1_c10a9a95110507af23b76fe1715dc3b5a3fb60ba9df65265fe36abb4.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_10_d5431c95b3e88eedb6dfe28ad8fb3df4386a30636be14f8804849387.root': 339L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210624_0000_3_1ae9fc1ee481cb6a08383da4c5a84497ef3dd3bad573b72d1a0cdd50.root': 145L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_5_20f66b29d027751709d04c6a55cc67f7f1525795c804ef098231199d.root': 694L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210624_0000_2_ca94b6b0cd1a2ea2833aaeedee2e8a5002c00f5db8fa89c55ab62118.root': 139L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_3_b2f1f5537629eb715b18d56686e28081c76239050f1892f8b1370f4c.root': 473L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210624_0000_4_4f08cbd178bcd78a391bd29be81f393b82f1277e2e7f9c19af2b20da.root': 267L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_4_e55490dc565ca486a46ede6df9147a9b7f3ac62f44b8d3a4dfe33350.root': 583L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_1_a15e0541aa7e7e610eba81f75cc847306859eaf2b3ce5350739aaf91.root': 332L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_8_5a60d024219d2e29f4146d456b2a39dd571378cea195f2123812c4a8.root': 990L}, 'WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_2_a612b25c795803879d758954e6b53759a4992016c4fb5e869744f074.root': 16182L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_6_40817ae7447da5473b1c2baa03bc055020c5d640ea46f2fb24d15fa3.root': 192081L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_1_2c55dc415af61d018f1ab1908b15eecf3fd05ad11f819a33fd76f27d.root': 10921L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_4_49eb569d21499bf06da73877fe05f8b7c5502acff9db7c82fe98b9f1.root': 87085L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_5_91aa8cdb431325e1640b54d68eb30dd5f8af1f54f1447a0da9fc6ade.root': 134785L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212516_0000_1_062e22ea9a53a29d86a6d1941b8a7a342d3129690d98ea6b839a658f.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_7_025c415cdbd53a12f738c464e9babc1407cd7f07905ed0ea936b1b59.root': 235282L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_3_ccef1906a85fb19604226a247129518892b119b1a66bd4f795f1bfe8.root': 49764L}, 'ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_14_4f8a29fe193398708d0966643fbdad0af91efdbb217dbdbed2f2513d.root': 66975L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_1_bbdccef3b10222c4f047477c8f1754739ecd899c897fc1fdc87f3077.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_10_49ccfda5b35d5476b2642330259949cf147664b07aa468d126c5ae68.root': 13480L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_6_af138b99dde593b7854723d13b4d19b3fde8c0160c209c35cf1a96d0.root': 142857L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_11_501db3f009bcc7605bee54e09f3af451ad6fea78becbaa84e529b78b.root': 26933L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_2_4d6c3a436abdb9f6681a7c41fbf33aa406f5f272e896e00e40f9e8ac.root': 89402L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_3_a531bcfe7b5195c0b8f1347cffa6b084464936761caad988ba531747.root': 102714L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_5_50f28c4215b53c68b34cbe1dde84dd16d56032f3cdab5705adb151fa.root': 129510L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_9_401ef734d578a6cebb5dada6613ded20d353a4fde9c0d63b91b18ca6.root': 182738L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_13_bd3e42d469b5009ab2ffc0040d84383824301823029f62855758347f.root': 53786L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_8_cbd5c0bc9374ee91b57f73fc7f2d69b1c4b3b21dbeb1cacf572e8d74.root': 169485L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_4_cad24134cae9c2a18d35d0891c344ef2fb2c002e38e68ee5ea9670ae.root': 116161L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_7_5914f81442fa99d0daa17c7767d0a4b79831c89750dc42d3388ae70e.root': 155855L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_12_dd898ed5e8037f04c58add92dacebe1f086e3906c63623e095eb1f8f.root': 40424L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_15_9914a75df101afb5f8dc8aee763de12bca4b7823e0aa8f05e7329d1e.root': 79330L}, 'ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8/tree_-v1_190523_195606_0000_1_f51220c89576b2e9d9110b48cc9632bdb568eb1d52922730022f5a88.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8/tree_-v1_190523_195606_0000_4_1accb772e8a95cf219c2bda139b57610ce3d54748989769160d2dcd5.root': 7396L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8/tree_-v1_190523_195606_0000_2_c7e8149cda04204e04da5ef82492b7e33932dcea3f32c856cff8962d.root': 679L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8/tree_-v1_190523_195606_0000_3_f7e4b65e48dd7b487b0303f9c46d31cee8938c666547b5b5b520c1cf.root': 3976L}, 'QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_50_76f5b7f40eec30d347747a8d002a7783f3e3240196d273079d355189.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_59_754541388aca98d7115014994e8bd1fcd08ab0978edd733399932d79.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_17_5be07b7e057c472a57817c203c20d21ef670ca0b13a4ef4720489cc0.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_19_6c9a1dfe7de633cacd67cb680f8f8f3533a8a8c3ddfd821f72f6bd2a.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_29_124a5f8c0953b7ca3fc67a0d96283af32faed0e64580868a45c3b366.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_34_e25d9fc074090a6b6e58dbc1d1bdf752b0baefb01d18d480fc91f861.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_55_5ecf3abca8333038e911f43f527132ee685a214cab789d283fa0632a.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_25_cfcfb28f2130dec6402293a8ea61157b39498be80e22c5237cfc6d59.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_53_98222173431b8da3bebb92365640ff8b79cd42a20fd4490036d0c22a.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_23_651b92618f932cedde3fa5e267b0e565e778c3a62fa3d840ba7e927d.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_38_f3d688e92ad8c07010734a99e243c403ffc1fed8c6113439ed0e4cf1.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_6_3fd3a6d559b7a7c02dde501637f31e6703c192f937a4383c1001ae68.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_37_fcdd951c73e44c0cebd08e52cd5a4481603e2e9292bcad74a9da5320.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_7_c964a989205268a18bbcff46a1dc3ca0b5383f32d3c3dd3a47434d3e.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_5_29cc00a99fd99091332003358a8e12276ed184fc1775ff3dcbc53680.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_45_dbc3bf153ad8565e4dc9229a9a79df7c3c45bf560b4b906e8b4475a6.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_51_d18692fec4039e41dafe17ff983c31161deea17668629dcae0c57996.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_56_17f6da5cee0b12e6da6e5054acf8e193ed388046759612b9b456f264.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_33_70822c9c796db889c6eb9881a57a23e55d47630a0c1ffff5fc2b884d.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_58_64351be9de667e1027abdd3948f8c784d93ff23019dec771db7117c2.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_11_48deb95e6a76919ac6f5205d8e7dd1285b79eec6572f6f03df4d9e75.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_47_9654a4a8b5c87df84e1cd1e5d68cdaca3ccefa7eb754f7bcef74b82b.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_2_40e3e6644932bd7350fe472e6d464189d34b2b117a9630f486eb9a9c.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_57_7b5d38bd2bbac48cf25717cd416f3dbab782b93156cf1fffad06190b.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_42_97b10e7582df207d68ae93a00929215c01bfda5b281c1b737fdceb54.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_3_537b68051997da16e0eae28b21a7d43022092400a0ef0dd2b05e483a.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_36_697bcee493d7d7384ac3678b105737acfef0d97254a14d5d19a98ea2.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_52_9c5752d4de3b1bdb073847cbd9c712ad93d94affc6740a9b178072f0.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_8_04794e26c37d27e6886db54f87c9c4899f5367221e65d038fad43376.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_48_9a9d4d0ac0be1a8e51ff6a74cd4ffae4eff2c900e2dc2a028715d398.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_14_2d9b212a8fd8d766319830bd248d8a8446528f33be13c226bc3d6078.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_28_f33b94b24fa8801a84ebbb5236163ad1624c6102f4c095d7bb4823d9.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_18_978d1cd881116b04faed9e40cac9bac7eba5d3cec39f93291452f916.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_20_95cfcfe3018024d1922cc341fb069e04470e432d21a8ef3f1604b8a9.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_35_2a8a47a9bc93e8e86c0535d8e284d0dc25e631464a2db064eda0d755.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_43_ca08fcd9f0f562119134604c2a4a47115b360c80c4ef00147baa0c74.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_40_c0d4f2c6accddbcbb3dd8a162b02175e9f7efd1fc8d41dc08f6ffee1.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_13_b4bf028b2c6d2da24ad6cc6fbcc121c3525b5ae07009196af8b30ac7.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_22_866e4f3475793d6614765f76ebbdc2420c8dd680a3dead10c9523a6b.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_49_8fe1f30771587a79ae1095a5d38851d3a24222d239a6028b16d2729a.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_54_10aaff71f798b59c379420e588958314a970988390529ff02fc41cda.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_21_3626909b3da9e0728f2746ad9c0e7ff7e1e7607b32f52c6918bf4197.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_30_88cf4128a3bbd262543d95b3be2d1b7da43860425569599a50283f3d.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_9_9a54e29ec6115f4a8e948ec6a319c5888a33d91250051e315ce5ab78.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_16_5b4af9c4c68056a2c370151180af36188f354d293dd67360a3f6d698.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_15_e8cd0cd2a11c29a091e787bcd5030ecad0f5cfbdd2ddd84c02b3e84c.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_44_da4c537ebf82715070a0a701b517391dee17d64e1cc0da01d1f5240e.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_41_d64aaa6a2e16578a9f0e5731a6ae017917a66d05fbfd4c8aac47b3ba.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_32_5041771f8d1b8c5094efc2a2807b5fa83c014104df08e7dfbc074ec0.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_27_d2ab40604fce9a7aea3e6181c2be8090188d279289dcab7553802dfd.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_39_8142dffd92e170e30ee28d4b4d6ca1363b8794f3734cf5fa835e41e8.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_10_c65a5c8247462db8076a5973fc120c7d93833031539d51b78de9c3fc.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_31_6221f763ff3d726b1f6c14da0a83442dacc15f8071186da49b252de4.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_26_f59c83872fea4f1f0b4a2dcade5ee7deface7eec0560f7c93568d4d4.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_4_858c42ed246119dd7d3676625d9b372c15d13db6b67df53ce7a5805a.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_1_2a770a9b36c3ac5113f8fa2f16dbafba5d23f642ebc19df783a3ab6a.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_46_74ca8aab9a274d495b31d1aaddde646865ab16bcbcc064044d6555e3.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_12_98c885a96d45fce1a36b0107e80216e6c6f4e3b63c49acf89a1fb9de.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_24_14ed0c9749242262e1b7ac0365333d7867c64447f2d8b28a4e1b496b.root': 0L}, 'DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210824_0000_2_05d8c6ac27aec613232aa7879b178412b75f42de897a6a30ba53d00a.root': 2342L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210903_0000_9_59ede02de1258d16232e81ea486cf3d3e7e16ef54ecb9328ec4df7cb.root': 5977L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210824_0000_1_c87377c4871090472072bbd5be852e76c45956bf30a5dae1a3a3b4bc.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210903_0000_10_cdff6bbe073161520f8d59bef600aa571c90530f42e27561b8a8bd50.root': 2506L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210903_0000_5_d0592668d15a67867619c603055d228aab5a799d01f66030933e6ad0.root': 4869L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210903_0000_1_080015323e046f2139453164e19dc5f51405c9cfeee0a871b391c227.root': 2494L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210903_0000_2_73ff6e7c9e9a225cfcf31a46c4b7662f97a7de29a2741db0cdd51148.root': 2576L}, 'ZJetsToNuNu_HT-600To800_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_3_859df791734b881b5224f40d7e17c3db8c84b4e4a93e378fc3e3e2e2.root': 450146L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_6_2e35356f1f6a49b3f56d3c6354c645e307ca4c3ac5dc05c8d622dcb1.root': 1014095L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_5_76ed071403ecc7f84fe352ad31cbe0574c452ec897e88ad5fcd0e095.root': 724677L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_2_c3310da000eca94cf6cdd8b23b6d0c54b7ca1323cf74d682c14cc40c.root': 253295L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_1_e47616a62e80bd19ef87089bd4fdbe0d3da40fe08c83386a09fb9cea.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_4_ebb39da605f0ff5c46e7b8816187efa350e4ea1786cadad748d190d5.root': 685916L}, 'QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_2_83708d1d697f2044d5d4f36cf9cb880f17b70ea1441fcaf93009b3d4.root': 56843L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194813_0000_3_f36b3fb1209248069e4cc4da1c6141ab4d38198507d88c0dd8a04def.root': 29028L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_8_f1640796668213e6f817af3c7c0f9fb745db3850ba80f4615fc51892.root': 133506L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_6_9cbe97669edf95a85e504c6c4c199cfd56fe434d1dd92699fef46a08.root': 105719L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_5_c06ebe40669724a467c69efc64e3c7653f9085636050a9ac581fcb3c.root': 101253L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194813_0000_2_098872408bd4e8566ff267a2d1be761b2821784429a879a1a26d5b62.root': 12394L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_7_43ff34f506eef707e76356f2aa2e45c2a4618f0a5dab24aa58b53b2a.root': 122568L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_1_a9c3ad048f6d50c95755f34626da57274080d02fdab2d7a3b408c37a.root': 47948L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_4_f20644e4fd0a1b17380920c66a7b5bf362a68c062786a3320aaa5b8e.root': 88614L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194813_0000_4_5797e8d4f60fbda2ed39c80d9424005f06bc87d844de807dbb195fd8.root': 42927L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_3_a96240be0e219c54fdd220bdd07d943cc2783e7c6e3e92b157f77fd9.root': 73729L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194813_0000_1_85586474339eb89a78654d14ff8ba72a7b1a89f3999550a26ecfe992.root': 0}, 'ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph/tree_-v1_190523_213825_0000_2_75981b5915b13a9aac69e3bb3509fd21366b3ded7b1aa61aa7c617a9.root': 174805L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph/tree_-v1_190523_213825_0000_1_7ffd8ce623a12a400294d64ed4ee938bd776f2d94a65462d086e18fb.root': 0}, 'ZJetsToNuNu_HT-400To600_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_4_7d06d0f72497457d312cf842eec26fdebbae7c68f1a3698cda01ea30.root': 559582L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_6_43bf66462bde076a9aa905b92d752ea94b5401d5409d4ae656a75037.root': 817964L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_10_4445a70a90a28c467e28e81829a1e655016f5473ceabcd6a5e7f3374.root': 11449L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_8_b600e0537a6de7a76e8388fbe63ba6f4383bc9f3b928bd5c67b948f3.root': 978770L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_5_8b2870f6e7dc2cddc73996a71365d2042ad30b44591dcd7ef509bf14.root': 682246L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_9_b85cfa283586a53f82563cde26354cd3d06160fb78b027d63e0f3605.root': 1122004L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_7_737832fe4c9bd4ea87501137cc41b237dc7f7f45ac5718c9ac677cc0.root': 949486L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_11_e644e71255f2cd08f254e6160d4f8729bd6149edcba9939c450fa704.root': 154094L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_1_0f900dea914859f6467aede26df22b7187887ecd81730fa666c8932b.root': 304L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_2_b3aebe6503ab575975a3b4f91342dba5e15232c6094bebaa926a2fa0.root': 296858L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_3_517b5c3261e54b0fd11c819ddac32baae6876c98aa30ca09f9c7e95f.root': 421146L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree_-v1_190523_213905_0000_1_a5434bac81a9b053443411496bc8066165d1a93a36d770f45fdd04b4.root': 0}, 'QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_11_b3d38c829a87c799cfc8b788468dadbfb1b14f4512d510913323d5ea.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_25_6f7375c48487c777c40606090c5797dab0f74ab8dedd05feccee45e2.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_34_d2599d4f11a84c0ca6e4100c1723190da6f5e078d22d094eca415595.root': 11L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_9_8defa3b14040a02a4f32bacb70bc6bfc42bb07701e982501cf88cbc6.root': 14L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_4_267bae5f3d55c1250d3c9fa5b5febc6ad944d13a208ea99e8c65f63c.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_10_8eab575882f79486217c951958e89ddc285bc0ccca83158b4b1c2744.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_1_399b1ac2357478aeca326859a410911cb198c09e935890968161703b.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_13_dd0b920a533311e162483e388b1660c74b02d482381a44a275994b88.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_21_49b788fa3bece595ab957808dbfe21010aa5264b8dc627f0aeccf4c8.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_4_1352d97436937a5be1eb8a54e27ea17e24ecac235fd0e8076c7f0b8d.root': 11L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_14_0412184d61b13da4d941e007454e851369b159f46b365a9d67af4329.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_11_f2661bc4d1bbe96d10f99c847e42c2761e37348e33e4765c02796778.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_12_0f286fef695d8f3b424d9113bf016528a679b182cc3b07a65a797a60.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_6_fbce6e1d9725450a0615d4014ce5927eff387007eb38ecd268cf22cc.root': 12L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_1_ecf8a65e1996e2b78401622ba2c2548b5ac78c50e89f6e81e10bd6a6.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_7_d596074ee238eee857328f336aef145d2079d6ac669f05bcf0848784.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_26_c3feb4f7ad1879c8159b2bbf3fa6792bff9b659dd29213588b47013d.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_15_708817bbaf52fdc9f1a06414e5445973642d39ec9316aa842e424082.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_2_575f59a47e2ab527af22ae7bad47c951f5852943a963621f71b359c5.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_23_2f31e1da185cc69c5219917b67deba06c8c6d17ad53e51192c7f0288.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_5_f5154dad0fdb8234be55d79d65bb9004077519c272c56bf5ccdcd661.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_8_f349bf044b69aafee33f883c39ea4de5cdf3ddcc107e217a2c58a37e.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_32_2254eb1125b4698b4ffe6a1159aef93cc2b5b48a97ed694b67c96a43.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_29_f7020c1b11a2cca43b9fa5a3385e5db814f83928974fc7b018c88861.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_7_48902f084da259e72adac5079e9045e19a830ed20486293d294c8849.root': 12L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_20_ef5a4f03650d75387025af0c3eaf909cfb8df223d2a7d361a7aa3975.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_12_fba3d26e155745a43664c73a79fddac84ecd6b1f3ba292c8cecb9eea.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_3_da5ad961268d3ed283beb0b09982e770b4cdbdd169aafcd0e61fa297.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_17_308b2e78d882c0ba66c21780e221a6a096182a244b5e352c26254708.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_15_6ce14a3d3e2b5a221a92f9f99d1b61586f13281829473d557da8ea13.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_27_6c18614b8dcebd0dba0ab4a5365aa6ee2e395722a28e9f1c5ef780d6.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_18_3c16ad06a07c048f3e9ee932209af59f35f2413b4835aa5f1241f729.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_28_e2661ce0d50fc330f5ef2deab045d6c04771475e2b8286a263e8d2ce.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_2_c756197a7e36255a92c22b9cd0f68dc077822af8875d411f5edada4a.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_14_2a4d626fa3f6ca47fc67852d08578281f2f5801cc908e64ca061d400.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_16_e87bf763ba63f3817dfc84ba5e567178708926d248d6566fc039423e.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_24_93af7e3086c3f71cae4c3b59e33f35012e379dd5cd19cf4efe9acdac.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_9_168c86b90e1eed4f168bd199477e0310355b6dbc745523df66cca1a8.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_6_9c78f5611510faeadd79ba57202c64d91f58f1f4ba4482b28e5970fa.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_8_1bad0970f625841609fbeb3a0578053eea08bf3a0c3ccf865af1bca1.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_13_d75e97f6f97f5f753bdd21c50439971acc67dba791caaed6639ba8ed.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_22_555873da715567c375e9cf559e5e8b7d10383f202d987b993f6ad070.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_33_0244e8708aa25234242b3c23fb42a5a5ca570166e50dfa31c4d565ea.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_10_5c599e3cf965c665bf81a417bbcebf799e21a02b0eec89cd0ddf4f42.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_31_d0023c6fdca27197dcd68a8324e34adee4c27079b186140380130058.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_19_bf0644f8636b399ad13fada6476f4e275af65365906b922939945bf8.root': 5L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_5_07934e48339455675401414dd946ef1988639eb3e779ae3dc2287476.root': 11L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_3_b2fb0fbbb6d67a4d16027490f0bf98ea21d6bd552439758dbc125dc8.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_30_148d01f52bbe9e1bbdb98ddc8822b7ef2df8159c8e6ba227fd4c8237.root': 8L}, 'WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H80_190606_071404_0000_4_922ce1c72f25497e01c86f10b785c1d03d31f4e929d41cbde9a6d089.root': 7292L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H80_190606_071404_0000_5_5a9787b6603fdb776589d0a78e84f664c717baa76e70ac99fead5f75.root': 9648L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H80_190606_071404_0000_2_148bbbf3af94636f33fcbf1451afd3739679a876ed933683b377a302.root': 2372L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_4_036f2dd5382e999385c5944dac3614cf1245ffc1f8c4cc17e57b2aac.root': 19433L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_1_48c6848bdbe43fb32c1f2015233b95813ea60beb688d03d71236720b.root': 12089L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_8_92d2b2a1e75aa3347bfc4edd1bae3808b3742d960126a4b633f6b521.root': 28855L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_2_522e806587d3f1cb9ef0124b19f231ef08c748d5270844ca4fd15580.root': 14580L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_6_514b7d7676de5af8c32c662c39c525cbd88e5a43be19c352f58822ad.root': 24307L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_3_d0e393afbd7f72931b20a9ad8c21e23c168b2acfcaaa1fd21d96927b.root': 17053L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_5_be532c1c555ad615933fcd749096a6eae823649237ed1f9153434dc9.root': 21820L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H80_190606_071404_0000_1_54c6e3b93fcf17d3b75d8241f75abb295199c6dc6932c860e0c21636.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H80_190606_071404_0000_3_f6366fd1b9a371fd2b49401825aa9ef7e6ab469a16a2b0c21a43e494.root': 4771L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_7_2be8163c188bcfd00af6064a347cc55f323f90dc50d907b555aa1f70.root': 26453L}, 'WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_16_20d9fc7ba412d53f5af2b28bec0ef17e3ae4d795a21c9e9066a299c9.root': 611908L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_3_9d6ca49b6974d7030080c6732ef9553ad0d606ffb8218f04d4e8fae0.root': 20982L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_4_729c617a1ae56fe6e8f3e4ff2e2c5c58a977bdd147eddf671dd1c4b1.root': 96317L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_11_d048e7d0e779b4f9bad0f75315288ac5995d57bf0b1bc9436c38f621.root': 340898L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_14_95a58a93ba2462cf966d8db5ae679c610ab6e8b71a9b1aae9405d5ad.root': 493479L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_3_06f748a420834f05e3deba19caa1d91508e640e77fa56a1b883d1396.root': 748856L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_9_8fbebf48c3c9c06507e6e57a1d45f6d60c60e627acf3c6f57ec53e39.root': 1130002L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_4_91f5a58b84be708a53818289b9bdeca27f1bac9b484c45dc2654e426.root': 813517L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_2_f4543ceea4826470bd7c5ab254b65dc6fb6cca8d2a5a6619f677a201.root': 661568L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_2_27804605938813f93aa16e903dc494e5cc2d31214cb78660f6239ea8.root': 12834L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_15_3f4fd668df0c46cf8366c13929b1ec05a6413df8c2d5a6fabba101ab.root': 557172L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_5_2ffb4a6156e76808ca671591ad5a8776ca70de276dced0c2fd9f5ac0.root': 184493L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_5_d216814a1080981644e1d1c393c81fc5bac8af337b83890403c875cc.root': 894955L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_8_e3b9f1d607aadbdd6655211897ea9606eb40a531d70e557aa413d425.root': 1085009L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_1_0661433d63311d67fa93ef58cbdb32d917e8b34ef6d37af7825c44cc.root': 232428L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_10_1eaef293964e12f978204d8a7a7ed03f2be7bb0becacdd30b298da2c.root': 283548L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_7_74a09cdab1f1b8ad0d18127b04499ccd11b842df3b02592102d72e85.root': 1020324L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_1_24e03ef54bc3ee626073b5172d33d9c0192114711f4d79c549b1069c.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_12_0432d73c8960d1eb142aaf970bd6a4173ea27b72fc800ba0f208c1e0.root': 387544L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_17_ebb258887dbc90990e10e8738b44d68c6f8158c15c91e32fa93cc1a5.root': 661524L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_13_35aaf1f88ed83a0799fb08e0d4e42c16eafdf84808146a8e6b6e16c0.root': 434145L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_6_40583eb75d74c43707dfa860ad2d012abfb0a43dd9c8703b37c6470c.root': 230767L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_6_18d3d08776bb23ae32ec34cf3c12c96e677c113c9a5e3965d82763c3.root': 948481L}, 'ZJetsToNuNu_HT-800To1200_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-800To1200_13TeV-madgraph/tree_-v1_190523_214109_0000_2_bfc00671d3008fa55d6c581eaf6d70cd6f974565b69c067f9826de75.root': 216248L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-800To1200_13TeV-madgraph/tree_-v1_190523_214109_0000_1_4fb88ccc6b5edbfe8a6dd2326f159b45601c52e16f196d2bbdb10841.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-800To1200_13TeV-madgraph/tree_-v1_190523_214109_0000_4_a82f827947187dc26dffbc5043ea11eea67ea50c2ee34b03852bb9d8.root': 587880L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-800To1200_13TeV-madgraph/tree_-v1_190523_214109_0000_3_0c16a462d14ff76281a76b6b265b9a7ebfa45bb9a6995e923706d592.root': 487523L}, 'DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210225_0000_2_c0196d16f5d22cbdc43e85c27e5e3be89f7aa8ac320b79dda6ca82fa.root': 22002L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210225_0000_1_b54bb92c17e058aefc2878957ab947dd0c32ddf0d8929ff5e4884fe0.root': 0}, 'ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_214150_0000_4_e91f513377fb7abf9cf84eb0339ed468c8a5a89b75d54efab4b75647.root': 46640L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_214150_0000_5_2655e47e7b031064111944ddef9806b37080df49bdd60f561950c6c7.root': 171722L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_214150_0000_1_f3b7ace6f6ab80552c75a5722141f61abbc33e3fb9a7c9829029b3b5.root': 0}, 'QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_2_2ca4e1ad91d003cf68655ba3277b63c6cfacda81b9370e4185d40153.root': 31935L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_9_ac89e2ad505192153e035b269c93b4cdf6f2d1cc02ca20f5919eaeec.root': 62101L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_1_f930d83c0e65c6c4b8f76c2b1f0c8da9123e8f1910c93e4d72caf772.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_2_a3dd8c98ebf9c998f6b62f093ddcb9ec0a03eb4ec8d2d87bf656d424.root': 3628L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_6_3c545dba73a359bd3733cd01de01641e6e501a3bc1490d8e53af8c97.root': 17290L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_5_b8b019ddea47e3ba90faa885ab0dd9cc32e909abdd1e971497bcf02e.root': 44315L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_4_fa96cc70de4793dde3fe4600fa9c05d4d02bebbc6d8ea62fce9a2c81.root': 39913L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_8_5f9c12e80f2e4a8a334f8d5f3b5ce03b9b8b8af9059d8c14f2e0b472.root': 56529L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_1_2888a55492b095cc2fe1005a3c3de4d055b208e390b4dea860028536.root': 21006L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_3_425eb6e21735bd76a7a6d4753953043210416cf30d2bb8add77a0239.root': 36048L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_7_be748ce6611c00efb080c806d6fefe682f507c85f13f5a2233568937.root': 50795L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_5_871428d5e716296c6c3f2e587758698bdb2add3a215b288d1a5405e9.root': 13610L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_3_7e44207c763263ee65d342bea8cbb9c5e43dba495794d783daece5a5.root': 5652L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_12_3c3648c619a65b6cd4a80b5bda7e01ac9880160c698e5fab09b9266f.root': 25627L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_7_49eda309a8a3b3d4d0d7b5adaca262dc3427a5ce31ade42179c6b1e6.root': 20887L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_6_b5207de1a09b20e7fbdda068b580d0a3e3bde3c1ae441a62e908128c.root': 47676L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_10_3e319cb9bf4441de6f94504a28cf8244bc22f3e16250e68b5b50307f.root': 21706L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_11_021f24fa5983a26fc97a59483dd09cdc411ef5bdb6567cf9aaae0e64.root': 21805L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_4_3f959fc47d79897a6fac0d72e1a7fbd9fc744c1d0bd21e05170a3c1b.root': 11072L}, 'QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_2_c64e7d98d971369f9bfcaaa7f06212a425eb175ae25edb295dbfd809.root': 83120L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194924_0000_2_021d46e5341b643a462a88d292598530b56805cd90fc9bcf012900e3.root': 11952L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194924_0000_1_7d5263175cd3a9edb96d9ac41993aa051d54aa02f034285065db2aa5.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_1_9c70af842a14291b1a340f8e4cb9bed9628b9d8b3ed3ec5590bed198.root': 60997L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_8_d368cf36d997ac9470acb29d0732863dd6c294d5ac03bbeecaae0cc6.root': 159069L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194924_0000_3_9a88ef677c1dad8cbf12debbf46dae0fa6e896b43a2f10144e356105.root': 38422L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_7_ab7ea7a8520aff6470f8ca25411988a61568231ee91a9b9e966d756d.root': 158272L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_5_f7ad6e98373c778e602e543601a4a61d640a50493df0d6b1e777a831.root': 113760L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_3_f22465168e6d104a516281bd0833e7f05484cc8431a06091a99547e0.root': 88792L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_6_144faa829ebd2220d0d017776939683be1b7fd1fc42bf24e23f505de.root': 141597L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_4_740766ec7030b9582fb3eff673cdf2df26236e5823df7cbb6b05afa7.root': 89897L}, 'ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_41_5408ed70d6bc73fedfe5edd6a679f078f4385fd44d7788f08a072dc3.root': 125294L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_5_98dda8a1c0e503929bc95ca0c8b2a2e8451669d633d5ec638c3858bb.root': 141037L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_32_d654a26e5e94744f9be18aa986b96e93fe2ee9e8dadcfd51d7b360b7.root': 89061L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_23_8a84e27ea335c543063e9be88dfe68495831e230019ec62791368d3c.root': 50185L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_25_f23dc736084f1ec20dde022ef92666ec5c07d74ccf1ab0ddfb44ca4b.root': 58687L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_9_eb1a789e0a8513ffa35e57e8688ee1b0e7797588f01ec7924f077071.root': 156419L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_38_464e12f3453f0961115633538e373cd97e1748b60efe828b1b8a0e64.root': 113017L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_10_382bba6fe507ddb7dbcb46769802058fc3c32c25991ef39a05ee1b26.root': 2102L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_19_8781df695f4be4953d418798b7b51a0acd0c7c2e62bc28a8dd9ae467.root': 31974L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_17_c5d8dca961c5a5d6774b94c33187a810d44384b7e15489ec95f20bac.root': 23405L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_22_c6c2d20afccebc5856a6db8132518e58abcb480a2d7165f20f78f9ab.root': 46841L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_2_010aec19d36bd1072e2e32f4332fb9ece0cb91cd4aa43187e6c46685.root': 36211L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_40_80ab45a38169ba78911b54dfb3e2dbe5e7584a20756bcca11f26267c.root': 123096L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_39_d9a691f303fe56fe9955c2ea76a685333eb383e4baab1992e7b961fb.root': 115697L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_24_afe097fbdb930b73a05a90fada1733cef8d42fca61e5fa346d357c7a.root': 54355L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_8_f2dcc70b8507f165d4361d9b045a377e8ea188639b343514b2b8ba52.root': 153931L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_26_33d8eb4da86da2662649d24e6546b56f7e61ed308d65a1f94ef4ccd0.root': 62938L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_28_466465dca502ce10f260b8e9e00834a244fe361b464eb7063892567b.root': 71387L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_15_c26273252a4ab9ecf25b59b8a573d22b1983f657d5256dc6628763d6.root': 16580L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_6_12bddc00e2fa293fb5637ca2155a78d0b9cdd13a8e35ca0782d6116a.root': 145335L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_33_b0083338db1595347f0ce3d4d3de874d6737a93a19d02e5082342bfd.root': 93404L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_16_bd0821bca3e2d8e7ed0ba7b80e1126d4bc626aba13dc814772772c4a.root': 19083L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_42_e11e4ac95dd75175dc2a626f32950dd0a6f67197e7597ccde21af37c.root': 129650L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_34_9a90993d35a48326e445b4ae1c4b1ea5520b9128bf0d1f9dcfe725fd.root': 97677L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_12_8ee2286404a0edfbb1c2efd6eae6a469f7bc618d28ecf996d74f40c4.root': 9943L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_31_81baeb037151c7aad75a2fdcebfa0423da8182b3a02626d44db9583c.root': 84823L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_36_a83895999634a148cd70707c38c2fb7c3661e251ce8559d1518924f5.root': 106194L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_13_0884c6766ea671ecb95ea75565fcfbffdd4b3125c47a4830c4e0c6ef.root': 10260L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_14_80ffa96e4b6e6630f964348748fc94961b5283a8df420948546b3b06.root': 12308L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_21_253bc2afa4786b14f2dc6a37fec89187e03d12bb1340035f385d4632.root': 42720L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_1_1b4afbc353e2645158d61cc56020b30bb151e6c9fac46897164d6272.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_43_4f36190bd44955ea8df29eec0f5fe6230094b31f99aea887fb4be358.root': 133886L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_18_df691b59cca7b2bb9e7f7052377ef07f934b20198e1f81d10a032f7a.root': 27698L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_35_f0daa86c29e61548f7c4a889827a7618da312917f1ef3d949a3ef358.root': 101962L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_11_e0a30c2ad0bda8aabc2a18f50434ce513047745f345bc273a6c50bf7.root': 5749L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_3_d5c3c4a6e12fb3cd1862807c40351bd6f6affcac03419f12623c65f4.root': 79908L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_20_abebb60b2141c6a8eac7d5958c1008772e61f6fd098a4c9f704e8528.root': 38411L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_29_281334fe76ce6746113b93e7d4133ec11d3da9fc948620c59e9362cd.root': 75676L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_4_8b429679dc0fbdf7705ffe047d9bfac200b306358e4bec31dc8637f7.root': 120010L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_30_0db26f4f138938d4889477e09d8cf112551078ea7147db2b08cf0f39.root': 80549L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_27_66cddaf270b017026744cb967f74fc6a7df85596fe589c12c6373444.root': 67125L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_44_0028d3d1a1f59c6c9b1b48f5c1b8d3bbcc42fe7574e5452d9754b278.root': 137818L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_37_24aa9e6962eb461c3925b749b2e3ef087e73529bef5a18a7022ac5e3.root': 108787L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_7_08bbb82e6d806a198beeca875c521e5809738f2fc5a18efb962d129d.root': 149718L}, 'DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210505_0000_1_f3c749cbd9d90fa5e684891cb0fb82128ecb316b9027ce1f3f3ab9c5.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210545_0000_3_b253e9339b57e45de862bd4a2dcc2c335a244df6d9c1f3ac3cd68686.root': 57759L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210505_0000_2_e67ef328daf49dbeec8a464ed5aed3bd0b978b8646469ff1171199fd.root': 12321L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210505_0000_5_f5b191dfeccd98b09f48b4de02d557ac1a804c62f06a87b6364e0e15.root': 35944L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210545_0000_1_0beca7cc27b53669db27986b08ed2fb0970456ebcce0d369c329f469.root': 36025L}, 'QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_15_9e2d6fc76fbc8e4c9d65c52d76128bd00b4887c70a42f609a53efde1.root': 39L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_32_7b5c075225d29468e47fb83f43d4143d96eb18642b0ae20177fb2865.root': 315L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_6_1b4b91016bf77ba4f73a4e07098cbbf55cb4b01cd38fa2c0f7640daa.root': 93L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_38_c8a4c19313334881dff4b603be9372701b818b56f944bbbde6507263.root': 359L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_26_fbc28e167618b290cb05413234352c90806bc2f6846a4ba523c73e64.root': 249L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_33_1f11dedb840f8a82a8b0ad58efdc1752ccec8657aa640152330f4df9.root': 321L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_6_c0a9f23fdcb577f587831a0d7ea9faf2d19156a95b77837feee32963.root': 386L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_31_f79a5e0309b984df6dbafe19a59e1f44bba508d96571d7fcb8942902.root': 304L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_18_285e4e573017e9af3490bf6332df9329b2f110d299de799c3d1cd9bc.root': 190L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_1_005aa1ab4aa37b8d627a4b3c6784d442c2e51ca6a50f339414f91816.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_16_7f32bf1dc12a21ae70c715c052f4f72ce5b1af8a3ac0a412abc1447a.root': 39L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_36_e39d3c842d16fa01773402d478c51798ce357a4e45641a56379cfe82.root': 348L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_28_a0a5677232ea96aabe77233eca243a7adc7fc0797d0a88f9f07f2cd6.root': 267L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_16_25a2da486a793173fa5ec334f73fd3b52a21f7da519d7b5ce56fb683.root': 172L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_2_5c106ac8811c74dd4917db348adb4d092d15770c40122c78c82bb198.root': 63L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_22_2130315709e215295a7c52048086bafab590abd28ba42aeb4908725a.root': 226L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_10_3d8bee55eb6219d9b5cb4a62e0eee0776316abd5fc83bf794f27e5e8.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_11_1e0fd6a9e6087d0e273592b7d0299a37e986196e0db4288b506424f2.root': 136L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_8_6c5352e94564f312ffdb9dee05490c6c2427fd6d91ce701cf38439de.root': 107L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_35_501a1b113c801ce826dcbfb4c291cb47074199e7e147b890baab860a.root': 342L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_12_b7bea85fe3deec3c1534aeda148b009104a71e3b27b51fbb8cbc57a2.root': 140L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_19_6dc9d58f008b1972c07b7b7ca896d48c2e55bb8a45cdc49e341cf042.root': 203L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_12_b7131072747208e39eefb09a41575158ffb3f2bdb8a3a6c122a1a2ab.root': 19L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_37_fb1caa3b003e5bd16e03b43603f5809d1ed1f68e9d863dfb4fb887f1.root': 348L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_21_ce691c7a62533f34ea18a02a131c41a9b6f2feb23a4ddb24401d1adb.root': 221L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_15_20423f83dfe6f46bbe07dea71cc15d31e105c79e8f9d331da816a090.root': 163L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_14_6524c76f9140205cd23d92134e72c874451b82666b67b47072e333ea.root': 32L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_18_f9eaa81ad7e3900fc76bdd14db0ea392fea033e5fe2a5e0aa0cb869d.root': 58L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_8_bc3701a89bf6a0e9abb1adb191fb5d56f9caabe7d6834fc7004b4714.root': 406L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_30_033a5c48613c940e91087cf17f74c4eb38937db0ef8232fd539a1605.root': 293L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_20_40b673cde63aa599398b06135ed99bf0ed5deb2fade2c10b4faa5674.root': 215L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_2_cb481e4a57e01dc3ee6405563ad7251e32a71f2723005b48f88f93b0.root': 209L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_29_ac4afd73845660e2eda498a0b68855abaceaf1bbe5a535965b656046.root': 277L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_9_ee3bdc02ea5e3e05834fcea3091b256ad16471494a6dee1790e5ed63.root': 409L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_3_02d1378614741099a12f03bb5fc8d695ff631b04726e16c7144fd10e.root': 65L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_34_f6f6213475706c67d1a4ab973589822b4af95900ab1edae8ce72cafa.root': 336L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_11_e63803d5ac01b626b94cc4f6c5cef4a48f51eb198b26886c798dd3a2.root': 11L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_24_f7afa4f7a824ec7e44c99acb9c00dbca027ec72ccab321519415b70c.root': 237L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_3_0a4fd3a42d48f6e95afa7c0818cf69aa907f475d959bea04705bc28c.root': 292L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_1_7341fd77d20e3003580d0268682ff0689fb3cdcf6d8aa948f601861b.root': 124L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_25_a613d0488e00bbe2a04d84e0249a41a0e39ab778ca9f8482a955c3bd.root': 243L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_17_3069ef8152e3c4cf048821bce7aa2a73a8a220915df74ce734e468b9.root': 51L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_10_9fe6c025a4da51c4b7d435e6c47276eff67855f7204fc274ffcfc83d.root': 128L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_4_abf17321a1add79b866514320cedc3ebf47f8d7c21f65c6a8c6569e6.root': 361L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_9_c4aaa240e4bf07ec1e76cef9434087491153a25431d2509cede69876.root': 116L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_14_57b6c923b646a233943d35bd818a9eafd0aaa8c49a78c651cfc74a63.root': 155L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_5_ad3847b1d54be3a88632fc71ab08da17949a4f5c85e091c16014fb93.root': 75L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_7_b58793dd5f6f79eb2876a79edb883a6152d334a455c3023a2240ac46.root': 96L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_23_cef3118c1d0489064d2ce3efb0d8b8ec8e0d6a8b1971e3f14708987c.root': 235L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_17_d113a167a1f7f526d75efa2a756463fcc1833cac7b8a02157da761ac.root': 176L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_13_1016fd887929a505f6be2e703f545c2ebf63893bc62c7b86afcca897.root': 147L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_5_cfe3064251f071e3149ae8736998a398079272213efb52f4d63124ea.root': 371L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_27_c30e40b7ced7df6dc650656a25b5b4284a0b92b3d43254241230e697.root': 257L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_7_2940ce54852b26e0c1b4697a8178187814439d2b5e45316e2e034840.root': 395L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_4_eecf06d7e104a7480eb23185bfa7643dbe70c149e5a2d6c8eec8475d.root': 70L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_13_f887dbc840a042998d4421d15581b19921d6c88661087e3a918a67fa.root': 27L}, 'ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201112_0000_7_5d311a82c58c9056a9cbc1fe4291d2da7bb52487f6e89514e30e5d16.root': 7520L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201112_0000_4_1ccf7dfd4aab60a0ada3efc94c5044c4b6f8fce4705e12a9611ec010.root': 4460L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201112_0000_6_526901a84f643a8ab0d0cad346e5a29b5cc92326ab88ec0f7c32e140.root': 5794L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201112_0000_10_0335bc03c26981342427b7c9fc6fded0a2f8f4d2d6d5eda3f3a77d33.root': 1592L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201112_0000_5_baa60738fa218b6bd65636631b440a5d30b12bc310188ec2112b2a56.root': 5656L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201112_0000_12_cf9a84cb70412b63b189ca5f5bcd9010000196a5e5a73d82110cb75e.root': 3166L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201112_0000_1_ef961048e8969db684615a1f0605ff730f231dd0b0792e5c36e08521.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201112_0000_9_0bb95e93094b6f0807e593ca797baced4c6b8ea65c1da53211e0e2df.root': 11106L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201112_0000_8_8cc727a19fe71d9921fa981b2d152fde38b8fd5ce38838526186aa56.root': 9507L}, 'QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_5_a0d4a628544c3013fb3ac6696ef6da01cce689d85acacce16f087761.root': 37900L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_3_bf89fe89d1ea21a18bf067da61a310558a076f43bad3ee568f7fd2fd.root': 6614L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_11_788a00101ead1e2b6eac13b2ae59cfa639c991ef8ccea5c9a54a4a66.root': 1147L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_18_054343c09315130bc55f009b461c8193dea0cbf1cfa42121bd9b1e0c.root': 27709L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_2_809a05de77b68ada965ca86967595e167a4b511d222c438ac508f725.root': 5612L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_4_737472e64d7734f886878cbb548bc46f168477eb10116ecfd87b9435.root': 37268L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_7_8153865d0412e7e6f0867ed0524137690864b3be693b327e9dc3e89f.root': 12718L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_13_42d064e600a11663836a314ad7d39258b3b0c381f26ef068d556ab8f.root': 22638L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_16_853d9132146eade84956ff941eba0c51b1ab6ac6d71d20e83c0e6e8a.root': 26473L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_14_8bf45bbad7e6ea6d223af0a934d134ce02be270cd0368bdbea5cf80a.root': 4668L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_8_b77d6035ce5739ff8f505918c0bd50d93a4f32ed7fda2259ee6f348d.root': 14522L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_3_ab918d33558c4517cb192f94044ad56ec3f84ad3148d2d57917775a9.root': 36803L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_17_a1a0d237c41cfc369cc944c584b34a43459d52746896bffa950de887.root': 27492L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_10_78ba4c3b9ab3c0ac403d7d1badc51819af449ce0ddf65c624c13d808.root': 266L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_1_ccf0b7cc494793cdb030f399670de5819891d62b53e2128fc7c11026.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_7_fb7bd803ccabb62a97aace0066bfda8e0b2aa1dd908bbfb6e35acfdc.root': 39559L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_9_724a64470569f242267a848db3ce450fbae6e4592994ac91bcc0bf47.root': 16328L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_19_e05eb46a6b04472f8acadb7242da1c9832cc5f5d46f21b79ca8f0a37.root': 29469L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_13_a8fe6e53ccebde99f43115ae3d150837cb030096874fadded1e786a9.root': 4084L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_5_63600ca1210f5e668efddfec111b422a43db2a2cc895aa35cafda9c8.root': 10098L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_9_f23f8dc4a350d427368bd3d715e1b2206de005c8dc8bab2cac1ebfcb.root': 42184L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_11_860e75e4251ecf0dacddc419f4ab7e6703679f9519d1b1e8d1a06617.root': 19996L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_10_413c3bbe11a26dfa11cbb1c69bdd0eac475cf52eb0444dbf323ed80e.root': 18430L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_8_6d522c20be2845799c751bb83e275328423f9bfd42cbc9188a76d9ab.root': 40619L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_21_122508a6c4ecaf2ec559beeb1df94b0b39404bba868cc18e671e3188.root': 32034L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_25_c4368badc4daf5713b40c2433ded24fa0c34714e7d0c4bf1baa52991.root': 36314L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_22_619e374419cc22ccb63e97d09e4a545a612d78c12a2b7a41d5b4d1db.root': 33476L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_12_ebbd8b9e206755b3ddc3afe28bd00288df1c9c1b5a4f0bcf3147f9b5.root': 2439L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_15_88e6c3c98c3f5a8847e830a803169e54c08c4904dc39a3458ad03ed8.root': 25365L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_12_1002487dfec2b57232ab8da70473c14998770106df927ab66715f978.root': 21642L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_4_bd4e2de673047ac058504ae5cfa8a59701eb05d2353ea4cb1b441cfc.root': 8363L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_6_1a912b49a527d02c6c849a52e536176e38a626b412ea82ac661e1241.root': 11765L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_6_8f37b9ee98509b29590e767448342828a0b11d2e0b96ee05d54531e1.root': 38036L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_24_43504b72b7fa87683a733a1d98a3a4a50c951866e00af009e6113fd4.root': 36263L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_1_327a0f32a598d38b2100d210b79ec391026368f183ae19dad4eede3b.root': 18115L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_14_32ce22eb3c7e9a6c3309bfcaa764b1fba08d587fca8f2cb6c9e44ed1.root': 23867L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_20_25b805a75ebb47812f608b196ce0d5f669c9feb6165db5b64044885e.root': 30604L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_23_8387dba763d06593e0440ec7596077b67d58c83f64c53681c8150e1a.root': 34569L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_2_34a664691eb4665376a74258a0bb2a46c6572970c7c5aa54d3dc0abc.root': 30551L}, 'ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_7_8a82f15c79fc40d4434f001b278c52a3f61e26af753010aea05bec85.root': 51024L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_8_312f90fed942188af163aad143709da50e6299b471b2976bf7cb190c.root': 55393L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_4_e5f2437c5fca3cc793943491d294628e757d191b97a50f2ef1a4d90d.root': 24076L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_2_8e605f2d7931c86c29aa00e6ef7c3a1ab22ee25ccaabeea633350183.root': 10266L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_6_56f7cd1ca949aeaa3f6b78a2065c5c7275779ce681121fb5af9bfb6d.root': 42591L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_1_014220020e362bd0ff4187731b1e98affdba25824ac4b0aa4b781b4c.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_5_da32d1cddf3c421ad9b288181c8ef1280b638d61086a5ebc5869b87b.root': 33439L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_3_6d7756240da785cd73162ef8d44fa4d4732d631d58b903f6a7bb56ea.root': 21788L}, 'WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212113_0000_1_9a4de8edd97ebfad89b62b6deeb9243788e664a3fa8176ff8a93eff5.root': 28741L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212032_0000_1_65b849db80ee209901b9c9cf01d21216cb61e448154e4913260d7ad3.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212113_0000_6_3e8ed993d75402295b73130d213fd49e9fd8d1a4d0c367223cc25b67.root': 152639L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212113_0000_7_edc72d7728a38cc9de938cef84f8aa1b787823072673a62baf23ef5a.root': 282748L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212113_0000_5_9cb10619c0a963534709d75f0c28557b7d6d528557b526d8b05a76de.root': 62077L}, 'WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212436_0000_1_0e9e5da246edeaea8761e0a15c86c9d1c682e1a4bc958ccddb940506.root': 43341L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212436_0000_2_e01d71ff60c8fcec959997d7230aa9894aea7bbf45e548612e0296ce.root': 177182L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212356_0000_1_90ffb0f57386e4b096febf370f8cc916a94182817d2c7c816bd4bf2e.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212436_0000_3_cd1a96d67cbe5ad6704c4fa869162dfe0a96312fc56a9c7cd94f55a5.root': 289444L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212436_0000_4_84ce3a5d63cc8ed1ee5c9f790c86ab0d36f4f39343869a19d0419805.root': 338736L}, 'ZJetsToNuNu_HT-1200To2500_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-1200To2500_13TeV-madgraph/tree_-v1_190523_213536_0000_1_63f63ad0bb269bd628c24ae47f5242d131c40d47e323bfe1190ec4b3.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-1200To2500_13TeV-madgraph/tree_-v1_190523_213536_0000_2_779962a3fb891837d8969fea9baa9c1051c7c8ec0b0df1fa16e166fd.root': 111943L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-1200To2500_13TeV-madgraph/tree__ext1-v1_190523_213617_0000_1_0b38f6dae265d36ab081e46754c61808b373e2f0a03d16f0455c28a3.root': 130349L}, 'ZJetsToNuNu_HT-100To200_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_5_2c8cc4c5243102e6ca7acbe27e433f4acdb0876b9924de7bba13e91a.root': 39420L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree_-v1_190523_213408_0000_1_804b8a8689af098c1d2210c54c6c047a3679f5a6f4f4295fb5261b7c.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree_-v1_190523_213408_0000_5_0d7c6abe3754b71b073a4b72bd180ec22095e5b225347878b080f99e.root': 11480L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_9_8c143baf32d16ef41da309a644228c24fb8a862c07d1e8fa384230d9.root': 53788L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree_-v1_190523_213408_0000_2_44b186babdb12597211c507469b8d8ebca55ce1560084fa89a17c0d2.root': 2497L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree_-v1_190523_213408_0000_4_cab4c0b3a6abe2cde677044cbcce5d566845bcf82226e7bb685b445c.root': 8861L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_12_26015ef8aff0c32d6e2caea0d5df6fc7443b4956faa6847695ebdb7b.root': 23171L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_8_3d19006ad3ee1247965a790beab12a41cc41a3f03feb7921cfb9d8a8.root': 51103L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_1_5987421b9c3faa548d00e069200bd8023fa5f09ddc0cdb41cbc60182.root': 11660L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_11_3c054fb443778508a03be877b95d3fe6adf5ac68422fdaa2c3ad4983.root': 18509L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_10_73f09f51eb6bca90c6a87c17c4c88181d301f4a8400f41dad7434bfe.root': 14219L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_7_6d3e8bad8bc294a7ccb31afe8d0fe4ef64ea05ce7f6790eb054e4021.root': 46409L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_4_f2f4b8f217a34df394f6b6dde9227db16bc6076f811028bdd2f9573e.root': 34548L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_3_99726b62febf45c53ef007f44c2c761841bbd935e482019aabaed45f.root': 29823L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_6_f95bd5cd9abcb884356c32ea54cc926cc92c1b828956cf917981c4c2.root': 42222L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_2_0bf68f3cbd730c14167a3346759382cd1106f8d1f4da01d2f1167b2c.root': 27788L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree_-v1_190523_213408_0000_3_7d5cd1c42c822fa2c11fe4251d6e286ba5f52ae886640a0a32d74e85.root': 5359L}, 'WZ_TuneCUETP8M1_13TeV-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WZ_TuneCUETP8M1_13TeV-pythia8/tree_-v1_190523_200322_0000_2_7b80cf493a97a7274ab97677461a6e9e2d66146023fb0f32a565f867.root': 84L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WZ_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200359_0000_1_eca201aef14a9d572aa6e9f4461f68cabfb76cfbeae457500f81cecf.root': 3589L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WZ_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200359_0000_2_98a9540280182f1c9c7ff30dcd9e141e35734290571c973775bbe2af.root': 7892L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WZ_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200359_0000_3_dc9dc2dfb2c87b94ec8940ff1d3326301a5329444823779957a6c1a5.root': 12315L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WZ_TuneCUETP8M1_13TeV-pythia8/tree_-v1_190523_200322_0000_1_87a920afb3203936a73f36f195cc99ccf22f9d486b2a6437e903ea6f.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WZ_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200359_0000_4_8b8b29c62a43e64bcce8d5d1f30db8960848bedfb0cda05e8355d798.root': 14379L}, 'ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_7_b8ab7e9997962301f9151250c2e2d9f17724ae50f10b02c00ce02eb0.root': 6140L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_11_5adec9bbd4785442dcf8950e27658e218e40e0a5852e62296b2ead0e.root': 1041L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_14_44087b48de6928ce66610b1b22ee65351fa2e092595c6ac8af34a495.root': 2579L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_6_86b42d9613f70d73a9c15e4d182fd7cab49210f2e14e9b98bbe50b61.root': 5627L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_15_09a6f825f8202d27f78692080dfd017f16f767e2aebaddd53f0ceba6.root': 3098L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_5_90c2c4d2f5a4a6bb400b55bfbb6f2959c3a5db935b0a5eef47737937.root': 5116L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_8_bd5a4e5b1e9307116a4e8e80c6ddff7c6182340ccdb4b7946a9c32ad.root': 6663L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_3_b253a0a8f4700151a3493333e789fea381eba1b4b337724465a59649.root': 4090L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_1_e4cc7a03f799620872ab87b0608a4606c740f777c4ef8ce2fd367699.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_9_2945929d81b1cf11ff4175882415e850e98137e8855807c67aebec48.root': 7195L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_2_edfedbf2edee77531fbb74eee8117660ffd9bbf1b362005cd1cea2ff.root': 3538L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_10_31b0442013d874ef417066d82f0cce82bcde99bdde15a9a1ad4cc4c2.root': 548L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_12_3fbf475d83db08f836f405b52f319ecb81b4b2169a418a21d9dcecee.root': 1552L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_13_1dadcac7c0d7a47d39f8885b83d504b1d4da69af8bceca765f8fe8f1.root': 2067L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_4_a537ab7193d122c20ea938e2b8bcfdeb13de0edf8414c1c772bdbec7.root': 4601L}, 'ZJetsToNuNu_HT-200To400_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_14_10b8b87976961ae60ce04a4bba4021bc3722a556a1f1fb48ae5e27e7.root': 512649L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_7_eb0defe37e1c5df597ff2501c37e513797d8c0e30555d0bdcb9161cd.root': 882449L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_5_770d80d75ea47d18b403b94a1f907a1f4995c78f6153d9b221300851.root': 793494L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_15_fe0e99f5a5d324192ae3be67537f088130ef4bb2c0ec40bc5ec7a2a8.root': 557040L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_3_be358bcf6659b6673afadf0562c75e18922e60a487e807a00806ac05.root': 96373L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_10_752c957db4c36ec7b1590e4e50c6e5dbe158f0ef6b5490c2130a28a5.root': 296937L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_11_c49bb93797b9dd484e7a75e20543a8aefa863a0b52643327a8ba3bee.root': 338974L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_1_cea0c143d23200ecaa8fa22d3ca513025a475e7ae8d1a87b3bfa4e1f.root': 218025L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_5_0ffece49ea51bb3814fe908e66f7bf87b8d66532443c090d25be72cc.root': 177365L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_1_0435bb76bed7ae6501f9a2e48b6529898462f12d0b1d036b7f405c0f.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_9_3896283b464d806e59d89f5cbb3ffd2a47f129df43673b9d26bb152e.root': 1002381L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_8_49e879ec13e7a05848438b25ddae05865a8a55c191757d91001fb318.root': 923200L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_2_e50fd00c197f2ac98fcf734119a5d538d3fc205b3869a93cdc76f3ef.root': 632616L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_3_a564bcac5b4014faabcb47a850993f6df085d78eb7649f0599d73132.root': 689625L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_4_b70c6d4b5ac7d1892cd3cf25597855a331e903c9981b749df4586e0f.root': 736771L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_6_9d15a9d6fe3a65d37ee33a0e6c27d6a84c0f948777e7906c7bdf95d5.root': 842549L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_6_4e89e06c49e1f88e74327eb4f3df9a9574b4f8f2fe97ba23481da265.root': 216965L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_16_60baf19ed4bf76541635d5e7a481b402531a5ee5b600bf95a8d68b96.root': 591574L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_2_1fb9a1359d634d35031542adee5657e6fe5753d875870f3a6e9031c0.root': 16928L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_13_2004e9c540383402669faa23dad493225fd732acc1286ab2aaf207b6.root': 454690L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_12_d7ed5c0a9c6bd894ef90114e5b66bc4011f72235bfce48935da9755b.root': 387804L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_4_86b55da5f932b3f757d2da71eb85bcec800ef4d7419ff7813c14ea0a.root': 141838L}, 'ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_213246_0000_1_7604280dca0cdf5413412b221817a7398338a3c8eb9a086322bf6ad8.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_213246_0000_2_0ee1c25daf4e57056006de9262b2bed40f5dd35bff37a329beb99943.root': 6466L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_213246_0000_4_43469ab07499bab7fd2629f0e728db1bddaccf5a6740395af24c557d.root': 81461L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_213246_0000_5_7430d32f81bd390941c36f5f08a0b780ae887d2a7830a49cdb730358.root': 91179L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_213246_0000_3_7c57ae2a25738ad7e7dcdd852c97305860fa0f37e1ff1ec392f1f87e.root': 29899L}, 'QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_34_605f5b29d44ac7fc90435f5ab9bfa55006605fb22d0a611787739a41.root': 8777L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_23_55adc6f8b886a0cac6563c98cde4e56472f9c03f8fee6f4554c7e5a3.root': 6281L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_9_281c4e19db536d44f60a23512ac8f2c4d68288934685b45b1a782910.root': 12258L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_2_f5f6d040bc1feae27f4570ae8cc55e5ace874fc4365b19cd21eba52f.root': 1853L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_1_18ca6b45f3659cba744ae794d3e915c573e16a32d718231653c129eb.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_25_72f58168f2d982f08860898c47a8495a756a2138694f593e0588cbce.root': 6688L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_3_7efa9174d99e9859578243d2c43befc2aa9a31ad0d3ea0ff0e7f5624.root': 2113L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_43_ec2069f541c0d2b9490ebe60e82b32d85430821f36eba2ffdd7df710.root': 10597L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_31_890d11a7888e0f4d8c59bb2271c5849206370fbb1fc52534936b3a32.root': 8037L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_5_30ca4922f2ff821f93a65777171d6bd9da7bafffb79dfed557c39dcf.root': 11653L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_38_8c00113f05f063d0f9c3daacce387e2900986027e23cd9196b74424d.root': 9570L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_16_89f8c3016b3c1d9df82415a67d54edc47d18864751e00a892fffca0f.root': 4785L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_20_2008c8d0e3df08a825cc0e92bae9f0f8df6f2dc8fad50b52c7e0cf33.root': 5657L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_36_8fac23ef88e4a975970135376e51afb4d548dad0240994339ae99019.root': 9173L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_30_8086a790563f74fc2f7aa535de97400ddb017c394295fa3b3651f039.root': 7861L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_6_767b6fe3a8b66ce4e65dcd8d561b25269d338e89ff5a49c93002aba9.root': 2868L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_40_7f10bf5fd6e05fa98f5b955d7bad391bd8dec32afbc84053548e89c4.root': 10136L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_26_9a33ba985db2c733b3274e08e43b67fae1962b43bd445c1d1b6b8d75.root': 6853L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_6_56016cc5963f6724ca881328f487f5129e3bb234dfe8289900482b95.root': 11833L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_5_605e808bc6bd7cea504073aa621cabcc5c44fbef5c72cc8292d6b94e.root': 2697L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_35_e0be799f3bc4e48245b54c8a4316ca4580f684eba6e39116a2d48b1e.root': 9041L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_32_1ab3b6c7a988456129f2b17f52443a4b708e4e84818ea89bb7e38b3c.root': 8327L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_9_5985395416e0576b0496bda69611a1a1d1b8bec27e15cd30383b9eef.root': 3373L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_8_ac56a28bb528f6248f992725fd19386ad777efa807818834414be937.root': 12029L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_1_08d1ab886982bef6dc63895703d5c08e3557c8b39ef52ebfedcdeb8e.root': 3615L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_47_cde740f448b81c6e8a8cfe097d9cd046fa7cf28fa06c66bacbd54266.root': 11298L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_3_ce3f56964d21900985e06a85c72e5708aa0b21428365b9708a070a5f.root': 7711L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_45_8b9de30f4d19dd1307215bf88b28ab3a4da97c7ff72b36e1e51ca0d2.root': 10942L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_19_95eaa2e47a4dacdbbc0d44fb0bc5247ebe9eff5acaf40a3b11561015.root': 5247L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_4_df995ade28282f1b3edecdaf6c4cebd0943d3cf45985d2d093610cfc.root': 2386L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_33_b3709bdc49412b86c2b26ef1b38c8b82d94360ba7dacd4450540e5d2.root': 8583L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_17_3b4bcfe3322be62724697c1851e20ee3c734c8ade055776211fe8e78.root': 4927L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_2_e65a5c62912a278b96cb9911d55eaeb472ac1c8bc1ae47ebba3d83ee.root': 5452L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_24_ad10de2f7bb18b57238b629cc25c665429ac7e62a783e3c546882b47.root': 6475L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_8_323b6501ecfc8721e0b46f9287022b76cdeddd97676fba3b0f43d4ef.root': 3186L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_7_d888d4045946e7f30ed713d05e69ffdd6024e0a70b8f548f624fa01d.root': 12000L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_14_702c1040afe9cae0cc11462482f052804e107086ef1c71c282c25db7.root': 4425L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_39_10821500b4ba46a2dfded07f45a8bcc6695803077c7e684c4a032ab0.root': 9738L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_15_a95838869212694216540733316963597d5a6e2deb08f30573ccd4b2.root': 4604L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_48_8162c0b15687b18bb7d795576330defeb7704617f49da4a0b06301b2.root': 11470L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_22_02bbb4e8d99063adc38a1bdb90087e6a2040ac1be7943078460d2db7.root': 6070L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_11_244782c3b32767378da69b722ab4957af4627f323bae3f7fc4051f6a.root': 566L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_18_880635dc013dc746350d859d43fff07a98775384442bf0f6abb3549e.root': 5090L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_7_0d95186f8d2e50e124bcdf221738471ff04d480eac1b3382b02a205e.root': 3024L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_10_cdca0399e3b3a7638281f39ea2d94599fd532a7b7f605b30ebdf8854.root': 323L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_17_56481f3bdbfaea5517083fbf573c490e7607cd727fcb05207871ef5b.root': 1711L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_44_c68cbe125534050f09be8d794a7538d8701cd95571cae9b3fcf9b1c0.root': 10775L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_42_2dbec05c9c99e9b2513a51f039875a0583b1b6506bde4f1c0832116e.root': 10494L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_4_4e91522d791bdd30257eb2f9c7a5ea01d1773e1891daa25fb1129a73.root': 9945L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_46_e59a30ef5079a648b7dc78ec47a9ca7bf59bae2669ccce4ad272e9f4.root': 11105L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_13_012f5693f8d45e266d26e6c9168db532765359a79a574f403cac45dc.root': 4237L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_10_476a6ba5c85b354c8b166a686d94388b7496e6f5b0ec0699febcfdd2.root': 3705L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_13_7e35c3496488dbb19ffd173d54e34dca3ffc06ef0df03423221d6524.root': 934L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_14_1ef80c222a3fcde83dc07d77f76aefb6a9327e8f077d27849b583ec4.root': 1099L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_11_f51070ce55369627d3b297731e4633f2fb91fa793f89a93d94b4e8cd.root': 3883L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_28_e0ae0592c0ab6ecc1bd9d86bca5316c3fc230b159b3f3769f823e0cb.root': 7311L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_12_521d12ebf301b417a7d4395e93052c4b47d7e346b66d69d4bc59c0f7.root': 859L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_16_068705413dd5d25816e8bd310f67ce6b888c7bb74171cbad6f65a129.root': 1558L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_21_8eeb4f86deb34f5788a45614c09a7bb257e683bb6f32ebfcd644c7b3.root': 5903L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_41_68f078f19681773a6c317882dd1312e405d8e6305b8a5870381eb108.root': 10308L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_27_eb99f8e350b0ad2a6255c557eb16b62c0949fd2dc3b86ee4c35588d5.root': 7147L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_37_db741c29e7d15549375346de076bad6413a539ff93bdbba989c4c501.root': 9394L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_12_919f4ba14798e4f0bca235a35d097a45d144f8897c3c2c0bdefa699b.root': 4033L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_15_bf7f11f7a32bed828ccbc9faf09023b20c32de43014aec2d590abcca.root': 1300L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_29_6dc7281ee50bf6c82e77e4cd7670b16d6e07708247037548564142ea.root': 7526L}, 'WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_2_2b1d1e955c80c8ef7ee3b2ce69afb9fe556cdc04e8bc8018b9872ac1.root': 2343L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_3_3144f6e6c7078cae1f968ee2d441a30ce27b582c687a7508d10867e1.root': 12167L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_5_dd1504647982f99862a293f2bdce42a558909e0ee5062f4c2faa78d6.root': 23914L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_6_0581a3d60f7b514d4e6e47d79d871b84cacdfb38e41e7c3288d45a07.root': 31546L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_1_e820002e64e96110820e9a5e5dcec25ff0397c5c51a39a8a5ae29241.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_4_b2b81c1018ae9cb379b01d8d8414c1947cdb3f83901a51e3d217c1a3.root': 19741L}, 'WW_TuneCUETP8M1_13TeV-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WW_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200211_0000_4_c2aa49f711189621fa9478cf0a97642c0cfa626aa3a74cbd1155df7a.root': 8572L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WW_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200211_0000_1_c2ea44f4d53db4228d892de2d76492a780f40b5dcbe024f636b60115.root': 1757L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WW_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200211_0000_7_edec0de9bbcc0fa9fc66405886f8f5dac0bef99fc148671cea766821.root': 13995L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WW_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200211_0000_5_52939b46e41fece3e67d48b1c31b6df3b2e7013fcc30520b7ef1d627.root': 10621L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WW_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200211_0000_6_b60104e607454b0f2abe34b5649ebe9b73ce708f6c58b595de014d68.root': 12835L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WW_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200211_0000_2_132ba026107acf4fb0911572822299bbf5eca19b43690281f4f071b3.root': 2416L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WW_TuneCUETP8M1_13TeV-pythia8/tree_-v1_190523_200136_0000_1_f12c15c7e622cc8ae8b7ed2cf42a98c06e32986779882185313d3444.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WW_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_200211_0000_3_10a942072f6478ee0ff1f30ea76a506e8ab06612c31f1a258698b566.root': 4630L}, 'MET': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016F-Nano14Dec2018-v1101_190426_094815_0000_3_7facb00071360cb1d6552cda0a9d8c5d1ed6be3da5aca1bc1e735752.root': 943548L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_8_1dcf659c777436f1e29a33b554a3c1eaebff5020b6f39693bdbcb438.root': 1845014L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_17_ed8102274d08ef3d9dcbfe1c01f0a5df4cdd6e6de8a49d6f67a6a979.root': 1644638L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016E-Nano14Dec2018-v1100_190426_094730_0000_5_8330d784ec1a73310f2aac7013fab2f0dba2fcf17344139346022b7b.root': 782073L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016D-Nano14Dec2018-v199_190426_094645_0000_1_8a930e0a36012d89b0c94e0ab4bf2c2c81c0b5bac6d5177cad9699f5.root': 449683L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_12_f8984c19e38556b6794d80ebc8539174026de58bc7eb4d08885c5ed0.root': 44492L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016G-Nano14Dec2018-v1102_190426_094903_0000_14_0e8db0ea85ba7d4d085b3d18e70e74ebbeae030c1789e9c41734588c.root': 1194837L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016F-Nano14Dec2018-v1101_190426_094815_0000_1_e26a3b0d9d805f7dd704fb5e90adc3e87ba9c133b3d9497aa27ac9ab.root': 895438L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_15_4b3511f8795b25e046d341ec8e5a232a5791f3c739ae7b236bb7dc51.root': 102552L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_13_3f3613e8ccd02e2d627d53b6216cac2fb0c92c8b55a0b37aa3e5738c.root': 63836L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016F-Nano14Dec2018-v1101_190426_094815_0000_4_b300d2757d48bbd024b003f095c5d25fba654d8ba7afc3f016780152.root': 972176L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016G-Nano14Dec2018-v1102_190426_094903_0000_13_0b9552ea2cfa7bf8108c7e5a654be01affa54c8581dd9cc7b17a2e42.root': 1162427L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016D-Nano14Dec2018-v199_190426_094645_0000_5_a3e62b42409580dc9ed3eaf90c3104e28e6ae2ec20699ea5fd78928b.root': 563400L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016E-Nano14Dec2018-v1100_190426_094730_0000_4_6b7ab3c1d4a99c485ebe180c60d2215b9f967697eb1e39881e0f8e9d.root': 760094L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016E-Nano14Dec2018-v1100_190426_094730_0000_8_2f2738a3faaa7fd18dffd8b8b6b327852b5b2e44da99ac8a9aca1cef.root': 850346L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_4_90c2630ad84a9107ad0d1bcd292ab6c690db1cfa8cb464e1061bdc0f.root': 198682L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016G-Nano14Dec2018-v1102_190426_094903_0000_1_2d8fc1002a2517e89c2eaf88600e5a12b335622088bf99542ee09c2b.root': 1068845L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_17_77a9b2cac34934534ba4154bba96aac78797003e75af041b4e704cfa.root': 141605L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016E-Nano14Dec2018-v1100_190426_094730_0000_3_e315edd8f08aca97e95c12d03ba7999034dd12ce465fd001ab0dc16d.root': 739618L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_18_a97902f3c88759491d0b6551d3229f6b105cdf06ab349438596f90de.root': 160127L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016G-Nano14Dec2018-v1102_190426_094903_0000_9_d81d860ba908fa53f0de793fda0edc7ff513f250a30063c7c904544a.root': 1421009L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016C-Nano14Dec2018-v198_190426_094557_0000_3_400ee2a1664e51fb5966d4515ea04d9b951c5d0b7195d66a9e11b68b.root': 332495L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016D-Nano14Dec2018-v199_190426_094645_0000_11_8fe7545e49263e827253c020b6ca512e18dfc345ce7a46c83fd70617.root': 480642L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_5_6c441fedf4a51a1073d49e86cf63418c51eb7a2c8b28d719853b2df9.root': 212020L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016F-Nano14Dec2018-v1101_190426_094815_0000_6_c98a9a00cf5aaf6b569e73de91be5232a4e26f3fb4c87aff153bd710.root': 1029551L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_1_cc98b4a1fb3134c54e9d5b1c8626322fb886067eb3d1711aac35e73b.root': 1452934L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016G-Nano14Dec2018-v1102_190426_094903_0000_5_37ddb81fff8e37aa4bf1efd71b28c3c03b0897ab4688d3238e6542fc.root': 1296898L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_12_fa2a8840b6eb2b67bbb50a28ec09cbc3dca57bc173d0fba4b401c2b1.root': 1518510L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_7_da871913b0b0ae7fe3829a4cef9c8a33daeb8220999eb92d3b7ff4be.root': 249112L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016E-Nano14Dec2018-v1100_190426_094730_0000_7_37658532d7f47b55efec4bc083f153447bc759c1196375463cf01929.root': 826694L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_11_4a354b97eb5bf5305a44abd8098a068f00bd5eecfef227a7219afa0b.root': 1500903L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016G-Nano14Dec2018-v1102_190426_094903_0000_11_9ed6791c2b23bf87c2d21bc0aadc3fc0c60a5af09d86d09bb99b4cfd.root': 1129256L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016D-Nano14Dec2018-v199_190426_094645_0000_7_2af18d0ceace9b26bbae0e1249563744f8ebf2182ac376a0d5293a12.root': 607033L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_18_f51ebee782041f700fa9e2f6a3004e4358d7d2e81d7cd258417ebc44.root': 1666601L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016E-Nano14Dec2018-v1100_190426_094730_0000_6_722a3a4cf805dd6866f4e475eefca607cd3d072f493a59d9fca846f8.root': 805742L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016E-Nano14Dec2018-v1100_190426_094730_0000_10_4ff7f443d5a24bb744a260d2d5a34194342b7e85ab18b8903d2fe1cd.root': 695687L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_6_588e251f4797f22554b122a7551623f0927c64adfedbb2971e918504.root': 228548L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016D-Nano14Dec2018-v199_190426_094645_0000_3_3a66dd8d6183f9b3440b18a9fc3c7a8ec8023ba0a7e3bb87595eb05a.root': 518504L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016F-Nano14Dec2018-v1101_190426_094815_0000_7_d03f941d8c7b27a7086328f4448231676de8487ecd53bca60d6e2077.root': 1056605L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016D-Nano14Dec2018-v199_190426_094645_0000_10_aa267a217c27b361e03d176e1d7456b1caf4644a7cdcd187c5f80607.root': 459163L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_4_4e1950245067ce9c05aa94c96c49c9102ff418760981bd6972c3fb6b.root': 1747715L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_16_082493869df970b912f242d5141705db8b9d6091092076af588df550.root': 122963L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016E-Nano14Dec2018-v1100_190426_094730_0000_2_6a2f5d476b38ebe0212f2aab91a131e0487eca5247962f70555e207d.root': 715235L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016D-Nano14Dec2018-v199_190426_094645_0000_4_c86f659ea23b4990afd0466481d5a9164fcf3369d55a8b3d0bbb03ef.root': 541397L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_2_d57b90d7cc4c9ff3cf5d9541d06a44a906f5f220aa3532d18678d8f2.root': 1697310L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016C-Nano14Dec2018-v198_190426_094557_0000_9_3a0d508fc5d5206c3784b834946a0e4b369d29e8d1624f029f5857fb.root': 437022L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016C-Nano14Dec2018-v198_190426_094557_0000_4_1572d793aba759338f7746ff4cdc4309112a941f19e817525d84c458.root': 350246L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016G-Nano14Dec2018-v1102_190426_094903_0000_4_da4d1c1e6420fc7c9fd11604db4444fa54aec849c7462c78bc4407f1.root': 1265492L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016G-Nano14Dec2018-v1102_190426_094903_0000_3_9af34cbeff2e249b760ca0eb467fc72bc79bd45130106e71bd4ee451.root': 1235880L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_19_ef380439c28a214a8a42cecbcce6ccc6d4297a8b4d172831ee03d370.root': 1673283L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_15_ff36f3aeaf3d7e371dbf12ee9a22270e364103faf30a15a2f22ec828.root': 1591596L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_1_b7a35d7710f6f89502af3d0ecdf6d6fba9af4364cd6db3b779892dec.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016C-Nano14Dec2018-v198_190426_094557_0000_5_a0143eba1f523ca3d87095d98533d931fe1ca1052d9c7f047e255603.root': 366735L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016G-Nano14Dec2018-v1102_190426_094903_0000_12_d3ca98017042032933961ca264d822ce27c50fac11621496abf11cd3.root': 1159401L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016E-Nano14Dec2018-v1100_190426_094730_0000_9_c098e3807026581af8f68e33624f06632e205f2592d182c4a88a9bcf.root': 871695L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_8_86e42c53e82424224ada7f045db30aa7e095b921f683180a9a0d3cc8.root': 270064L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016G-Nano14Dec2018-v1102_190426_094903_0000_6_771f43189f441d966c4161a0c75dad4c97694288d4c8cffbec18999f.root': 1331143L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_3_b2defe47751ccb6ae8893503cd2af5cc00a840e43a0149605e36ab92.root': 182246L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_14_bf8d0d59fbbbd2e7c48f0b6dcfd4375748498f23f39bdc4284ad8547.root': 1567800L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016C-Nano14Dec2018-v198_190426_094557_0000_7_e81d5503e204c8ad5489501c3cc3036363f460027038922ba594a8b8.root': 401359L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016G-Nano14Dec2018-v1102_190426_094903_0000_7_30ca3768d453456414c7cfc141ae1136d5ecd42d43b8dd1a08da8fc4.root': 1361471L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_6_e5536ead411052bd8e630dedfa6a80cbc2d6b65e250a32ff4e13f9b3.root': 1793969L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016C-Nano14Dec2018-v198_190426_094557_0000_1_ab8665018d9b0682e6a4173681d6155f1717639b456f1d6aed58c6e4.root': 307717L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_2_52bd93e8d7b9b56669de67c04b4f69a8387a6683586ac20a68516ffc.root': 178845L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016D-Nano14Dec2018-v199_190426_094645_0000_8_5094a9c38aa823649edb5b01224ec908987f9a399f88c3c3cea83947.root': 626576L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016C-Nano14Dec2018-v198_190426_094557_0000_8_e964d1a88375ff3beeea92adbb0a63a35aea7de842099bd6f8a496a3.root': 419020L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_10_96f9f2c5bfdb6796fb2b47be9f6f699042145c03c5319052e29ab539.root': 1479807L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016G-Nano14Dec2018-v1102_190426_094903_0000_8_a640446b7875096b7f3b7f514cc860bf1ecf12b7adc5bd04840be227.root': 1391403L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_7_1db4d6f394d3c769f496c46e6d5bfb8c6b59cb72083fca81ca0f882d.root': 1817564L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016E-Nano14Dec2018-v1100_190426_094730_0000_1_6a44a45bd3fd6a85413a26a33de5fefadd8f4deac6f26dcc56a261a9.root': 672018L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_11_31cf6d5086e2df41629756998130f3cddb7c08b3fdc4b96e1a7030bb.root': 25855L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016D-Nano14Dec2018-v199_190426_094645_0000_9_edfba793445ea377b5c5c00501ef00c4ce3886df51a368ec54482ed0.root': 648728L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_10_c43ab0aea4199b149111c356a6530faf41ab2de5a463be1c1a31e166.root': 4406L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_5_17c977ebff15fa3d5c1998735eb108d65d906fb6679b4200e8629438.root': 1770565L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016D-Nano14Dec2018-v199_190426_094645_0000_2_8aab05b50640fc0108e5c01c60576aa90c0e18345e7497601806f9ba.root': 495669L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016C-Nano14Dec2018-v198_190426_094557_0000_6_61ddc17ec41770a98b9c681c9b601854331412094f279334e13a9688.root': 383377L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_16_2b11dfddd40d5a5d45679a174d6d7274c5b268849038abcf75c9fedd.root': 1615957L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_3_e04281db3b7be62e2e6f807faf27c5d43ad282a4d0c7e9671596d517.root': 1722427L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016G-Nano14Dec2018-v1102_190426_094903_0000_10_58b0fadb89bfcf9769345a925a4d547d0d404796ce98b020f7461c0b.root': 1098953L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_9_9ec6fab2779eb80be601328661bbbc03087aded4e525b2dac6ab587f.root': 287701L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_13_fae6e29449b999985b94fbbcd9c9c1ca20c80e2ca897600863b3b474.root': 1543303L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_19_7f34436d29641e93c74b078c6f8ffef9bcdc3f5812010c12f4ae0677.root': 178471L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016C-Nano14Dec2018-v198_190426_094557_0000_2_a71f34aeaa14416f7c44b97cd5ab11e7cdc19da9020594300e3fa908.root': 324723L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016D-Nano14Dec2018-v199_190426_094645_0000_6_f9f78d409cdb2da8a79af9cc5c9f9c14fb0be8480d4cd18d4b247081.root': 583927L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016G-Nano14Dec2018-v1102_190426_094903_0000_2_9d1820214a87ad2a5f2cc80dbcb52d3d51b90e238422ee419f58af03.root': 1205063L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_14_ce7ea8aab573adee4f66d1329d95224d32c8a765ba2d9bb1b3ed3eba.root': 81922L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016F-Nano14Dec2018-v1101_190426_094815_0000_2_c83513478f8820cf8c9a3283c634893ccc676167dd0ead202503acb7.root': 922681L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016F-Nano14Dec2018-v1101_190426_094815_0000_5_dcde8e6fc1f7c8c26a5ccd0b6baf4439b5dc2e900158b3bc4a1357e9.root': 1001427L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_9_bf166050071d771b854898ce7f180fdeaeb5334ea72b552f07618ba5.root': 1871662L}, 'ZZ_TuneCUETP8M1_13TeV-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZZ_TuneCUETP8M1_13TeV-pythia8/tree_-v1_190523_201334_0000_1_47ef03dfa2a610ce7c2d842d90ce6068fc5b55f15b791b62c4638378.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ZZ_TuneCUETP8M1_13TeV-pythia8/tree__ext1-v1_190523_201411_0000_1_0f962b8b1f6fcb13921cef189e78fc0e67b720847825335314c24e11.root': 5139L}, 'WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_20_845afda933a9597f4ef2a5b2f9d74fdf401e61dd2786f5da1bd44499.root': 358822L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_6_e76436498e515bab4dc4a5784f277b09f2f440f241da4a89df83ab42.root': 197006L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_18_aa08f9d0c649f9200281a9930197961c80e6d8002942dd9d1c0a8001.root': 320410L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_15_24bd6374079ac105691d71cd340f1a50062eeca1708119bccb2676b8.root': 283048L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_14_270ef89af77a18d8a5f8ceda4ea8e6be09bf9dd63ca2dd2970fd8940.root': 110148L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212155_0000_5_6260dc5a694028b9fc237c8f4ba4255ce3008025e1f973dc722830ca.root': 55354L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_11_661f70b825b6f9a2977aeb60dfbadc9aff7e92b6ba96b9e9e686990d.root': 79740L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_19_910bc035d291aa18f93a3f74af381dbbaf38c40496b0c65d29a2a822.root': 337917L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_9_ff73a6a8eac714ebb398bf6519de1e3210b98b69548db65f9272047d.root': 214477L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_12_00c26677549f3f7f3116a4237995f1295da5ed04ac948fa96d7b032e.root': 90806L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_4_d7f0c9e1bd5a1766cfc3d5d942a2a1463c5514b606683b134bcc93f4.root': 173717L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_2_752a6a63b240a54472449b825355704e9de71848c8cc05bc7f41d4d6.root': 148709L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_1_fc4ee4742d517a60b7009a4111492ddc1da82db16970ca9767fb943e.root': 58045L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212155_0000_2_3df4e6cb99321f70a576af6fb0c07749ea0de5486b7665b35230a957.root': 10886L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_2_b3145f9d2d021c3dcdd222c7d31479dbaddde0aa01a8ec6a46ab1bad.root': 350322L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_5_7a60ac6a107bfe9b1a0ae4cb779dae1009eda37e4d5d0d1bed0d9b7e.root': 399916L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_8_316840b63496bbaab9676aad262cff3c81e8c2d13ce8528767c4308a.root': 214175L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_17_248f1fca1f317e57a9cc0a462d5bf97a51438fe081bc23956d8de00c.root': 307876L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212155_0000_3_0d9340aad777fb466beda178daa8b44fbadc6e8d5d4f42571dc11cc5.root': 31076L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_11_d15ee91845a3b20d6a5f731abd4d0ed09640c5c8ff93d04d1a2bebc8.root': 234009L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_3_f45ef064dd7b2f8f86919a297e9d0449dd6f0bf0b3d94acdb1ebdb0a.root': 379028L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_6_da80136b7429e0d49702ad4ffe3d6e7a36d3aa49060ccdfe45155e0b.root': 410635L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_1_43ca926aa50d0198c5b7334662363040a18f3d8f5c16c7be9793945e.root': 223083L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_10_f8900baa5cda41f496ab016c9137a882d842ccaa10a169b8fd8218f7.root': 69087L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_13_8a98325449963cdecb8a9d6cdb995b86a4740df5a1da4e60a9c20c17.root': 103286L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_7_0f18c0b7edab548b34aea2e086afbe1213a7cd3e86281cb3287a66b9.root': 422574L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_15_318c04a36cc91e1d23df194687d8eec5edb5dcea3bbe5d852e003bb6.root': 122505L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_16_bf23cc2d04cd09ee0a08b14841d34a1f2a50bedf7dc9152197d924a6.root': 297626L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_7_2c2c5aff98800a68d38964a4f24859b7da67ec7e4c5ba351dfc86ccd.root': 202550L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212155_0000_1_bbbcdcd855e8796d4b24e3ab5d66b2ebc69bdf72cd0f470de1242c5f.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_13_2c2119420bcc0d7a6947904c774189f84169419b45e98523da285c38.root': 271488L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_5_16eec05dedd68c8042d10d200665afd6fd216ddc437e4cc64fef9ce3.root': 185358L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_14_95faeef0aa39d0814e64062b82e4bb95656e933b9737a5cdfc2146f2.root': 271820L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_9_00e045a826e93cfb073bf5ca4ac1b5e6c3ee48c265a540f3de14c209.root': 445202L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_12_72b79763d4ce898f612f436428788790580f735a5e6c799c18adc440.root': 251307L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212155_0000_4_27d0b35229d833737e9b9cfb51373a280b94907a15c6c5772d130faa.root': 37354L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_3_c5273e4ccd7d3d199fe31ab66683b48e07dde9fffd43806fdf4bb7e3.root': 161562L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_16_8b81f48d679270340ba9729cfd2e3b98042e5adc09161ecc7690d55f.root': 134683L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_4_7ba73ade347ed820fa5793f731020c8442785afd3d295ee9aa117079.root': 389640L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_8_66852fb5c8ed782f82fbf8e391cd01c5ef31a587c66e4e7b72ed369a.root': 432881L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_10_8f26d6b50690dd074f285e5a47e1fbe9469fa56d886320016251cb8d.root': 223362L}, 'WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_4_4b264ed05077d83cfe104263b32cd7b84544541e6f0f79f23fac9d37.root': 2924L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_17_e7d1ed63a6dd4ae57ef338fd3c7651aeca1faffe2c1be2ec9ee75390.root': 1523L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_9_db01e108ceca029cb4adfb2cb9ed11e62d6ea7592c5973fe1932bf49.root': 4388L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_27_ec5990b45d45b40f696468028483e3407f44a962d0c265f7e25a99c5.root': 9909L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_12_30fc66238b9629db6e7af09ecf9144e12ac5948eeb50333cb1d01743.root': 5457L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_33_ef24f522da7dd147f94c08f3db0a44695bf2434af80ffc3a4cc9d306.root': 11774L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_25_9e07f1f10d77757ba7997eba8bcdbbe959472da8bbb752468e270535.root': 9216L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_34_59dd3b51da5915e3678dad406bcbea6561ab1464f843f68728b98176.root': 11865L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_22_92ba8a3c2855854a3cdca7e1552824be6540ac6b928193545fae9c41.root': 8166L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_19_30626b7699ba155b19965009f98eac47d827f834f530a466d2e47ddb.root': 1964L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_12_544eb11d16fd27e965ab3939f6ee560adc3ddf5a62de053b7e88984e.root': 577L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_11_c29f01aadff4aa84a610979f3425a5e6d9ba3a6e7eb78a4a9faab039.root': 5281L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_18_cd53622ad5883dcdd91af4b17841cdefc3cb51ec829b12577f88938e.root': 6525L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_7_5414e5555e3c9bc6cc729379c8b01b4ed1a95895f08e2bd668c01758.root': 3845L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_20_3e3377cba271853f5837340c312dead9ada1c8ab912e5ab51084c8fa.root': 7509L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_4_1ac02a011e997e50d33f39e05bc68fd6fdee7f2aee34f89eb5bcc883.root': 12542L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_13_1a7aaf03ae64261e994cb65716aa99d5e268284745d448a613f1b38a.root': 5690L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_8_92db9fee0d1a4567128721684a163f43b5a5348dc5af529401fc1843.root': 13504L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_18_c5c211f071ea6173c306031f9cd6be409ff7d8f7b0afc92626050e2b.root': 1742L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_6_bc6796553d685d329f22d25ca399b476e38c8fe1ef7cdc56fe1de926.root': 13108L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_17_da9d6160d93258a19d050d5162e6127df8aff60d3415950d0dbcea4a.root': 6334L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_2_981685b98435c553452526dd9cb8db50e4228dadc529b66f45cd2902.root': 2364L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_10_ffc0d91b5463f90b5e8f42fbcf81322cabc69d4d12c7adcac9481774.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_24_1860422e336cd345a8081a5bb3696cea983c6641dc23e0630dbc3f9e.root': 8869L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_36_4d6ab2b7c7dc5947c254e5af575270c8e9f84e9c366487c0524b0ec9.root': 12322L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_5_bc241948f3c7d707cfdd7003bda0e47757f7f3728c208cc3b9b1aa03.root': 3136L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_8_deb1484ba38b23f800ccb4d9376352229b87f0b08c67b909187cbeb5.root': 4122L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_15_9f9308074723013ab8481e74e4c729a42db94bdb7848c24398e72f83.root': 5821L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_11_aff05db59fbf2558baf882204a764d679dd9bb31c4c744e54050c869.root': 257L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_30_a1a9b12c2f3463152a40d171f5c7f7f499f45bbfdf4cda26e274e66c.root': 10780L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_19_4c65dbf8576d2096222ade9f52827fe313a4aaa163a4140b3e491191.root': 6742L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_15_cd904f4784a3b609752d64e889d569bf443f10ba093c6862b39bb4ac.root': 1257L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_3_75416bb5bec7cdbbdbdf60a5861de29dcbc5b9bb129cad5561f75315.root': 2678L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_13_4f57b18dd363077be66f3a6cf9ea8ba0466b168748ce204bc5a483fe.root': 832L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_31_3574dbedc0b64ecb6e8505eca3a6c4519ac263252d51955faac0de9d.root': 11093L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_3_53ac432d384ab206fdd726a4157d88bc0e0d8dbcc903d0f393b9484a.root': 10510L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_7_f983a20112ee48be0a5777e7030fb8166e56222ac8480a851c3b5c65.root': 13496L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_35_164ccb5c17dbee7ed2126670a98ddbb692ca4d3d3b2f60adb8898b7f.root': 12106L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_1_49c962be49442003f331830071ccf1cc76ed1985fabafec0bedf5757.root': 4725L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_23_82ba02dedf5585200105657feac023c64d8a029dff800f044f387687.root': 8537L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_14_33e242879e0c08eda9a794ee3b74799d5ede98e6502b7a1a60f4e442.root': 5719L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_5_674a97ac6c514e1a37c3a0dc4dd2e57e68e5c03741f3e65e05485ee6.root': 12798L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_10_0af07cb55ae98bf60b95cdb22a964c5d535e5df58b0bd26cb6b5e0d2.root': 5049L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_16_348cc5fbae55bbab1e2dc56562837a3e3a68bd5f8c6b9e728d0a290b.root': 6088L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_20_5804b11c9cf9d9289b79465645a03551c153c92b05e5b8902ab50eb2.root': 2662L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_16_e7802bc4be91ee1ad57df576df6645d72d2a301f6998a382d3dab8c9.root': 1445L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_14_dc45794608b0152a54d1eb52aa71c14f6f6598e7f42616a223bf500f.root': 1001L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_6_cf4e50a2c08496e1e814f3825d02851dceae8b359205ca83aef7e66f.root': 3466L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_32_c21d491eff13bed8139cad12af66e7dc46730cfc205c7a9d8afd142f.root': 11514L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_28_02052eaddc14f5aa3a9652a3179d03ac39d9742ba10220e207f70974.root': 10169L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_2_a59b2d6dbc0515c2511a384e2d4f974b27a7b96a794229265f57024a.root': 7109L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_9_d131cf56e21fd99ace1036eb86007d6981a27fb13a85e26131f76f46.root': 13709L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_1_1c08a244074dc05e8b233799ceca774a75b3d03b37481ff3997fcce3.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_21_05ed3bdcea11f4f088c5a7f0790a6caa655c4f6f669f3453b64acc19.root': 7853L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_29_9f8a505a254731743e456b0936d2b0c43a0afbcd9316772500dd9481.root': 10495L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_26_09fe39fcc8166cecf063a746c790003c2f3b3c8b5515e8cf6c655460.root': 9556L}, 'TT_TuneCUETP8M2T4_13TeV-powheg-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_44_87eef0d48259175e197c109adee55bd4e32d03ea6a25134a36288dd2.root': 520119L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_17_f8ce8a19fcf704c564c3659569383646550cfae2457def11e6e19f63.root': 102160L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_6_f61e5f72269a7175d150289f3cf7272f77ffeaf72f76679eb3fdb270.root': 758787L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_45_aa109855a03ec045bc091c68b6880dad96bc9c1f520c1341883df424.root': 535427L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_47_84c1c06ec52438152eea67a052bb34e499664fdb35c7656199f053db.root': 559709L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_69_71338c3fa7242f3aa9c97702aab2829551907cdfc964754c20638775.root': 865649L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_56_7c6601b57e845a6da57f0d81a3eddd329c8496aca2936b135c2e995b.root': 711340L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_7_fc2f0a545a2db8d3bfe58edd2487ca5ed337e1a3413b8b4ec514533a.root': 874868L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_54_e0cd7e9794f1d7d8b5bad20ffc11109de9fa02b1a45cb773c6386b65.root': 682474L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_55_4e436a4b58d3ed3bcf0e1dd1b13c8d823b1555e8ae63f47b545a5230.root': 700666L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_64_0f0d72e24ce3fa71472ab04561d6c09be8bb6cdbe5379da14ec21e32.root': 813662L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_26_3e8f3f4632edf0bc27dd6c6a8c3ee64e211f3b82c03028bbeb380239.root': 242785L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_29_33385a8bdb4e86cc4fd8382ded047dbe5e98c594dfcd3acfaf579078.root': 284141L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_27_3d7a42604ea974e31d1e057cf026fd58320a7b21d31163f34b5c8e6a.root': 261164L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_13_664e9175dbab69233a2a3232d32d5da8633bafb69701c9c2d19c5c6f.root': 44438L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_16_1a299bc3926eb64acf508421b8c89c191892fd356b0a7ff6df941cc3.root': 85776L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_36_84ece45ede9ee9b4b9ea646e33b5257514b4e1fe329dc4fc62495534.root': 386270L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_23_4e631e13e8752a1c83f30475686e001643e5188b5a2f8e649cf536c3.root': 195350L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_3_73b257cd1dc1aec53b298f6342d719603d46c8547093bbce9e9ba3fd.root': 302591L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_21_972ea3e98c0ed7f7ecb3ba4c8e674dc0602b41ad8e9996a0f127c4a7.root': 169030L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_53_6209ab23936ace39502a5989a7d4b94c9209bbe93c62a4df1cdaa668.root': 663808L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_71_d177ab687caba881dca8272da33d6818e1541584f312cc38051631a1.root': 888185L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_14_80747f6ca42a92a1da062225e75a9fa302cf4d564573b6071daf6296.root': 55957L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_1_9745b9f4b9e007084017a5367ccd78d29493103d18e304762439e7a2.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_49_b0cd4cd1f7b17bf3fc2a0c0d73bc9ed31d48b524a5a882c1ed6bdf72.root': 590510L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_62_2f0e7015f0f8a0e67bbcc69ce6f8493a0e3c986e64674f11b0780b48.root': 790818L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_58_8950300f87600e87589346ee823efd3d4b6341d482d829a9f857f11a.root': 738914L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_60_acf81e7818087e8024737d1316191b7349e0e0656f649ef5017312e1.root': 769305L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_33_070c02d8a3551e294c1f56fd6b1d8ed9da84638bea1cfa70643f5cf2.root': 343169L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_51_32699267fd27ffdebe6c45c4037c5e1b8e026879f7309b895b5e511a.root': 629697L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_59_84fb10521b3c08427f43c80cbf24bc4eeddf1ef4ec5b38feaf7a0ddd.root': 749128L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_12_13a89d712f7fdb735117e326ec7985cd03cef9236470a08a03e532e6.root': 32464L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_28_db8fc7fbd7acccd2538b2d1a3f6fd3c1d8ab7b863ec4aa39fec37a1b.root': 270575L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_48_83ef2303a7d2ff930e6889f66ead137bb96d050367f7b1cfdf225f71.root': 578107L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_20_ea2d51720c74a3158cf1aad3a0cd95d0ddc716b21ab25bf98f347fd9.root': 150670L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_31_08e2c969f34956f01710b5b0d665cd99aedef1ac91c7b38ad7cc3893.root': 323463L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_8_8c8426cace8756c9668456467f37bc89befbc21fb09483e52324dd60.root': 889388L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_40_bf878d2eb4827042b2986046510e7be9ca0e5c01144db0e21d2ee003.root': 458812L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_15_dac70b2378ffcc8c199c57019c1b55fec22f0c9d9585516af49fae68.root': 67511L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_50_19de1c9098dd1be250fd00718dee14abf7a0eadd1fa7256703f26148.root': 620113L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_70_48007f0bcb9d63efa37de55321ec4fc1ca9b40b02882fc75cdcb3073.root': 887214L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_66_10a891caae7230cdfb83efb75bceb8dffbb5007440ed6d825458b5f2.root': 835134L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_32_c43de81029d05ee53a7ceabb8369279fed719b54b9d3621491c61d6e.root': 330871L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_37_700d9e0ff1e31135ce53891c69c357297726764ee0d4fe052fc18ee0.root': 398659L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_5_eec429fab69a4d113398c5936f40c2b6ab145cc02f15a82cecc6e56e.root': 608820L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_46_7d2c3d11fec19ab69d26019aa0ae802ba3f938be28cbc64c9ce066cc.root': 549396L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_35_e51ffa0cbb281ba21de0cd92431ce388da131669f590737a682f3bf4.root': 368071L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_19_65665f57845a4a865fb05c3e49b429c827e5a75b5fd75b3e97271456.root': 128591L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_18_5fd8b060a2ba9105ef722da599bd8cbe891ecf500b87311b31e2d0ed.root': 117396L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_68_3d6437836b0b93d4a7277f59a6d0f3687b78cfffa276c4b955028b6c.root': 855340L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_38_0b02f2b5dcbfc69e1f03b937bfd2b3ddfcebdd52452c9c9e64674d8c.root': 411114L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_9_58188ea11e789401add01838f1c14146f478825c3767e6f51633bb77.root': 899647L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_67_0152b48299b0a94eff4c61e375154dd17b8e52504ad8ed8740b9359b.root': 845979L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_2_aa6ef90b56921919bea0de4084175e86a56984359eed3338383642d1.root': 139394L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_52_ca71877d2ed468b4a82ca6913b1fc2f92c43dcb68465ca6864fbb992.root': 645476L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_22_738b340ae878839d9c629cb6b77dd622c634845ef8bb946b8381141d.root': 179099L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_34_55230d70eb08849b020375695dba43c518f2c87e5e1cba01de65e6fc.root': 357055L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_10_f3c09cc7fe88e982a27bd62a4b7411b39aa4ad2d6e9cf8c8abbbe9fd.root': 9660L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_41_a65c8eb32fbad2f1851881ef51d6d139ef75a1c91cafa9f793224482.root': 477445L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_61_bae562b53a32f60590d16b08cd7037ab1d29bb8ddf3326e307004b42.root': 778901L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_11_468f9a159e68745c6c241e974173285a961619deae4103ab37e02aee.root': 19674L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_4_3930e94928053736c31df87a454a2a82deaf13c3e75780fc1329f664.root': 448149L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_39_0240482ed8df45bd22933f496a64b3afa2dab7c2948fbebc306660f5.root': 429568L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_24_2396b1c08405f42d21659d738f877f8413b8cff506c95b6a29c2d696.root': 213647L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_25_365db20af6fbc4a90669e998ee8c252c8dee83045573d331acd6360c.root': 224313L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_63_b99c58570a39da5dc244d9f7b45df9344fa87d65e170e082bad38945.root': 800537L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_42_de9113f4b115c5c1372c0575ee2c75319c0b271ab8f057ad97e321d4.root': 490442L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_57_8afaae24eec2146efe16bd31b15e31968fed1184ad61dd6ea991603a.root': 723288L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_30_becb479b3496e00b89b533ed3a02ffb2883652ee3f7989339363df52.root': 312230L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_65_92a9f169a6578ebba6a63a2c8dcb847a53f3707b6b21adf0fcde84ad.root': 825191L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_43_0392e41cf55af638647fe83295dd4d3fcccb5147ff1f85b9f1de5b16.root': 508829L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//TT_TuneCUETP8M2T4_13TeV-powheg-pythia8/tree_-v1_190523_200023_0000_72_aeb642c56142ea485b377c81c8a1c13fc6ec1a002b91a3f83484deda.root': 889244L}, 'ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_9_ddf7e09957ebca1333043315a2bcbe3975f45d03e58f00fc8ef9d3cd.root': 654695L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_5_822cfc677efa66bf4da276dfce50227a1db347a84b630d16d70da0ec.root': 471050L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_1_6072d9b3310dd162d3bf2193102ac55e3fe26dcc5fddac6fae505b12.root': 229853L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB86_190607_054105_0000_2_5ce035eef8b26f0b04c2cd9f842bfe1b44b6cc57bd1b659283b75415.root': 103434L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_10_14d62ceb70ac2e2f477d432bfc1427be7666957e3c8652a0d74b4c8b.root': 275917L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB86_190607_054105_0000_1_4866f39f3db45fd02d376ceaca16511a3ea3130025b5956c668236cc.root': 57789L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_2_c7c038e6257b73dbf757562356e1285b581e95e2345a73c804ab4979.root': 333059L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB86_190607_054105_0000_3_28108f6b0054346b60ac75a0bb858f27825e374fa137bc6370374681.root': 138145L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB85_190607_054014_0000_1_f26ebf1b022816fb88d0b43617f563bbd8d45d9e823be8a72f74b5ff.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_3_617b0af74e607fe48f6e71d2728a3254c08097cfab47377eb0365f55.root': 378815L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB86_190607_054105_0000_4_bccf5ce0dea01557faef3b5d936adfb6d2ba35ae129752e97678ab5b.root': 183899L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB85_190607_054014_0000_2_aa0d04e48bfecab14fcdf936f618d4156e9acdb74f5fcc2788fe3cef.root': 46316L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_4_b27146bd949193254e69623c86763ef3be1ee615c0456ba8ab571e1f.root': 425203L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_11_dbda9ce4d1748e47154aee8d1427e2a37367d887c483cf0b95f75495.root': 321918L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_6_98810079fa4184bd3705e9808665e067d67a751e2cc0a136657fe4cf.root': 517457L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_8_dec67224732adfaef38677c1f706d83f671737998cdc6bc6ce2bfd3b.root': 608969L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/Jan20_v1/prep//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_7_402cfcb5a71af52447a01db08d51259eebf9acc047aa42a3aa7fa71c.root': 562943L}} \ No newline at end of file +{'WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_7_d384b65ee9bce463ab24eed9ea7252cb803814636f5839d5dc99b00d.root': 29485L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_5_cce185cd536619fc069319b09fcc9ab5272a4f97d9f16d9975d81c3a.root': 10260L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_6_245eaf27d2db6caaf2d7183d03f683a905d4400407c2b4283544281a.root': 12931L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_1_2297a171dca388374479109f72227c75ea4504f7d03679df75e29ba0.root': 13602L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_3_f39b1a7e6b19108158a1dab16d6cc7ba6f6b11c7a43494f3ce455cdd.root': 5535L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_5_69ed48716128bb69855a0df09a0c9fd7f62f8b034a941790b40e7628.root': 24409L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_3_d09146b0688f6c5f45e4d47b61ada2396cc79ab0eab700d3ccb71b5a.root': 18949L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_2_4fed1ad070c8d6700782fdccaa88b260af5b979908a20b1b3872ad4e.root': 16216L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_4_b151668b210a36e10fcf95766aec18b672b1ca93718fd9650568c72c.root': 8223L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_2_81d86dff59c75bb2d615efc87ea961ff23cd1974cd585456c0d56ffe.root': 2721L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_6_39ed70afe620c623ab432a8ccdd7b8daeed6d8acd42b5574e821ef32.root': 27187L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_8_94ab1960aacfe6b658ba463d0aaed78413e5fc3a6214e4ca22057dfe.root': 32199L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT83_190606_071700_0000_4_ba8b00fc25e0199db465d8c1b1ec364c7ec3b305eb8165240c529aff.root': 21702L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WplusH_HT82_190606_071559_0000_1_5703ea0985fffe6031512fc73068adab2dc3e1cf90f37774266f6bd3.root': 0}, 'ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213326_0000_3_754e4352422617dd448bda021f6ced2fa9fbde2bf46fa7e7e0b92526.root': 729349L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213326_0000_2_7023135e9d95ea61207e1e762e7f8c276392a5fc3049cd9178f5a19a.root': 281611L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213326_0000_4_0b8d8d3f90a73743ecda13fc2e1f41c1cb5f094326c0ab5d7e35ad2a.root': 797290L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213326_0000_1_fd4c805670bae0e9c48f1a1372fd797efdc0a5f5b2245728bd87b842.root': 0}, 'ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_2_7e63633bd4f37a3b46ea9662ab164745d725b5f3c97d1bb29e4e6309.root': 52333L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_4_4c79ecbd89ce843c7b123d9dd65de6cf2a3cb11acbecf6c7c4f71c7f.root': 57771L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_7_6bcf9287f8c3f5b6e5d0117035797c0b9f11ae813b6bba35dff7c6a7.root': 66814L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_14_672f8086dc50fb0029dc4f02df56aca1adb50c00034b56118ec64d14.root': 9339L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_18_e87784187e4bc9f6e88f8b46d7850985e94ac9af7f9358723acc7f54.root': 23096L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_13_7fefb1c9cf4cb8b4ac51bcc394ffd8f2e4ba0ed3ad1f00f82aacb2f3.root': 8332L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_23_990db23757085eb1ed027894f8f5a8496c62c2dafaa462ad3c8c07ba.root': 37708L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_25_afde4bedf79491c9b119642ddfba1470382bc14565c491893b2c2b8e.root': 43489L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_20_887baa35015d03ef587660a31350515ad92dbb75b009afe92dd284a3.root': 28375L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_11_369b9dd4a437c449a2c14f2e244ee1ca2133f34af2892a821c6b605c.root': 1807L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_6_ff47515da767a7237fe5871c6915e4f055feff6c3c7e6a857fd5c298.root': 63249L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_21_97bd350cb9805a47aab8f76e9f4dae4eb8b847aba7fe698c46fec162.root': 31792L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_27_591f4a98c1ae36fe4cd86e301ca183c24d8a81d90cf555fb406f2283.root': 48826L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_19_2e926d5dfe9a9f65691e3b43a533d75f9be6ee5fbecb3469acfb4b83.root': 24867L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_9_52ff02a99df9011b089bf9cadb3478ffaa3edcb1a08ff994a9393fa4.root': 73116L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_5_012a89bf4807ff81aba3a68725608d8f45e9f620533e50b93e394530.root': 59817L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_12_94bf14ca0fec2b78d49da1053287b43104394927730452fd3ddaf0b8.root': 5251L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_10_84de7463877e81227fa2cc53556b85ba3ca301188e740724a025cc9a.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_26_bc29161c0491a4b503ab35b6758b683e512593825c0fc77c3bfe1556.root': 45273L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_22_0bc75b37b0f149c6bafd3c13595efd484043857a33969260e76976d3.root': 34311L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_8_a25b65e5bc633bdea490cfc20d537d0ae62282bcc0675d49db56ba45.root': 69631L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_24_298070d06c5f2a42933222df0b9f850a51ee1e0998156d920c5c0a71.root': 39955L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_16_1334d7799c7e9a3fac4307851a622e720a1f8ff0caff42322703eb72.root': 16239L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_3_7a2bdf3b7de543f63d40b52eebe357840986015c418671e8f6261d31.root': 54894L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_15_536ef1861670ecdbc094d8e13f545b11cb1e0ecda4e98282910e6357.root': 12778L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_1_7a23df555b6b9c2bb5122a03bbb9074d915ab13f38d03294ab93b3ee.root': 28317L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195641_0000_17_2b399af008288719eb99bcc22b9596cd8ba663f49d6bbd8f6788f89b.root': 19557L}, 'WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211751_0000_1_7affea7e73147774ba9bdf6b3c1d67f9f7a4c8d68c06bc2beeda92e3.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211751_0000_5_8eccd76e2d5b31bafae6dffc820baa8b27a7030440ebce951dfe3c97.root': 230263L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211751_0000_7_51ff908419b6693fbae29781da34817ae04f6659ba85e35548d39c35.root': 394568L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211751_0000_6_6737001beecabbae39e1da3adb82e4a47cf76efeb4552966e7b55220.root': 356586L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211751_0000_4_3a1b5c4916031871cdb7be909d66aab361ce0218d5a1e6988d784b22.root': 166957L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211751_0000_8_3cd007bfc1d304b809c2cc37d5b409379312ad5addc2fb37b012e087.root': 530054L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211751_0000_2_237fc0b7f3aaa552963180ee57ac03ccd1f8ad883272696f4f8ae3d0.root': 4146L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211751_0000_3_97a4b6beba0ef901cee14b2efd513df923aafcc734e02b909b8586c0.root': 63304L}, 'DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210344_0000_6_50b723c3d902b438d948b131144418ba6e2b58f14bebf8fa1682fe49.root': 9884L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210344_0000_1_02264589f0a5d3d0a92745868847023a90a4c165f95d7ad88b495d2f.root': 6857L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210344_0000_2_b5bf65130886e798f4420c596f0672a3be1d4312bdf9d3bf7eca5847.root': 6861L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210344_0000_4_ec3fc34495e3ec3280c7828e2b83677a1c2449ec690ac1ad0b99f880.root': 8170L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_2_8802ac19928cd2d5794b527d7b2899779122fdcc7a2c1c6698b0912c.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_7_5d7aacfbfdedac486d4c55aeb7717fd961f201d763c22ffce55bc9f0.root': 6300L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_1_995e2e9a6e1bc1b68075980eb8e895f52cf8f73f2506849e3ed90962.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_4_c999f19905aa2d7e9c6cffc6e6bac01ace1a6cef80b000d2721c216d.root': 463L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_5_c715c6e822f84fd191d510c7e2c995d3796d085202c3d73d5f0018b7.root': 2192L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210424_0000_6_ffd6252191f23d603a3a28301690f2046188e981aa3e221baac33fe0.root': 4474L}, 'WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_7_a10d068b82e31813ca68a19ac185b21a5d74be8949529356c2bddf28.root': 15573L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_21_162c18755901325e173ec94f9687854d952793eba2565d1998206388.root': 29171L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_8_02cf444dbdd80dfe482f862f05efd4e7a2a2354a828664eb64b16395.root': 16716L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_12_30fdc8911cc56f8bf1efab527a64a8352f6d2f3061230de2412ecdd5.root': 2448L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_15_ecec0c9b31234e6225ee05876d2a83e8415e578fb5a264a6225bc6d7.root': 5486L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_22_104ab16b8d8e9afc9631304b2914842968066be032f48b33a92752f8.root': 30289L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_18_756f8493d7ddcfd7d93a029e59c92d7717e86e1f2bc9d6a951a1043d.root': 26207L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_29_78c6114a2f1e5b08532633742f3a5d336955a61b08cd3b688747b5bb.root': 34516L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_4_4d7ecc169b13e56f24894406d9c793edcd5fd650355fe4ed5ce808bd.root': 36817L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_12_363fcc6ff2b7aca3a1cf23c74e37942bbeeba35f890e28285c0e8d91.root': 20428L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_7_d6fa153422bec782a92e00cfb82391e9d4770f3a5992be29d266ce1e.root': 39777L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_3_83da6a1659f06129bd2544d7f536ef73f4aff30c03ff2597c05d2922.root': 11818L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_30_e0731860c3ff7c6b350a0c409e743f7e99fa59cc0a93a7ade63b6772.root': 35241L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_1_8f93135d825c756445812d2b176dc43359291cb08c4f42543af638cb.root': 41842L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_8_80c6e3375039f15c64281277ecb16f747afda3dcb94253685d25d913.root': 46097L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_5_1e0a009f95712c711787974319722e0cb44b8a73d0aa5b9cd18601ea.root': 13291L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_17_87a2a8b081bf9d31015d2b464e05a28de66e9e4496a8c9f8a9309ae0.root': 25172L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_8_447ae9ca3b1822ac4fc6b62955d7949717014c4c8856b1dac87ef6c5.root': 40408L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_2_86c9888d8907c1022086c7dc75a75fdbe425258ec995a65187aaae31.root': 42497L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_11_a24241db62f4e4026c9c1df8f6d703cafb3df631ff548bbbb96f5d7b.root': 1251L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_6_622a8b7cecf2dcf9ddde31cb43cc48c800e6b8c32ec81bbafb341f67.root': 44808L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_15_f1023e3b080bd190b05d48b48ddc7cbed8a9a3e8dc44cbc2f5106b58.root': 23607L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_9_fc037da09fb16828e56d76e429cc48ece6745793c98e07a736988793.root': 17349L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_2_7fe63e57be4268786b1fa2f3ace82cabfd16ef26e66ca70752899df1.root': 35145L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_13_45cdc6c5c9e17fae76e93c0b7b11492cca1403b1639b0b4abcb9e527.root': 21309L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_25_e83e58baecfb8b733567592207a083b8763b4453373808da8b328001.root': 32367L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_24_3fb43d2af42dbe31be7eec0f1775921237891f2376740a6ff4086b15.root': 31753L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_31_ccae5be5dfd9b9a45fe23bf411a8d47d1e0d1579951558aac41206f3.root': 35859L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_26_e86fdb8ece0f41b67fec416e7d8324cf02892a6b0fd9353cf0c6a1d2.root': 33271L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_28_96067d128d1a56094601d2658ae2f86a0d4ef09982b1c76863478651.root': 34056L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_1_cf6f6b1a4a7a3be80c42f1c9975642d1ccd8dff74429a09605b3fb67.root': 28122L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_9_74d53e9272a5905eb55d6e1e52c097e41b08b1870e54d4496ed03f4e.root': 41195L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_11_56e1e4b8a410f0cddf03f34a4257adc11e098ffc06f5140a805b7bfd.root': 19666L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_4_dfa005f30f8f7ca334fbb115563183c4f4a3fd29880a4b380a5caa30.root': 13027L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_16_a97f5d4e9366c5b616183f7d2eb8d0ecb9f7935d8dc33aea3d93229c.root': 6614L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_4_4b36f4184ddb8ee3ae488e5555a6771643df4addf07fa709d941b1ac.root': 43517L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_18_77c33d117108643be369cff59815229ac6c884e053db2f0f42a5d617.root': 8604L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_3_f411a10929ac9ed284af9a97e251244e86d267c2ebc0ac2f48e58950.root': 42731L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_13_f066e111a8ddea976865e7a4de33c221941021cfd3af8630a4586c1e.root': 3631L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_7_dfbd27fb75e9e7f70817643cc01b7a7e17107826afd19e613f3c1104.root': 45437L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_17_09549b25b1774b5ee5a08fc75a5426df6bb10d237dda845357f5e191.root': 7810L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_19_32e3a90d88aa085f2d645d39d0a173533631eda3fea7a384043fa15b.root': 8720L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_23_e5a9f51b6d8df005edfedfa0c06b967c4f5c033b878b1dc9f15ea8ce.root': 30987L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_2_dd9d773bf8307e2385f503d27094df42008b42d1e78b5b7df85a9da8.root': 10593L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_20_7742a1200de409bc4976c653e006dabb2bc4aa108e8cf72dad6a46b2.root': 28170L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_14_0cbce65fbaea2fadfa6374f04f9f7b934f6ae522dfbbcf89a1930505.root': 4353L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211832_0000_5_642ceed03b6f61173fd5848f2e89d64dfaa446331a212348e74e4905.root': 44171L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_3_70274aab22c341157555628e22b2981ec7c01c7243680767edb65b2a.root': 36456L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_6_d4fa32172fa13429748a6b15e6ff2d5ff165d3158a33bac8e6034dfb.root': 14353L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_10_312a5500ddb1e2c03a94a9d35a311f1be68e0fc127b59a18cf716a9f.root': 18482L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_27_19da015892e2e4d8924b817305ffa3cbfdd9d7cc2f5b03ce0b8a4c54.root': 34035L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_14_62ac9ed8d0feaa35ec75a190fe7b1c3e1356b49ec4bfc3d8c037f883.root': 22458L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_6_8331abbf7be15ec62365921ca1b6ea4e0b88830b92a1302537c2658c.root': 38975L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_16_906e0dc5e9eaf82077afd083dce861732db5e770ce92aa524e0b7192.root': 24255L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_10_913ee14aaebceae4768395a94fdfc1bb2b0532fb664e9357716e13dd.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211914_0000_1_dc7e7925433735645d4a9eb90fe508e5537310ba87021cb86edf158e.root': 9391L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_19_c0e7263d7b100af324938bce8ae659c3f93d34f2222d8a016ef1e7c3.root': 27067L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211952_0000_5_fc38df7ef22610b5dc171a68b55d8212f1252f139eea6fc9d8a2369c.root': 37973L}, 'DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_7_73112b203e92a396a34c424c3481759ce097dd3445bb3113748c9be0.root': 96103L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_9_f79f198b20686715b74e4c82007da1f5305df58708e637a19274e840.root': 114284L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_13_aec24fb38933adccb0a649f2869175b0ccf5d6cf740f9cc1e751461b.root': 27173L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_8_07b84620036e3ecd38f2b201fecbe807599fb69fac4da431204362ee.root': 105205L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_5_e2af21450fb53020b89213759a6bdb37c369f0e3b90f5f1f7a6c50b8.root': 77940L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_2_51b15fe8bf15176c3ce428ae6da8e95ad14982a8efaae38fa5e453b3.root': 50511L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_6_4e532100bb824535c0d5ae2b6f04344ca9f6cf99e1dd8a9dc3faad5e.root': 87039L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_4_88ef68e50fd39fb5e1876d8541f491531a28f74c12b1f4fed28dc6d5.root': 68732L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_12_3b8150589bc5eff128088b8262e53c4faf2cdcac3d73e0cf74c1107f.root': 18082L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_11_79162c3489f984195ebb89883e37c5e2eb54ece3161a8bf3df7d53d4.root': 9102L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_10_76a244bb84365429d5df77e2f3943cdec9bb2bf19dfc04b8d4a4b04b.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_3_21cdf90d67d82fda90845aad48a0aedb8e4d19f8f72b0edfa55daacf.root': 59634L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_15_1d0c87bcf52b01eb36158ccf46401f59038ae2c54352af58369a400e.root': 36271L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201019_084636_0000_17_960358506f03365c4043c205010a81d438e3d5cce5ea5e75c25d7df7.root': 45320L}, 'DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_201019_084707_0000_5_bcbde726a19a940e4e19edc6d8ce9c6316cfc1384062688355137d36.root': 49958L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_201019_084707_0000_2_3fc17baf737ac35064dd253682c637aec31a759c5d8283437f18af28.root': 12628L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_201019_084707_0000_6_223814a9b3c1f61984cf5063daac7420e6796fce2bdc71bfed20e341.root': 62766L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_201019_084707_0000_3_f0cc259beaffcdcfcdd1be90b0b277335afb53125ed98d711615e164.root': 25023L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_201019_084707_0000_4_1b3db71b3e0746a9d1f41a10e24fe037f67cf764e72ab5a8c2159d9a.root': 37449L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_201019_084707_0000_1_53168a86f285b6eaaafa5952fa207258c8094e4e292ec533265df8a1.root': 0}, 'WWTo2L2Nu_13TeV-powheg': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WWTo2L2Nu_13TeV-powheg/tree_RunIISummer16NanoAODv4-PUMorio5_200928_100952_0000_2_836815f1c670bb4a3da600ae2a41dd881610b393b2f6613fbbac20bd.root': 581L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WWTo2L2Nu_13TeV-powheg/tree_RunIISummer16NanoAODv4-PUMorio5_200928_100952_0000_3_bc6060ace76e2057dd693cdf9c77ff2c6d2a46d9db88f309d2aa54eb.root': 1610L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WWTo2L2Nu_13TeV-powheg/tree_RunIISummer16NanoAODv4-PUMorio5_200928_100952_0000_1_344393547adb850fb6f222093541a47f198fe351d34934d8a6b785da.root': 0}, 'DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_200928_125139_0000_1_9fe7f821448e6dcc42001151b03748b094f08546b1e2d5497e2fbe3e.root': 8275L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_200928_125139_0000_3_9370acfd5ac1850be2741333016e9d20cec58a014f800d00bbcec9d7.root': 24213L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_200928_125139_0000_2_5bcfcca6e13fa33ce966bed71f252828dc86bfcc33032516a1a67d5c.root': 14153L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio10_200928_125214_0000_2_57a1d3cab7adc4ce700e9013d90e0868cc5194624efb04edf13fd523.root': 2463L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio10_200928_125214_0000_1_8190ca2fdcc9a6c5f68352ddff5c33bc68ff3d49d990735e832ef31e.root': 0}, 'WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_44_5553c87a2ece5c7ba0e0f9fc649c7cdd49510081f90baec6876387af.root': 27502L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_46_1b20e4a1c823b980b17a9ca3c6e9e6c055b10d4367e2220b85f56d44.root': 29026L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_32_96a48ad5166080b250a054f64129595bb10bca5ace8efd4243178c97.root': 18497L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_2_0a37f1dad53ba38b00dffd44896c6f38120cd45d4bfd83d921af2e5c.root': 8500L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_1_d123a025b37be62f5971c0a572cec4da5e4be4af936c92662b55342b.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_36_16fa6292226dcfec02fe7a5aec45186accea8aff0baa8a415b2f6f74.root': 21471L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_33_de86f4b33069e6ccb84609fd1c32ef3d2e4929accaec37d168591fc7.root': 19238L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_29_cc99947fbfa32f406946cd8b0c174e336d839d4ac17cdb4821285110.root': 15411L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_24_1399fed281da4d8e3c5c4fa0cbaf5f6144ca2fedd5c5fce1af20e2af.root': 11658L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_40_5509eada530c705de0cfc874fdf7ec1ab09af47bc345e1201caf45d7.root': 24525L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_34_b3f650df2d7eec5b75613cce66b41ab32491d1ee8b2e90c078e0a757.root': 19998L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_42_1ffcb8b8dca968605f1b631620dcfea5da9a9cf5e3f184dcc63bcff2.root': 26031L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_28_e16a86ac6b1a23d373d9144b49697bbfa4e7d9249494e6a56cacc9a1.root': 14604L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_23_c24e26dfd6833643133fd7aaff821e976c2602c64c37a11ff0381972.root': 10871L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_11_6741ea2ec54882268b12b6249d839a7a51fd0083c239242e61bbbc44.root': 1578L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_39_76b4ae5eff4151b69f439e9a2c7e4a02f213cfeb4d4a22798f24b15b.root': 23764L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_26_3d970ec4ce6067d51d5c3a6b20dd21c04e83072d20160dc66751b8ef.root': 13083L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_54_e1b802abb6ed4faf027a1870017af8ccad052e8332348a6721dceb1a.root': 30497L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_41_34534ad6ec1fb1b08f6e5a085fa148e20acf243221b05bfea3df78e4.root': 25290L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_17_03ed51c7f2183dbdae8cf725a6c845237de6e67a3b10538e48137c87.root': 6245L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_9_45c249225587658c5e9996180af5efad20e3791996f89784fa09c553.root': 32815L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_20_ce3d0374abb969deb89f239c3a428f1bb0239ea988d25ea9be987a3f.root': 9280L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_7_aa638651f95d98155d3a7296cd10e494e068dc1abf48ce95dc83af10.root': 31326L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_13_cfed6c478028e0e6ec948455d259871cc1c45f8a49d2a5af02d8c7c2.root': 3175L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_15_05b92b451e5443c87d9b812a0570c4b5ef914821cccb9a518bb802df.root': 4751L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_8_ec74fe20d0f57ccdc4a435e59f2d38413a99c2d2960f3a52073c7d65.root': 32058L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_25_49addb5faf5a341c1e1c0d7a5b08256e2e36799b0ebc0423069628ac.root': 12355L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_31_d058e651c28e0f100e11ca11789366dde92511a90b6239413e2be52d.root': 17756L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_35_25c1383059ca18791cf880c1f2abad9d5454a231d2f9bcb9a64f7e3c.root': 20725L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_3_9a316a9477af5c6fb90e197e20f5c5bb4dd48207e3df9cedb1d61597.root': 16212L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_37_67a7534988fde28d1d4e97fb826eb62dd17f6a040ab5a211a964f860.root': 22207L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_6_0d84ab25c0bc74594d94503320205620d6d2af19f36c86d2f839b1bd.root': 30566L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_48_1a19bf19ff3c0ba050a2f4a98ff137e0b6898028e35a39052ba08244.root': 29737L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_18_34d82a2b1f4176da05f0c3bee78122790306fa56380861ac2e6f5e09.root': 7003L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_16_52ea3b5a5cc43aca80cedb540c5c97c9e7017871b4f7866b9f529881.root': 5499L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_12_235a3a4ad074c34e28d7148e924e15df43df714a5848eb53e424e716.root': 2375L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_22_f858c88813fbcc491c804c8a3576ce80e6d6df4e22961983684c3cb0.root': 10047L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_45_8d27735b7ac76b655b269f191c64803c1dc4196d6356679268d4a9e1.root': 28225L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_14_dd3402a32d4143c8edc7c4e39bb672a136d5297feb5d6f3db54fe90b.root': 3970L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_30_6117f93568c89192c4bd0ec619e102794613df704b2c2db9af7d5f26.root': 16960L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_27_b17a2ececbb6e5ee9b7d539d5db838daad10d9f125708335c78ab0b6.root': 13863L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_38_8b3301d659684fc834c81d336cb84dd4095599e88e5ee2f09d8bd291.root': 22991L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_10_cfa2f3ee554b09ad7f48c0a56faf29cc30b734efc7734ea48b64961d.root': 803L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_19_9fce741a2de89aaf4c26e7ab2d76e747c5e8f5f1b68a5741f04166f7.root': 7742L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201019_084310_0000_43_48123aedc489492d6922ecc94bc13a2eb81861540c89e2342eee0efc.root': 26748L}, 'WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_5_dedfaa6b5be6b3d0239506d37badef4506d3c551cc44367c71dbcea0.root': 214162L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_16_a2beaa5a4d37028fa7ee6760c27021ed27c5ff9b84eee06550899b2a.root': 107667L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_11_05b8cffd88b3aa6576a7fb085da88aea8ce68a5a0b598ccb0155d29b.root': 21281L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_17_d5c8adc8ef01186c4d74d7d14b7fab9e039748427ffe70c698b2dd84.root': 129204L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_14_c197454559d43fe1ffecd80543d5cd332ba9ac3702a8ad17c906ea38.root': 74729L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_9_9268e809a234e778d82d1a9b2e4d64f9bd730037a2b94fc81f44f8c5.root': 277393L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_1_50871ddcfa285dd48fb0350a6ae37dcfa4dc6bfb68e5cac7d2c4dc4b.root': 150756L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_13_f3a8c29dc4f74dcf8b64461a76afdb3ecc113882790270cb749697cb.root': 57474L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_8_880b7d81c67b42b195dd81527b10dcec33f35ac0f4f30b74af5aadea.root': 268229L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_12_d65360165deaaf3cd634610e3a6d81aa6f3629b16fa9af0eba3b5cdd.root': 42436L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_15_7b593288a0d347502c5eab0589a3b27a22c60d096b8b5ca58031f989.root': 96035L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_6_7c318d301739a10129eca4bbf67b317a9113db70ad083e30e441f161.root': 226618L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_2_1e8dc5ac73d430ce7fb2b1960b8ed1e746fb57afba5fe7f2f53188a9.root': 161662L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_7_f5a6c5d7c63b23b769236494de3509c71527db20d5cc766364b6345e.root': 246660L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_10_eb07493e825c01e66c9c8592ce330eb21ba9f00f422f4500e37c20ea.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_4_035e8c0eb934d25383a8da98fc85ebea548f5354dd01fa0c6fd8b780.root': 200700L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200247_0000_3_29ed3d3d80a3f1b10e89d782ba4f7a443873901d1001a29ce38e31bd.root': 181585L}, 'DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_13_78536756105657f448b349fab6831cf31f76f26c64b56cf06ab592d0.root': 16856L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_2_2156c06949eb67a4ee4bf7572845d28a96fa05af3feb1d3136b77fea.root': 35385L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_7_53b0fa871fa449d389b5bf4b49f87262f62bbd4d11bf2230012e3281.root': 63040L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_8_973a7c3caa9f770f2783c49ceabd9f32765c642f2b27bbb78c8398f5.root': 68584L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_1_b1fbea5f068882cd2a920600c9ccb9d920b979d334298b8f66120c7f.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_12_e062599708d47667acbb658165fe46eedcc9a1c79fa5e5f219ce90a9.root': 11198L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_5_c9637400119334a978e02eb5037081d8aeabff0f265d24fbb548cf47.root': 52106L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_4_243ca4d85126909c4eae300ac22122b8d2d2ee3f105013ea1d0c4b65.root': 46516L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_6_d8bba51f07000ab26eaabb8540c8e4495b3846b5032c19f979f0a02a.root': 57532L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_18_583abff3153a8f3c573e48e6cb2cf9557822a13f593a7dff08f1aa2c.root': 33385L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_16_47a7ae4f03d6afc534b9fab2bbf8f806a21a41cc266576102e1d5f27.root': 22386L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_9_dd16d691361d8a32467acdba3deb24a2024d6721253ef6790d97f856.root': 74163L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_17_679059d22195049ae2bcdb48c2893abe5e1d20b51949c975afe06dbf.root': 27902L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_11_38f0c71d9cc4ef5525f80a50c2ed90ceb33b7b9a820f423f9819fa55.root': 5605L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_201019_084532_0000_3_c4d4e48d2291c1e601b0301e3fce82cb44ff8510619f2cc15ee33abc.root': 40855L}, 'DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_18_53812e3a819afef3527f25734493471bf8685ab370352098d27467c4.root': 3019L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_30_8bf216e032868800544a4e63972cd3f1fc97eb1c602eaf66d99eada4.root': 1473L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_16_936fdc2fb12f5c86ec600a4676385309b48aea9d697fbe62da59c27d.root': 2855L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_13_03d69c8176d38257e5191951b1248e8b427ec571aab8f3e7164c8ac0.root': 2589L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_12_7e4ce2c49dc19a7e2e09c7ffca21d69b479963a738e812b1480b3dec.root': 170L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_32_8d70aa391d5125e37eb5a4e4ca49e359a98a4aecced9734e11a88413.root': 1611L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_39_979bbcbefdce41765169e5f1f44eb573dc826aa0eab1dc0c8a557cf5.root': 4681L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_42_c4fca61a5ebb886f27d1fc198f0698c0050454f47cb897b6e6698f87.root': 4869L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_17_7f079e829cca4fc28367312b6c327f4341bcf0a95fb5b68c2dc80938.root': 2959L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_12_57c27fdbba20be53099cbc6b50b28d001a17d4e93752d7585f6a5db8.root': 2539L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_10_42a93afaa37eb8bde4f76378748e2cab39c478a642bcf895592d85f1.root': 2430L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_22_d6cab1f853cfb70cef11cb58c4ad9cc76e9932c2dca5da0fb36dbf9e.root': 3349L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_9_44ab91268449df9c25abe5ecfb5380fde9e0a85aa17ae13936c4124f.root': 7035L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_59_ebc74305a873b1ec5954b3fdce085276620d8020bcafb3696164d0b5.root': 6286L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_26_35fbca5e3dbc5eb3e661b626d77a5a55d2fe59e5a19904c42c734334.root': 3564L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_49_8496a3b8216898d3265ad847e5e9e66dcb2efc38ebc4482db14d56e4.root': 5495L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_2_5b93b6639e5d01082f3b213f6484abad4bf92bc81e07dbdf2ae7a1af.root': 3844L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_31_b4f7f247fb78dcee6e63583632823cf1012529fb207f5cafe42acee3.root': 1552L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_23_16510534ccd366018c68357ea6b1db9437d8451743cfa8bf9adf1e84.root': 946L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_21_1e6dd6abc9dd63028ed19be76dee0284e191559bea4b89cc1a56df6b.root': 791L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_15_e64422c2f72fa19c87de5e689ecf6db7adb0d98ce795dcaedeaa06a9.root': 2757L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_50_e571f13def547fb138dba89f83aaa7799b7c8943cb75594562665465.root': 5636L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_41_455b0d2afcc68d6b572b8b6b3a753b81abe1befa6c19aba12f2de81e.root': 4812L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_40_4278e76ae88cddb57c8e35e6cc89aab8e4c513a61bcf46af0897bc9b.root': 4745L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_61_b4255a356ab41bae1dcbda6801bec8733fef2e43b5c3c1f1df086726.root': 6443L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_36_6b911aeb8fad80df4270b9707b2fbf6311cae5a7f033a4d11f37b82f.root': 4452L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_1_4ab817926851993d24f8a7705de18bafcaf37d51463d3f39312fc17d.root': 3199L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_6_036f22e2163c33373fa1cd9e65f45f10a6842822ec4ea05bd6ca9248.root': 2136L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_46_679b24244479d39135fb5294d36756c2db2f4159aa1a500861d0ec8e.root': 5187L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_21_5922b472ab5f723c09b9f232ef79d9fdc271b7c460e5a05362a64bc8.root': 3294L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_13_70087c6d17bba152e4f1f565bbdd4962920626ecb04fb3c4993f097c.root': 275L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_28_4094824f99c2a18a11a8f535f9500ef8190c34dadbe1bd806f0fa55f.root': 3731L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_64_128aa618a3241f2a5f3219dd16b65e9a24570e7d26c0654dd84a8c03.root': 6612L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_18_381efa4f9fd2b47a217166d37cc4095c11c9175320141029bb550167.root': 550L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_19_1260e1af10745e4b887a5584c063ae969debe151a41be23334a48b80.root': 3089L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_11_5e49fe4057af8cc9d66422bc14d212aecdc2d78c23c69574152eafd3.root': 106L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_66_d59803fb855b899f78bdbe3a5edfdea8a13774b8effc82205435f76a.root': 6716L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_14_4b50efd8edb47621d19de3c5cd4548fb4ed169fd7953bbaa562b209c.root': 335L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_33_e35ed21567f3f6bd17dc0957d56219e1a57c32f8c92e090279f60789.root': 4212L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_5_84a5b90c92cd59276acb3582b8072ac2b66f33281e83abdc7ffed98b.root': 6308L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_30_c0f620da9a106e70e4540643b455bb08af74ecfec722e0babfdc84a1.root': 3900L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_56_a4661fb91d6df0ee09494b8951bf290f10a449d50ae2ac3170d6886b.root': 6135L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_17_dbf0f323bdb7e5cd8097d3f2becf2daa06dc4a203948c62aafa5f6a4.root': 499L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_25_8bb3eab71f8b6c7d8293e42d0e7d8b7a2f7fe44716f9f46c52f30b87.root': 3510L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_27_d89d721aab0fd087dd64739d5b7881f763510187a0bf5fba53ac362c.root': 3623L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_35_7c3e5cdc7a4ec270249ac0b90a3c3715a8568b903181b71e5e81d6a3.root': 1816L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_5_7f86d3cbaba332414c8cd481c8e88442ead90cc5086944cba88dadc8.root': 2013L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_14_d35f25027517379e1395dfef798b74d01eef420f55a2b0dd3bd85948.root': 2686L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_4_c63ac7cf84b200a24e81d3c142dada589de8774c55843522122c542c.root': 5544L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_62_5076561ca65a5357f91a8ff037137ab889e65039b2ceb876516361fa.root': 6499L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_16_549433e3373271efbfe2bbdfe0f872e3dc4b7c9f52891ac391e7a83a.root': 451L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_67_c708d2aedc17a754a27474cfcef979ef259c453b03593eb00c754be1.root': 6786L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_29_738694c569dd3aeea39d73a719b4f79189d6f6b39e00932599959feb.root': 3742L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_65_4bc5c01b57e6c56b63a183b31edae3ef993711ec4c6f5e968d093993.root': 6664L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_53_22d311721ab1937e2ec12511f33cd39f9e9dcd90c75ff2bddad1ce75.root': 5893L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_15_647387b73452c3c6da3856e96ae77025140f715709bb85b8fa2c7c36.root': 388L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_32_71cf3a41caf263c96b56efa726f54549d76f48360599d382b5681fa5.root': 4133L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_28_40e2ab01188d8fdb2875b0a6876d00ad97636cd5e89809350b00c880.root': 1280L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_20_01104fda5fcc90e2ae065234e590ffa4947e5d2c7ba30597762261b6.root': 736L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_47_483fb4457bfc4f977050fa29189b25057b207a781fa84afd917f151a.root': 5306L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_38_684a6bdf5f4bba1470f0e5b534c4d635429887d83de5bb396d387039.root': 4588L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_7_945591357e8be529b4bad1b2d46850c7c89a1659b6865bf666621df3.root': 2196L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_63_2c6f50346511c59bb42d5b9d8bb66031fa1c867ff4f7caa8b35add54.root': 6521L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_57_ca5501bb21cae5aef9860e16692819cca11c5b8bc289429d070b0854.root': 6207L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_35_ef289447ab4499b0bdabb18a747143d661a9993c27f310c5d69350a2.root': 4392L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_2_d5ebf9eee8bd0e5000981f911150bd601e54032ec0bb4dad5c7f5f73.root': 1372L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_6_d9688e0f8377e37d7fd31b96471a9f096644b0a64a7d72bf21331a50.root': 6832L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_34_0921b077d00c0cae0d73d7a220631ff72f01b174ec5c8b455505badc.root': 4295L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_51_c66e57f50122116c955ed5df929db28e2b1321fe099e2d9455ede95f.root': 5731L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_27_614cf652499f5535b5da944fee7335236c8e2a33eee2df1ccdd077d4.root': 1191L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_44_cb72bdd9040cc44219bedc7af7057e1d6046ed251a252347d75ca7e3.root': 5040L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_20_2d902ff20485a7e3ed80b95b1919cbc952520ba8927857ee839f888a.root': 3241L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_9_1d299474d185674d89beaeae1067b7e67de6c4e3feda4754e88b59aa.root': 2370L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_48_cab8ca704554ff58a742844ff7ef93e5894d15732bce9b177533d638.root': 5411L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_8_981a1f48456e20c19a4d9b93960377a12614b91e634b61584953fb9b.root': 2292L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_24_a14cdab27960d900997faf51d47f4c8b40904fb2e40ca763d9ed95e3.root': 1002L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_10_2b811c6b10cc9d20060967548e7cff06c8dbcdd4eddcaaabb51f95e8.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_11_e16621dd11825c1f553fd506e5ed8ffe0b72b0314fc19d269291a9c8.root': 2436L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_26_246c06463cb9bdedd25ce8c3deb075ec4d9fdace4c2e3899d8cd2017.root': 1130L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_4_bcf5e81af0b72c7700673b14fb9846c139dff5291e2df2cd45b60403.root': 1952L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_3_4d66b871a3fc8cecbdd8b1e06c825c5eda2fcdbcd1b347e5604e2bb8.root': 4739L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_1_3df224fd7c891a27acc8605edb01fb1cfda756267a76b996d11aef0d.root': 673L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_45_1918420756fba9ae2116df46f82aa428d852f1ac5dcc0a455073fb01.root': 5136L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_33_b21c0ac9f3d8dcdd0584502f547c660f697b85132cd03da07c25d9ab.root': 1669L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_31_49526fc5afcc40a71a9ba78b0d81f5b3626ecd7f008e67f7b4969235.root': 4019L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_22_ef50ae4fd8b4c90578a050fd06b45b89d3c2962ee84921a4f325d5f5.root': 883L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_23_38bcec6d8f6c5cdc7b60cfe1bb0a57838e3980dac5e26a7f05491d25.root': 3408L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_58_3fe3fa606aaf326532f8324a0d115249c7ee834c612be126098a049b.root': 6279L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_43_a17f8bdecf3402d3aac144095d3629d1b2d1ac8f22b13bc23609fca0.root': 4938L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_55_7af19982a846a0a9700d9904524ffe22387a35695e749c2443c0542f.root': 6072L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_52_136086862d8ea7e644a6dbdc8101b1c2cbaa6aca65b888940cb6009b.root': 5789L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_54_a6f44b48bb56f16d0197b97be48b8b5ecae63e35f2b887671e6de780.root': 5974L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_25_c70ed3f5898cb3da5da445bfd24a83e932ae00cc797184a8e5b803f8.root': 1070L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_37_212d984e1284d0bc154b36c3fb622b384cb980424a74f9514a466d81.root': 4512L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_29_f56db0d673728b4c57655397001296df7fe98b3a3e0a77acdeeb93e8.root': 1341L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_19_41337a331e1785bd78dae350286b9f7eb1758b78163eaad51e0b15d3.root': 594L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_3_0e427aa5afe590b241e155cc539e280c312e7559bc2aefa9eee0d143.root': 1877L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211426_0000_34_cf3e86f46559f15a25da2aa7bd57dbe4aa9cc927dfe65ac991a2c93b.root': 1738L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_8_7ba9b7dc0db2eaac4ea50399c7a83c6abd23228cf0ef2fd5f04b1e6a.root': 6982L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_24_e7f3f4f1af3c517c003ce1643f6f82e9100b5f713732ba1a333466cc.root': 3463L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_7_194a2755a20f05a30c983b46e3e552f5711be0b5f823625a7c677bf6.root': 6890L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_211506_0000_60_d3aa9e1afda9897b33ae29e6954c9976ee8bf555b833d84e9dfe0c5d.root': 6392L}, 'ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_1_55f2fa102e7811e0003a6dc040eecff53f36fa4cf1985dd9fae1907a.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_6_e95cdf3b5dd45f77b6c8378e7911104cb1fb5c2b76bf62537a32f65f.root': 55751L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_3_1514ae0e729223ca0d5abb08c78c2f3c6ab1c2de81035227600855e5.root': 23631L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_5_758ae4a0eaa5f141bb52ac6ae5fc3e35b1b8b60cf900c0b81da3d215.root': 49997L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_2_a5f0e1dfc7c89c583d851a2fbb9199e81126db321eb4a920ca8e3072.root': 15065L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195758_0000_4_be8aecc3cb062ffb93229b555253a0200332be3ef8a0e628a50a75ad.root': 37294L}, 'DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio7_200928_125029_0000_1_61e7dcb0353ebc88195c38e26e334ebf8cbee5ec914a6f6a1309472c.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio8_200928_125105_0000_2_23c3f7bab5946c8153c748656eab7a8248c99e2422932d9d2dd7ce06.root': 9212L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio8_200928_125105_0000_1_4229231a6e589c92c0ae7e4945e5c0f2a793256e4a050a4e670e1e79.root': 6776L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio7_200928_125029_0000_2_19f6a8b6e79e4fb3b62c7599bec967c543a0e3cad4430e94f6ba0e39.root': 2520L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio7_200928_125029_0000_3_20b577f5dc33ef1070c245e4b0d2f9eeaf7944db175a750e6bee9682.root': 5208L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio7_200928_125029_0000_4_63b4616673cd6233478911cddf88add3e29ae9fb77e108d4ad1ae19b.root': 6062L}, 'WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_15_2f495f87f1deed80ab6fd9de30be6d700df206eba0932da3d93969bd.root': 41L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_20_17ccef3740056227402f098e6379324ec7e9b0b5f9dae5462ea1abd1.root': 81L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_5_90f9d6bcf9a8a4a6313c9f850447ed0849f71a9b403025c53370fbbb.root': 114L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_14_8425e8b8385e1a6d8f0f05f22792f78f3818d38bda6bc1e4194508e8.root': 38L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_17_bf8dabef38356282785991d2a9147fdcc53cad363f50dd9dbb57c649.root': 51L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_7_1260b6ca00796d9ef10bbb14b728310fa14e49befe28efec3fc84ae5.root': 131L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_19_dae532f4102ebe05bd410aedefba0cd3cd0ab0b48aedd6ef08953793.root': 63L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_8_ad4a84ce27667457adc6bc5f15b4e0329ee2ce5e9ca88dd616a09240.root': 138L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_1_9525766353011ef228638ce34f281121fb03a07e2a5e32fd4e2b8a1c.root': 70L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_6_77bb71c4cae66be34b8fcdd2647dfbaf6ea18b1db739661b930845d5.root': 125L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_18_8df103163cc9d6153a50854361488c1e7b141b3292c52a48ff8668a3.root': 58L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_21_0659349c3f60450330fd2e2398727a44be39d76407a4cdc8876d92e7.root': 88L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_2_a9ca5e9e40fdd99af5a7710457ec790b1c2a4d33f6035cbf66bef17d.root': 89L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_12_28f4ed9364765360c71eb8a539c7fa48245bd2f00fcadb388fad4938.root': 18L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_9_aaf92995e3cdc8bf2c000fd794c36954825ef474e81ce923ba1bc1c5.root': 143L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_4_f11538230f55aa74f9aa5e8883eba7da02c882a9e06f0ac47c309a86.root': 107L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_13_3148b0cb60e30159885b78f6b3c299b2db3a6058487bf8e0b0158e41.root': 30L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_3_234e82ffad6bec211418cad6b52c32a96cfb8dce43a6c6afa3800f82.root': 97L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_16_7315506f6717971bc46403c4e74b0996095a28d4d1ea2858b1639a1c.root': 46L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_11_bb629d4f647dc4a309270fc316c37aef1229dc096ddbdeb0d04fe8db.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_201017_134111_0000_10_e4e30674dc15b6a1d3004d9a5022f3c6ef1366f0dafcaea656796251.root': 0}, 'WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio12_200928_125326_0000_2_fc62826e8a0caa609383d6e37f3ab873ab93aee8b1844c0f9f20847b.root': 10961L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio13_200928_125359_0000_1_371bc5fa7e3a179bcbf2721f71ce7f9683634e349675deb8e10a6b91.root': 49249L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio13_200928_125359_0000_2_d804c2a1d4ce2e811c2be7f0ec7e139df9905a83784d6a2177e3311a.root': 51768L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio12_200928_125326_0000_1_df7e90e0ba7ee9ca3f265824c4860bcd220a9304360cc067b92d00f7.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio13_200928_125359_0000_4_350d48fb365d993f0d2be3714a8754a5804fd1df5896f77d1fb80c8e.root': 77144L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio13_200928_125359_0000_3_b1c0a0c9126ec3af7e328c939cb7db133e9187e4408cca674912a6a0.root': 52551L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio13_200928_125359_0000_5_9877aff82610a73a4b8e8d18f81844049aefed1cda67a64952158186.root': 89623L}, 'DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210023_0000_1_6c0b0f2045e1714485ed104d81b64a5fd8e80559e2b55a191f3fd10f.root': 10789L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210103_0000_4_0514eb5d6f9f5f90517d2412181503404e619930694dc0e37462bb83.root': 1872L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_202422_0000_5_be2fac3c0822de7b9bd7ef5a87540ce6ae04c074ad3e646b952b8aca.root': 9547L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210103_0000_5_9e2598d90f84e1025c5cf800dfd9502a423e926450c75ca1b07a4c64.root': 3631L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210023_0000_4_8dd796558b0760ec56ad4198381e6a851a183527592c385d9b7a7cd3.root': 13094L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210023_0000_3_5e2b04820593450679ada0c26435c0971c445ff92bcc5391b0861a05.root': 11163L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210023_0000_5_78fa5a91f3bee8812ceae0f6df01b866b778a0434824a18137745ff8.root': 14872L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_202422_0000_4_336e259b79437ccc48e060532bbddc108b8c66895576481e5cc65311.root': 7769L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210103_0000_3_6165606c66b1615401794d4414d197a77c5b4066880a28f0b310f5cd.root': 198L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_202422_0000_1_99b1c841a4aafd62779a593beb3ef83802eba96c509ad9d3d1e2ecdc.root': 5464L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210103_0000_1_dc1b6c24d69dcd59eca271c3de974dd8a2ebcbc9186d2763a0500488.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_202422_0000_3_4d8585376a1d2ca1f537f9ceae091e6290792a8007b930b9ed4daf08.root': 5838L}, 'WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_6_b583a5fd4bc275f462480887ce6e802e3a5acc5d93e30fd11e272886.root': 340763L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_1_9b76c123c9efde240814b14faaefa9767f199d3e665a22129e40239d.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_2_0cdc3dc6e381f0c5bbc06e0fd55a11dabb9b6de53f88ea01764028d1.root': 63436L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_5_e5b15f06e878cf8ea151b1adf3673f6ef0510d1fcb6aa0da490c64d1.root': 232525L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212835_0000_1_cecb7e3b3e0e37e71e48012341a03d7cb1f07a48df064a6b22156a0c.root': 546374L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_7_e9e89cc28c78bfeb8285760f2d0fec8b54ee1e44c42fda4b1fddd139.root': 408567L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_4_6c277a5d177187f7789c0ee3ec6cbb15c479854153e471438ed1c758.root': 166404L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_3_b5f271c9c6e3440ad5569c2b86692a97016c731ac93bab91325a8d9c.root': 97673L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212916_0000_8_4dad18d6d6dd6baa245e6b6c831c3e9ae42b2ddf34f9d33a0d43d0bd.root': 483876L}, 'DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_7_7947f167d9a40b9c3185625e07ce1984c1ad43316c9500c125d3a4c7.root': 576L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_4_e55490dc565ca486a46ede6df9147a9b7f3ac62f44b8d3a4dfe33350.root': 277L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_2_e4c27a13c3432f6be934a02ed4a2da92823ef85d379c5f266102045c.root': 138L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210624_0000_3_1ae9fc1ee481cb6a08383da4c5a84497ef3dd3bad573b72d1a0cdd50.root': 968L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_3_b2f1f5537629eb715b18d56686e28081c76239050f1892f8b1370f4c.root': 156L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210624_0000_1_c10a9a95110507af23b76fe1715dc3b5a3fb60ba9df65265fe36abb4.root': 818L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_8_5a60d024219d2e29f4146d456b2a39dd571378cea195f2123812c4a8.root': 708L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_6_e3d360a656e6beba39e614f41e14c0874367a3467613607d23998f13.root': 517L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_10_d5431c95b3e88eedb6dfe28ad8fb3df4386a30636be14f8804849387.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_5_20f66b29d027751709d04c6a55cc67f7f1525795c804ef098231199d.root': 404L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210624_0000_2_ca94b6b0cd1a2ea2833aaeedee2e8a5002c00f5db8fa89c55ab62118.root': 962L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210705_0000_1_a15e0541aa7e7e610eba81f75cc847306859eaf2b3ce5350739aaf91.root': 129L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210624_0000_4_4f08cbd178bcd78a391bd29be81f393b82f1277e2e7f9c19af2b20da.root': 1095L}, 'WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_3_ccef1906a85fb19604226a247129518892b119b1a66bd4f795f1bfe8.root': 44977L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_2_a612b25c795803879d758954e6b53759a4992016c4fb5e869744f074.root': 6108L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_6_40817ae7447da5473b1c2baa03bc055020c5d640ea46f2fb24d15fa3.root': 210179L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212516_0000_1_062e22ea9a53a29d86a6d1941b8a7a342d3129690d98ea6b839a658f.root': 269201L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_1_2c55dc415af61d018f1ab1908b15eecf3fd05ad11f819a33fd76f27d.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_7_025c415cdbd53a12f738c464e9babc1407cd7f07905ed0ea936b1b59.root': 260361L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_4_49eb569d21499bf06da73877fe05f8b7c5502acff9db7c82fe98b9f1.root': 88461L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212556_0000_5_91aa8cdb431325e1640b54d68eb30dd5f8af1f54f1447a0da9fc6ade.root': 143783L}, 'MET': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016E-Nano14Dec2018-v1100_190426_094730_0000_10_4ff7f443d5a24bb744a260d2d5a34194342b7e85ab18b8903d2fe1cd.root': 642334L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016F-Nano14Dec2018-v1101_190426_094815_0000_1_e26a3b0d9d805f7dd704fb5e90adc3e87ba9c133b3d9497aa27ac9ab.root': 856039L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016G-Nano14Dec2018-v1102_190426_094903_0000_4_da4d1c1e6420fc7c9fd11604db4444fa54aec849c7462c78bc4407f1.root': 1209145L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016C-Nano14Dec2018-v198_190426_094557_0000_4_1572d793aba759338f7746ff4cdc4309112a941f19e817525d84c458.root': 334989L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016G-Nano14Dec2018-v1102_190426_094903_0000_11_9ed6791c2b23bf87c2d21bc0aadc3fc0c60a5af09d86d09bb99b4cfd.root': 1050315L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_13_3f3613e8ccd02e2d627d53b6216cac2fb0c92c8b55a0b37aa3e5738c.root': 56745L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016D-Nano14Dec2018-v199_190426_094645_0000_8_5094a9c38aa823649edb5b01224ec908987f9a399f88c3c3cea83947.root': 598899L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016D-Nano14Dec2018-v199_190426_094645_0000_2_8aab05b50640fc0108e5c01c60576aa90c0e18345e7497601806f9ba.root': 474107L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016G-Nano14Dec2018-v1102_190426_094903_0000_1_2d8fc1002a2517e89c2eaf88600e5a12b335622088bf99542ee09c2b.root': 1122669L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016G-Nano14Dec2018-v1102_190426_094903_0000_6_771f43189f441d966c4161a0c75dad4c97694288d4c8cffbec18999f.root': 1271898L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_10_c43ab0aea4199b149111c356a6530faf41ab2de5a463be1c1a31e166.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016E-Nano14Dec2018-v1100_190426_094730_0000_2_6a2f5d476b38ebe0212f2aab91a131e0487eca5247962f70555e207d.root': 683668L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_5_17c977ebff15fa3d5c1998735eb108d65d906fb6679b4200e8629438.root': 1692022L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016C-Nano14Dec2018-v198_190426_094557_0000_9_3a0d508fc5d5206c3784b834946a0e4b369d29e8d1624f029f5857fb.root': 418044L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016D-Nano14Dec2018-v199_190426_094645_0000_1_8a930e0a36012d89b0c94e0ab4bf2c2c81c0b5bac6d5177cad9699f5.root': 465059L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_18_f51ebee782041f700fa9e2f6a3004e4358d7d2e81d7cd258417ebc44.root': 1566961L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016F-Nano14Dec2018-v1101_190426_094815_0000_2_c83513478f8820cf8c9a3283c634893ccc676167dd0ead202503acb7.root': 881999L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016F-Nano14Dec2018-v1101_190426_094815_0000_7_d03f941d8c7b27a7086328f4448231676de8487ecd53bca60d6e2077.root': 1009738L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016G-Nano14Dec2018-v1102_190426_094903_0000_7_30ca3768d453456414c7cfc141ae1136d5ecd42d43b8dd1a08da8fc4.root': 1300910L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016D-Nano14Dec2018-v199_190426_094645_0000_11_8fe7545e49263e827253c020b6ca512e18dfc345ce7a46c83fd70617.root': 450676L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016E-Nano14Dec2018-v1100_190426_094730_0000_6_722a3a4cf805dd6866f4e475eefca607cd3d072f493a59d9fca846f8.root': 770288L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_12_f8984c19e38556b6794d80ebc8539174026de58bc7eb4d08885c5ed0.root': 38275L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_17_77a9b2cac34934534ba4154bba96aac78797003e75af041b4e704cfa.root': 131204L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_19_7f34436d29641e93c74b078c6f8ffef9bcdc3f5812010c12f4ae0677.root': 166483L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_16_082493869df970b912f242d5141705db8b9d6091092076af588df550.root': 113360L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_11_4a354b97eb5bf5305a44abd8098a068f00bd5eecfef227a7219afa0b.root': 1408362L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_6_e5536ead411052bd8e630dedfa6a80cbc2d6b65e250a32ff4e13f9b3.root': 1714389L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016E-Nano14Dec2018-v1100_190426_094730_0000_9_c098e3807026581af8f68e33624f06632e205f2592d182c4a88a9bcf.root': 833389L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016C-Nano14Dec2018-v198_190426_094557_0000_6_61ddc17ec41770a98b9c681c9b601854331412094f279334e13a9688.root': 366692L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016G-Nano14Dec2018-v1102_190426_094903_0000_2_9d1820214a87ad2a5f2cc80dbcb52d3d51b90e238422ee419f58af03.root': 1151368L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_9_bf166050071d771b854898ce7f180fdeaeb5334ea72b552f07618ba5.root': 1788564L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016C-Nano14Dec2018-v198_190426_094557_0000_2_a71f34aeaa14416f7c44b97cd5ab11e7cdc19da9020594300e3fa908.root': 310562L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_3_e04281db3b7be62e2e6f807faf27c5d43ad282a4d0c7e9671596d517.root': 1645989L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_15_ff36f3aeaf3d7e371dbf12ee9a22270e364103faf30a15a2f22ec828.root': 1495247L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016C-Nano14Dec2018-v198_190426_094557_0000_3_400ee2a1664e51fb5966d4515ea04d9b951c5d0b7195d66a9e11b68b.root': 318015L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016E-Nano14Dec2018-v1100_190426_094730_0000_1_6a44a45bd3fd6a85413a26a33de5fefadd8f4deac6f26dcc56a261a9.root': 661081L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016C-Nano14Dec2018-v198_190426_094557_0000_7_e81d5503e204c8ad5489501c3cc3036363f460027038922ba594a8b8.root': 383927L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016F-Nano14Dec2018-v1101_190426_094815_0000_5_dcde8e6fc1f7c8c26a5ccd0b6baf4439b5dc2e900158b3bc4a1357e9.root': 957170L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_4_90c2630ad84a9107ad0d1bcd292ab6c690db1cfa8cb464e1061bdc0f.root': 190060L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_1_b7a35d7710f6f89502af3d0ecdf6d6fba9af4364cd6db3b779892dec.root': 166831L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016G-Nano14Dec2018-v1102_190426_094903_0000_12_d3ca98017042032933961ca264d822ce27c50fac11621496abf11cd3.root': 1079069L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_5_6c441fedf4a51a1073d49e86cf63418c51eb7a2c8b28d719853b2df9.root': 202796L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016G-Nano14Dec2018-v1102_190426_094903_0000_9_d81d860ba908fa53f0de793fda0edc7ff513f250a30063c7c904544a.root': 1357762L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016C-Nano14Dec2018-v198_190426_094557_0000_5_a0143eba1f523ca3d87095d98533d931fe1ca1052d9c7f047e255603.root': 350733L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016G-Nano14Dec2018-v1102_190426_094903_0000_13_0b9552ea2cfa7bf8108c7e5a654be01affa54c8581dd9cc7b17a2e42.root': 1081973L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_18_a97902f3c88759491d0b6551d3229f6b105cdf06ab349438596f90de.root': 148949L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_6_588e251f4797f22554b122a7551623f0927c64adfedbb2971e918504.root': 218656L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_9_9ec6fab2779eb80be601328661bbbc03087aded4e525b2dac6ab587f.root': 275179L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016G-Nano14Dec2018-v1102_190426_094903_0000_3_9af34cbeff2e249b760ca0eb467fc72bc79bd45130106e71bd4ee451.root': 1180777L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016C-Nano14Dec2018-v198_190426_094557_0000_8_e964d1a88375ff3beeea92adbb0a63a35aea7de842099bd6f8a496a3.root': 400825L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016E-Nano14Dec2018-v1100_190426_094730_0000_7_37658532d7f47b55efec4bc083f153447bc759c1196375463cf01929.root': 790369L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_17_ed8102274d08ef3d9dcbfe1c01f0a5df4cdd6e6de8a49d6f67a6a979.root': 1545990L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_2_d57b90d7cc4c9ff3cf5d9541d06a44a906f5f220aa3532d18678d8f2.root': 1622053L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_7_1db4d6f394d3c769f496c46e6d5bfb8c6b59cb72083fca81ca0f882d.root': 1736954L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_8_86e42c53e82424224ada7f045db30aa7e095b921f683180a9a0d3cc8.root': 258333L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_10_96f9f2c5bfdb6796fb2b47be9f6f699042145c03c5319052e29ab539.root': 1388236L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_14_ce7ea8aab573adee4f66d1329d95224d32c8a765ba2d9bb1b3ed3eba.root': 74041L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016D-Nano14Dec2018-v199_190426_094645_0000_9_edfba793445ea377b5c5c00501ef00c4ce3886df51a368ec54482ed0.root': 620032L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_15_4b3511f8795b25e046d341ec8e5a232a5791f3c739ae7b236bb7dc51.root': 93810L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_13_fae6e29449b999985b94fbbcd9c9c1ca20c80e2ca897600863b3b474.root': 1448895L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_19_ef380439c28a214a8a42cecbcce6ccc6d4297a8b4d172831ee03d370.root': 1573386L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016E-Nano14Dec2018-v1100_190426_094730_0000_4_6b7ab3c1d4a99c485ebe180c60d2215b9f967697eb1e39881e0f8e9d.root': 726536L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016D-Nano14Dec2018-v199_190426_094645_0000_7_2af18d0ceace9b26bbae0e1249563744f8ebf2182ac376a0d5293a12.root': 580287L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016F-Nano14Dec2018-v1101_190426_094815_0000_6_c98a9a00cf5aaf6b569e73de91be5232a4e26f3fb4c87aff153bd710.root': 983989L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016D-Nano14Dec2018-v199_190426_094645_0000_3_3a66dd8d6183f9b3440b18a9fc3c7a8ec8023ba0a7e3bb87595eb05a.root': 495778L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_3_b2defe47751ccb6ae8893503cd2af5cc00a840e43a0149605e36ab92.root': 174313L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_8_1dcf659c777436f1e29a33b554a3c1eaebff5020b6f39693bdbcb438.root': 1763106L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016G-Nano14Dec2018-v1102_190426_094903_0000_10_58b0fadb89bfcf9769345a925a4d547d0d404796ce98b020f7461c0b.root': 1021409L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016E-Nano14Dec2018-v1100_190426_094730_0000_3_e315edd8f08aca97e95c12d03ba7999034dd12ce465fd001ab0dc16d.root': 706995L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_7_da871913b0b0ae7fe3829a4cef9c8a33daeb8220999eb92d3b7ff4be.root': 238288L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016F-Nano14Dec2018-v1101_190426_094815_0000_4_b300d2757d48bbd024b003f095c5d25fba654d8ba7afc3f016780152.root': 929261L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_12_fa2a8840b6eb2b67bbb50a28ec09cbc3dca57bc173d0fba4b401c2b1.root': 1425211L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_2_52bd93e8d7b9b56669de67c04b4f69a8387a6683586ac20a68516ffc.root': 171058L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016B_ver2-Nano14Dec2018_ve97_190426_094509_0000_11_31cf6d5086e2df41629756998130f3cddb7c08b3fdc4b96e1a7030bb.root': 20486L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_1_cc98b4a1fb3134c54e9d5b1c8626322fb886067eb3d1711aac35e73b.root': 1596366L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016G-Nano14Dec2018-v1102_190426_094903_0000_5_37ddb81fff8e37aa4bf1efd71b28c3c03b0897ab4688d3238e6542fc.root': 1239168L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016D-Nano14Dec2018-v199_190426_094645_0000_4_c86f659ea23b4990afd0466481d5a9164fcf3369d55a8b3d0bbb03ef.root': 517640L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016D-Nano14Dec2018-v199_190426_094645_0000_10_aa267a217c27b361e03d176e1d7456b1caf4644a7cdcd187c5f80607.root': 430195L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016E-Nano14Dec2018-v1100_190426_094730_0000_8_2f2738a3faaa7fd18dffd8b8b6b327852b5b2e44da99ac8a9aca1cef.root': 812967L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_14_bf8d0d59fbbbd2e7c48f0b6dcfd4375748498f23f39bdc4284ad8547.root': 1472451L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016F-Nano14Dec2018-v1101_190426_094815_0000_3_7facb00071360cb1d6552cda0a9d8c5d1ed6be3da5aca1bc1e735752.root': 901924L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016C-Nano14Dec2018-v198_190426_094557_0000_1_ab8665018d9b0682e6a4173681d6155f1717639b456f1d6aed58c6e4.root': 294283L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016G-Nano14Dec2018-v1102_190426_094903_0000_14_0e8db0ea85ba7d4d085b3d18e70e74ebbeae030c1789e9c41734588c.root': 1112898L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016G-Nano14Dec2018-v1102_190426_094903_0000_8_a640446b7875096b7f3b7f514cc860bf1ecf12b7adc5bd04840be227.root': 1329426L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016D-Nano14Dec2018-v199_190426_094645_0000_5_a3e62b42409580dc9ed3eaf90c3104e28e6ae2ec20699ea5fd78928b.root': 538656L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016D-Nano14Dec2018-v199_190426_094645_0000_6_f9f78d409cdb2da8a79af9cc5c9f9c14fb0be8480d4cd18d4b247081.root': 558236L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016E-Nano14Dec2018-v1100_190426_094730_0000_5_8330d784ec1a73310f2aac7013fab2f0dba2fcf17344139346022b7b.root': 747665L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_4_4e1950245067ce9c05aa94c96c49c9102ff418760981bd6972c3fb6b.root': 1670199L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//MET/tree_Run2016H-Nano14Dec2018-v1103_190426_094951_0000_16_2b11dfddd40d5a5d45679a174d6d7274c5b268849038abcf75c9fedd.root': 1518528L}, 'ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8/tree_-v1_190523_195606_0000_1_f51220c89576b2e9d9110b48cc9632bdb568eb1d52922730022f5a88.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8/tree_-v1_190523_195606_0000_3_f7e4b65e48dd7b487b0303f9c46d31cee8938c666547b5b5b520c1cf.root': 3946L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8/tree_-v1_190523_195606_0000_2_c7e8149cda04204e04da5ef82492b7e33932dcea3f32c856cff8962d.root': 664L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8/tree_-v1_190523_195606_0000_4_1accb772e8a95cf219c2bda139b57610ce3d54748989769160d2dcd5.root': 7389L}, 'QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_1_2a770a9b36c3ac5113f8fa2f16dbafba5d23f642ebc19df783a3ab6a.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_8_04794e26c37d27e6886db54f87c9c4899f5367221e65d038fad43376.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_29_124a5f8c0953b7ca3fc67a0d96283af32faed0e64580868a45c3b366.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_27_d2ab40604fce9a7aea3e6181c2be8090188d279289dcab7553802dfd.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_5_29cc00a99fd99091332003358a8e12276ed184fc1775ff3dcbc53680.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_55_5ecf3abca8333038e911f43f527132ee685a214cab789d283fa0632a.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_4_858c42ed246119dd7d3676625d9b372c15d13db6b67df53ce7a5805a.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_39_8142dffd92e170e30ee28d4b4d6ca1363b8794f3734cf5fa835e41e8.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_6_3fd3a6d559b7a7c02dde501637f31e6703c192f937a4383c1001ae68.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_43_ca08fcd9f0f562119134604c2a4a47115b360c80c4ef00147baa0c74.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_34_e25d9fc074090a6b6e58dbc1d1bdf752b0baefb01d18d480fc91f861.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_46_74ca8aab9a274d495b31d1aaddde646865ab16bcbcc064044d6555e3.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_50_76f5b7f40eec30d347747a8d002a7783f3e3240196d273079d355189.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_26_f59c83872fea4f1f0b4a2dcade5ee7deface7eec0560f7c93568d4d4.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_44_da4c537ebf82715070a0a701b517391dee17d64e1cc0da01d1f5240e.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_19_6c9a1dfe7de633cacd67cb680f8f8f3533a8a8c3ddfd821f72f6bd2a.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_21_3626909b3da9e0728f2746ad9c0e7ff7e1e7607b32f52c6918bf4197.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_36_697bcee493d7d7384ac3678b105737acfef0d97254a14d5d19a98ea2.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_31_6221f763ff3d726b1f6c14da0a83442dacc15f8071186da49b252de4.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_3_537b68051997da16e0eae28b21a7d43022092400a0ef0dd2b05e483a.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_42_97b10e7582df207d68ae93a00929215c01bfda5b281c1b737fdceb54.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_14_2d9b212a8fd8d766319830bd248d8a8446528f33be13c226bc3d6078.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_25_cfcfb28f2130dec6402293a8ea61157b39498be80e22c5237cfc6d59.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_52_9c5752d4de3b1bdb073847cbd9c712ad93d94affc6740a9b178072f0.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_56_17f6da5cee0b12e6da6e5054acf8e193ed388046759612b9b456f264.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_37_fcdd951c73e44c0cebd08e52cd5a4481603e2e9292bcad74a9da5320.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_15_e8cd0cd2a11c29a091e787bcd5030ecad0f5cfbdd2ddd84c02b3e84c.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_38_f3d688e92ad8c07010734a99e243c403ffc1fed8c6113439ed0e4cf1.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_30_88cf4128a3bbd262543d95b3be2d1b7da43860425569599a50283f3d.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_13_b4bf028b2c6d2da24ad6cc6fbcc121c3525b5ae07009196af8b30ac7.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_16_5b4af9c4c68056a2c370151180af36188f354d293dd67360a3f6d698.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_28_f33b94b24fa8801a84ebbb5236163ad1624c6102f4c095d7bb4823d9.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_24_14ed0c9749242262e1b7ac0365333d7867c64447f2d8b28a4e1b496b.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_49_8fe1f30771587a79ae1095a5d38851d3a24222d239a6028b16d2729a.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_2_40e3e6644932bd7350fe472e6d464189d34b2b117a9630f486eb9a9c.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_54_10aaff71f798b59c379420e588958314a970988390529ff02fc41cda.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_53_98222173431b8da3bebb92365640ff8b79cd42a20fd4490036d0c22a.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_51_d18692fec4039e41dafe17ff983c31161deea17668629dcae0c57996.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_17_5be07b7e057c472a57817c203c20d21ef670ca0b13a4ef4720489cc0.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_41_d64aaa6a2e16578a9f0e5731a6ae017917a66d05fbfd4c8aac47b3ba.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_45_dbc3bf153ad8565e4dc9229a9a79df7c3c45bf560b4b906e8b4475a6.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_35_2a8a47a9bc93e8e86c0535d8e284d0dc25e631464a2db064eda0d755.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_7_c964a989205268a18bbcff46a1dc3ca0b5383f32d3c3dd3a47434d3e.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_12_98c885a96d45fce1a36b0107e80216e6c6f4e3b63c49acf89a1fb9de.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_47_9654a4a8b5c87df84e1cd1e5d68cdaca3ccefa7eb754f7bcef74b82b.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_9_9a54e29ec6115f4a8e948ec6a319c5888a33d91250051e315ce5ab78.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_18_978d1cd881116b04faed9e40cac9bac7eba5d3cec39f93291452f916.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_33_70822c9c796db889c6eb9881a57a23e55d47630a0c1ffff5fc2b884d.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_11_48deb95e6a76919ac6f5205d8e7dd1285b79eec6572f6f03df4d9e75.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_48_9a9d4d0ac0be1a8e51ff6a74cd4ffae4eff2c900e2dc2a028715d398.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_57_7b5d38bd2bbac48cf25717cd416f3dbab782b93156cf1fffad06190b.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_22_866e4f3475793d6614765f76ebbdc2420c8dd680a3dead10c9523a6b.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_23_651b92618f932cedde3fa5e267b0e565e778c3a62fa3d840ba7e927d.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_58_64351be9de667e1027abdd3948f8c784d93ff23019dec771db7117c2.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_32_5041771f8d1b8c5094efc2a2807b5fa83c014104df08e7dfbc074ec0.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_59_754541388aca98d7115014994e8bd1fcd08ab0978edd733399932d79.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_10_c65a5c8247462db8076a5973fc120c7d93833031539d51b78de9c3fc.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_40_c0d4f2c6accddbcbb3dd8a162b02175e9f7efd1fc8d41dc08f6ffee1.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194738_0000_20_95cfcfe3018024d1922cc341fb069e04470e432d21a8ef3f1604b8a9.root': 0L}, 'DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_16_b46553ccd70427cc7d3c687526563105d0844044050eb6195e32635f.root': 10370L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_9_eafb34dbb2bcd4feeb9cf8999df094b6423807afb7e82481c6ed6145.root': 24172L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_1_92ddb9ce587e67e07f89bb049077c831d0b58fc27b82471156367fec.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_7_266d29bfb8943c1eb852bccf4dad90a8266d67490c8123885604ce8a.root': 21241L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_17_87209b1f219472e518203370eba51cffec427262c5df9e7bdd93089a.root': 11775L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_5_700ea58010687feecc7b8535e23ed79e7469be5dae661f878331dd31.root': 18296L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_8_c4a4c7aeecffb0c816b9207440f8a5eca35d5a63cf5850425e9907c5.root': 22668L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_4_ab1a636f64bd0f298d92edcce39a24f057950c5fe96984f4deb47fe7.root': 16786L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_10_79998f19432c670426df5096727b37eff6ce59e9684cfb59ab2fd2a5.root': 1449L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_18_c5ea1c1c579c510475ec774cd28845af46bca5c57f02ceeb394dee2e.root': 13343L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_15_85fa1c4e892f6a18ba5ce00bc7fc9ba7ae578de2ac93276b8df25359.root': 8884L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_12_c33003da160968adbe89832c0a6880ee69cf5c5053feff4325d1adb8.root': 4454L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_2_51ba3ff8a59858923783cabf393243d19c0ce5cbde447f8e98c637fb.root': 13836L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_11_3374755e92c46033ad094cb0053a2fe42bb7a2bfb6a1aebc30fe748d.root': 2982L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_14_dd11df44cf90084b6697ccd68d71ca21de3960d8abdf77ac7d2ed33e.root': 7439L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_6_e73ac19fa14d98a87c3d2a009b7e4abcd498cf6bb7386e1c659438f5.root': 19771L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_13_454e579f9aed065a42f3edd0dfb6045d5baffe877bd91d164c2a3cdb.root': 5947L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_201019_084604_0000_3_3a80acb1982cade1b5120682dc1496edbc21d07dac24065eb9dda705.root': 15265L}, 'DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_200928_124814_0000_1_0b727f93f1d17e9f56156e3246076fee97c212b8f7d4dcc637600083.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_200928_124849_0000_1_85b31579027488497f18897709f94916cbe325be8a6a70791e22fb42.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_200928_124849_0000_3_27e7dd56d82b4c7873f503c4b19aece7acd02b14e7d9ac3fb453c5d6.root': 27L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_200928_124814_0000_3_d873fa4938feba464ab5114137119fdc8ab9e831dbafb4bae7e56bfa.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_200928_124849_0000_7_5d10158e4e31519bb2740a824d30be91ad168fad5d0220972eb67fa7.root': 83L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_200928_124849_0000_8_1f15d610d21b9974c2afb8c0052aeaf9cb0b23dc33c6581714f71c59.root': 94L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_200928_124849_0000_4_3f1aac2601de08710c7d876243f018ef9cb3c377e1c5eb7bb0ae54f4.root': 43L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio3_200928_124814_0000_2_c79b6c282d3a44674b5bee48d7ff55196ea4f3ee271798561af76c08.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_200928_124849_0000_9_82253ce67eec6e327844c19fa52f46f46a5647c5b77707a54ed330f3.root': 110L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_200928_124849_0000_5_f45c5fb31aedcbb619c7e696fd0f1380a5535d61d5008a5b4d26be23.root': 66L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_200928_124849_0000_6_943de09321b87b4828e40057b96fcbfabb38a73da27876f53e22c845.root': 77L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio4_200928_124849_0000_2_c312ab13faa8cc7a4bf809e8b0e87244b09a63380270a518e3a5f9ba.root': 13L}, 'TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_65_ef7652aa3b153caa71aa0755b8ba8bf37a078f656dadab4b195e8358.root': 534364L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_17_b7e1e3abac66e339c5e793d9934d115170f676721d7afc9d5e5cb48a.root': 163596L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_43_da5e7cb1b99a16780a29da4905ea02c7299002abf494a8b64d5697d7.root': 360693L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_112_ba3e7efe8173f1851dcc0cefd15364a212cefd0368b2ead15c472ed0.root': 85996L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_106_61892e1c8bc766c9905d5d22563048fc70b9fcb7f25d1415e2fd6c59.root': 53518L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_74_1bad36ed1c0164fc3775f98ba4f78d3272e62c26f13285646b297e79.root': 635974L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_27_a02ccf181f610100a703f273508e19640a4ee83516e44efef082d04d.root': 242721L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_47_3ebc263ceeeb7ad023162f707f3f67789776151bac4bd404fa3341f5.root': 387409L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_33_f63c2736f1b8244c9302eced373db56fbec22b61f42153429e95d532.root': 276648L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_50_f5a0d1c495400792b32d725de07dc5cfc9a16c0b20fb4da50a9f19d7.root': 410835L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_55_a463ad22f7109cc008c3575a1d819c51dd4ca02fffd734974fbcd932.root': 442674L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_97_847368e1175e063d55fd0c3323ba0ee173114fdc585c3d26ac25cddf.root': 874718L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_92_07eaa8e408d28706e06bfbeae662dbcf7a55f9757b32af363ef24082.root': 844072L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_99_8348ab92bf8ed62d9cdcf684f4eb9a4cb6ec5c85758ae9a9ca4e1616.root': 905308L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_26_2a4a3cbac66095a1daae219d62526c4f4deb194f85fc3e1fa6af3d82.root': 232771L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_52_880f53729bb39795a4b59bb38ee3a66569705ad3980b1a472784e6a6.root': 421965L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_122_5fb471b9e99e250ee3506e199fe8311386f9440faf6851f01b113790.root': 127158L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_110_efa0305d99e87885a4b2efd330df62414bfd15786704e31b40bfdd7e.root': 74882L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_119_3f1e04d9fc2e3141ced372425fd05d1d1967717ede23678dc3ec9066.root': 106752L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_84_b90d881b2726a034aa189ba92eb76c56b4b67fb5de2d5fd4218cb265.root': 740463L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_48_3832f11f6f5631e76335290d4d5fce35a771ff016fa467ee3fe159a7.root': 397084L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_79_8a8ca399246ed65ca36f772b4f9b0f8902566430a058f66ecb6d1031.root': 674559L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_90_735fed2b87326b9d84eae30dd70df0487e970ac15e326062fb296e6a.root': 822070L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_69_580e1e55b4b8eb4f1d0f254e16f75e5ee4ee8f1b1e7a2c3a93dfd601.root': 577539L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_1_358f725bc3994c4f05c7f081cd47600c8a73974029d646cbfe4230f0.root': 187378L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_115_135f58902d96487ba3e62830ed622a0c5cbb40efcc246b854ad7892b.root': 98953L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_116_2616ecb0f0e23448cb1acaf674bd93258964223cc6fa34aee62394e4.root': 100686L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_111_cd561fab6c86f7c36a69b0ff1b33fbdd6b956fa74b6d86079176a6ad.root': 75015L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_10_895ad00ad5f75ab10b43cde1d8dcdde5e22ea8cf14a2eb365cd23222.root': 74463L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_23_c0bb56dc0b2a36da4610776faba16cf7996fc99fb3b34e20b19c49e4.root': 211704L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_118_de00498bb9564d83226252e4e44f7bbe69931012eb0fedc2cf37b0d1.root': 103065L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_21_2410386628bddabd64838a6b6668d88a66881ed24eddb64518227a43.root': 197466L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_62_abbb337147c77d13aa583b6422a4fcde1ed55508870c4324a1c954bb.root': 502634L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_53_14d26f4bbfe57d1de83d2e0fafc288c32c72aee642934f8298bf6921.root': 430928L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_121_7bcb9c99fe5c232d3bea23c1afd37c966c6704e62c12dd1e4f0025a3.root': 125601L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_82_441fc10c4e84210d93b3d02a33c6b81cf4444c620b6f1c2d6596a174.root': 718370L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_72_2016f24ef82c4291766837961d4785204dd30cd00e53137b70ac2225.root': 618346L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_38_8e7e83876337b2203576596bdfa1d45e1ee8642ef701dc1e2b9fe6d7.root': 308845L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_15_e7d56a7bb749c668096901ca2856eef5a15b5c766de398c9fb57877e.root': 153052L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_22_16743397089d20051385745ff0786b1e4c300d0e5256f738cb380e79.root': 209948L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_11_c13727bdd62ad913eecb6789da8b2cb80708a49be5a9627cffb2177d.root': 107566L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_88_fb92aa5ab9fa7ecc02b3284745211f94e106df956c77212e776ce7b4.root': 790125L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_117_3fc2f89cf24965953a461d0ed8039b76366e52cc6dee49d97f32b72a.root': 101284L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_2_0985ab73e798403e5a67c1d1cbadda09a7fc35525ccc8465e3c2d453.root': 263555L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_32_727c46cfd86cace46da2df337523043dce11421c1ced08b65137d447.root': 276057L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_57_319dc9ec0ba9cd7a204689d2b00fed80ca21d87e393f46e6b2a85739.root': 454254L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_12_c4832c9af566db3a1092032011e035e5443dae0c936a4664285ba984.root': 132791L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_42_0a4e7246ae00710e751ff804fd8f26b6dedc64c3ed53a78a9f6e8ef2.root': 351191L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_80_d941abb78ea80fe8c55c9498b1fae4ae6c62fc3b2db0f436800e1566.root': 694058L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_101_432b95a35b6d54ded6f7cdcba9fca0ff3b7718081c0e2a6806f27d37.root': 1740L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_41_93c95ababa567338527b4bed8a95e326c0f888d18afde8ffa2ee77bb.root': 348439L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_78_bb361df163a24b55c25e2956c4d2d2a2ad19a2edd06f44b5bdfc44f2.root': 661139L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_37_eaa209a584f68106c9b191d069268f130cde6e16236719464b1ec7a3.root': 305900L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_91_aee3672c118a3520a7d0e7180422c862f5d11b984065be12701d3dcc.root': 831307L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_123_831655420b8f8b9098aa2426106c8065a83fced263990eb2f0b646d6.root': 127478L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_34_d5b266993214414eed90c8a32d05265719a521fc8b557a5fc313a59a.root': 287953L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_86_114ec15ba37e2f8285ecd3eb83b90184b825d730bcb791b56d0760a8.root': 761195L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_40_bb912500a22249d4286b1bee27ed687eeb06084a042f422de2c8ebac.root': 337821L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_120_171bda7d9ca7494c45b19fc99650ab0a936f0a02e7155c33092ec85c.root': 115892L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_77_1ab1dfa6e8a79ce41ce45a9cbdba40b6ce5e44ead75db6ac6d4eac7f.root': 642824L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_108_c4ff11aced9bb0d0d0c7b23a9761d162fb497c51c190a41f8615a6d7.root': 58075L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_20_69f0f8f179530082be962f770728cea89deb2f918e6dbd52812f32a7.root': 196729L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_35_b27a889cd8336e0d7d6b8fbb294f8e4449e7bc85f7fe63c12f0fb703.root': 295660L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_71_b5ff7cd7ccc9bfcb909ca5ab6fe601869de902a0ff8dc1a30b0c5663.root': 606986L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_93_19d49e91406344a0f9ba59146fa7fa880b3bacdf3aa0984e48a3ce53.root': 853684L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_8_c8fd424accb4e1c48f607cfc878a39e225b9f913963a23bcbc69951d.root': 812640L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_95_893daf4876e919a72d99ccfef4b4963d864b22cb58e255bdbec0dbaf.root': 868623L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_83_954dfeb75c785d6d9d6c7a49fbb85216edab9bf7ec2aad5a4fe172f5.root': 730330L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_114_b03ec66d9e0af8540e3bda0241074ce5cb6d8f63f4a5d1ec721a44ca.root': 88893L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_58_ba0a34f9687a83d7b2c9a9c482675f00ccfe66228ee9f870e5f29f24.root': 471745L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_68_a1a13d01e28c2ac6436b1977d153ba4c6eeb40b82e27ceaf54de33de.root': 567723L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_46_764077a8ee6839f31c2303680143a5ec22452c4b896daea57949a544.root': 374887L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_102_35ac2e85f9e1488d2ce7c267ae4f52215710187005f7ab85d6715973.root': 14019L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_7_8587e70c090f4abfb817cd5b4a5c33410d8fcea6fef446406253040f.root': 684736L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_64_44e71147ecc6f708ba70623f256104c0b3e0f1e093384376d243b584.root': 522144L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_9_fbbbb95fa33945ee251c4c243538d51cacd756e16d9b1c4166fcbe71.root': 914439L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_45_370210409c08b9fe243e1dbb39e3bebdf0b7fc41a339c61e52ce52b7.root': 373266L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_66_778d363f6d62d14b1427c795e4b9046ae8345a85754f034303ec34e9.root': 545240L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_98_b456eead186117819a5e9e3a227150e51a863bba98f8f5585e8fe6cf.root': 893069L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_103_17bdd20e0333d62a99865551798b3c110b322fe1c589f720c8adf66d.root': 32353L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_100_ea6895c92cacc1e6aae3d184e0a9ebcfe31fa2eaffcb5912474debe3.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_54_9b3468496b99738ea7c37c75b954adf464f97537346d0a06b3aa68ce.root': 441094L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_60_fa8deac7a9f0e7692661caa6e7b2613f2c33765e45e3817d8817e988.root': 484222L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_36_88d422cca3fb9788ca7ad4b1ab205c2fe9d634602622c9d8e82645b9.root': 296658L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_59_3910e34a94b2a85a7ee34f4d967e586c4e2c0eeb5f90920f0727d0ff.root': 480968L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_44_28f046a48def5d82720d5876b5d1a3816db01700c003f8b7d1e41b9f.root': 364182L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_30_51b6160bba5fe01645c5ad961fbc95444d249eb29c972b858428e39b.root': 269230L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_75_ffcc9a7546f9a3bdcc1352b632ec19545aec6aab4a7239bf3c3cc3fe.root': 638875L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_107_e3253ec0d93fcfcfcf3182a003ca6edf26ee6cb23b8a4a891bbb7fc7.root': 56976L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_76_ebdbf24be9ec1fba4d4d22cc79a91bed625ed602324407b1d5373137.root': 639202L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_4_f9a5baea419ed7838bf0aa7bd62cc7bedaabf01066fb5f89df8ad82b.root': 400649L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_61_67a60b411d5739ac433d20f01b97deabcd583aeae74643512beb572a.root': 493933L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_19_edb9055de115146587149edc5ddcac94f669ce7b8568bbaa5643a4f9.root': 180093L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_56_c3d1e78836c20144bbf22111d3340f6bb4c04e57bc7d1b263a287a46.root': 444549L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_49_65c83941d453d57bb15016f5c7e57c17de79b6f6b65f5f2795179c3e.root': 398790L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_87_e8c2c15e293945cd36aa0dbd7c3b08b27ff2dae054290a8c437f5884.root': 779411L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_51_eafa722742f9495252a58360ac66d3e431d09bedd8c14e0b48ed2705.root': 412226L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_63_a402a68e5e719f839ee109653f67d2596da95deda53e72c1704886df.root': 503846L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_14_41b05cbbe3d8a58308d8c44975b80dc189a80c724f29914878acdb5c.root': 143905L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_109_9ff3684151a334a9648a5c3f6ae7daf01a3c83206e7cc9210302bc90.root': 67331L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_13_f1282ba866833d54fae07476adb687eef486f4edfbdd929f6f70db41.root': 134846L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_94_91700604786c7ebe324e62b24bbdad5000927d8334b26eb23fd2e523.root': 857994L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_70_415a58597d48136482fcf6422a08098cd32ebbd7d7a3ff1ead04aefb.root': 597448L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_89_b693de4a99eec78921e9d21b1c62b8c039878d082c6cf634c36783e8.root': 800652L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_104_b44fb59ef5f9b18420d661f77cd39209b8b5787401096f8c60586779.root': 43620L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_25_88f48374ca3ae0588a7eb341ce8335975d1354b94990a65bd2d0a0ea.root': 222800L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_6_455e5e32371ca796c875a1576fdd84533c2bea0055dbd3a728ff1e19.root': 588042L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_5_c6189a6cf78a782469ea52f8cc64a5cbd008a84779de9bc8b79316f2.root': 482772L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_105_7e9f2801f2b4d14eb38cba0867535494c426ad46f81c2b06f4f01ff2.root': 53015L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_3_4580c86244584cfbc1af6bcf94d8cbd8f46cec4830d86c034fad9dab.root': 328262L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_85_2551088113550f350ad5bc6f2a0eb0e2f2e12bba9aaf9f99f33984e5.root': 752122L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_31_3d65b4c6d34bca00fb8e989b3766bb441859019a7a4549a9d3dd01b8.root': 274469L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_16_7b92fb90522b0465b52dac05dc4572dc9428902c8f1b472c2229ec62.root': 154289L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_24_d5f5775fb4103332ef52538dd85fb09d4b81c73487ab0434c438b9b2.root': 212809L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_73_352bfab43b7fbeabf69878ab93d8480e6e659885b7433dc6d8b470ae.root': 624032L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_113_c61635d01d8340a2dc41328311434c83d61d27c98ed371bd60da3761.root': 87229L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_67_e749497f9e09137b78380a107029a8ffd15f49141899d210c8e4170f.root': 554539L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_29_8a97971fbe44c0a64d6d46e2852bfba771b4af86a2bafd31416f73b6.root': 254541L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_18_da2ce84567fd59a551c4d870823e3b0c534b958f33de456fdb74290c.root': 174010L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_39_0504c6010dd1accb38fe31896890de4d3a518744e15af533cbe02171.root': 314537L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_28_fd344697f6c87bbbd38b7cea67cca8b8acd7be3d782f07761018ec6b.root': 244769L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_81_b706952e9a7e4a47876dde06653bd2adcfeee267656378d40e7e7e93.root': 705740L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8/tree_RunIISummer16NanoAODv4-Nano14D4_200928_100918_0000_96_fa3c93b05bf1b1148e3834a26f03b9c8e2ad29661b1aebadfa60ea28.root': 873465L}, 'ZJetsToNuNu_HT-600To800_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_4_ebb39da605f0ff5c46e7b8816187efa350e4ea1786cadad748d190d5.root': 791845L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_2_c3310da000eca94cf6cdd8b23b6d0c54b7ca1323cf74d682c14cc40c.root': 292162L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_5_76ed071403ecc7f84fe352ad31cbe0574c452ec897e88ad5fcd0e095.root': 836624L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_1_e47616a62e80bd19ef87089bd4fdbe0d3da40fe08c83386a09fb9cea.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_3_859df791734b881b5224f40d7e17c3db8c84b4e4a93e378fc3e3e2e2.root': 519481L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-600To800_13TeV-madgraph/tree_-v1_190523_214028_0000_6_2e35356f1f6a49b3f56d3c6354c645e307ca4c3ac5dc05c8d622dcb1.root': 1171147L}, 'QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194813_0000_1_85586474339eb89a78654d14ff8ba72a7b1a89f3999550a26ecfe992.root': 93376L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_5_c06ebe40669724a467c69efc64e3c7653f9085636050a9ac581fcb3c.root': 52054L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194813_0000_4_5797e8d4f60fbda2ed39c80d9424005f06bc87d844de807dbb195fd8.root': 135317L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_4_f20644e4fd0a1b17380920c66a7b5bf362a68c062786a3320aaa5b8e.root': 39715L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_2_83708d1d697f2044d5d4f36cf9cb880f17b70ea1441fcaf93009b3d4.root': 8688L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_7_43ff34f506eef707e76356f2aa2e45c2a4618f0a5dab24aa58b53b2a.root': 72897L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_8_f1640796668213e6f817af3c7c0f9fb745db3850ba80f4615fc51892.root': 83574L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_3_a96240be0e219c54fdd220bdd07d943cc2783e7c6e3e92b157f77fd9.root': 25128L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194813_0000_2_098872408bd4e8566ff267a2d1be761b2821784429a879a1a26d5b62.root': 105474L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194813_0000_3_f36b3fb1209248069e4cc4da1c6141ab4d38198507d88c0dd8a04def.root': 121716L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_1_a9c3ad048f6d50c95755f34626da57274080d02fdab2d7a3b408c37a.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194848_0000_6_9cbe97669edf95a85e504c6c4c199cfd56fe434d1dd92699fef46a08.root': 56432L}, 'ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph/tree_-v1_190523_213825_0000_1_7ffd8ce623a12a400294d64ed4ee938bd776f2d94a65462d086e18fb.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph/tree_-v1_190523_213825_0000_2_75981b5915b13a9aac69e3bb3509fd21366b3ded7b1aa61aa7c617a9.root': 171444L}, 'ZJetsToNuNu_HT-400To600_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_3_517b5c3261e54b0fd11c819ddac32baae6876c98aa30ca09f9c7e95f.root': 521439L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_6_43bf66462bde076a9aa905b92d752ea94b5401d5409d4ae656a75037.root': 1013268L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_11_e644e71255f2cd08f254e6160d4f8729bd6149edcba9939c450fa704.root': 176507L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_2_b3aebe6503ab575975a3b4f91342dba5e15232c6094bebaa926a2fa0.root': 367502L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree_-v1_190523_213905_0000_1_a5434bac81a9b053443411496bc8066165d1a93a36d770f45fdd04b4.root': 1535338L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_9_b85cfa283586a53f82563cde26354cd3d06160fb78b027d63e0f3605.root': 1390072L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_7_737832fe4c9bd4ea87501137cc41b237dc7f7f45ac5718c9ac677cc0.root': 1176392L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_1_0f900dea914859f6467aede26df22b7187887ecd81730fa666c8932b.root': 353785L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_8_b600e0537a6de7a76e8388fbe63ba6f4383bc9f3b928bd5c67b948f3.root': 1212659L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_10_4445a70a90a28c467e28e81829a1e655016f5473ceabcd6a5e7f3374.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_5_8b2870f6e7dc2cddc73996a71365d2042ad30b44591dcd7ef509bf14.root': 845300L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-400To600_13TeV-madgraph/tree__ext1-v1_190523_213947_0000_4_7d06d0f72497457d312cf842eec26fdebbae7c68f1a3698cda01ea30.root': 693132L}, 'ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_6_4c7b6ef2a7a9eba64c39148ee7e97ccd3e1dd0bf88c1194ccf14ead3.root': 787165L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_1_6608c88f155dd081d7b6cfd46bc0ea1df950d90e253a7c7984328e53.root': 363767L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_11_f7b78848d1d02675581fe0db7de72ba60a7299550907da62dc105232.root': 35239L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_12_93e662414c82e81894945b3247637ec9fec60f9bc7e74a7f54adf699.root': 68212L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_20_5edabf46beb8e6c5563911369b534f9d26cfd1a496c3a7a93648c613.root': 373792L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_27_c14849ebd1172d93be1bdcfa5db7780ff653a721e07fa0656536c227.root': 628777L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_23_6b5f0ddef3ae4726ad0e226967622ab6c10657ae71910682230cacec.root': 492296L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_18_7ff84f69707a22088a878539698354a4481722713eb03fd2581f7540.root': 296496L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_17_31be3d99ddd22bf6416c910c28bbe6bc39f5f4a2b18e8b89eeaaa853.root': 258687L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_26_ee11756ecdfc1220c9aec003494c43f4bdfb762847ff9960fdc59c6b.root': 594948L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_21_bb728eeff3aa41cab3c6f3cc1e70a0f2ac3f027d8aa3e18c4b67f0d2.root': 418637L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_25_99593cb5defb425f704bcc649b98cc2cef3542d11b19fbc8a5f6efb8.root': 554738L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_24_a80fad475cc70d30578a95037238f5242967d2c7f0a6688aaff1dd1d.root': 525766L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_13_b5f16243126793e5321a41f41decb64dd22eb20400a0a820905d77b7.root': 113453L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_14_6dd879ff493544412adc5bec0881a248ba4effaff4194fe894b250e0.root': 153332L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_8_84b7d1f3b7e8c1a10fe4a910f319bd582e012cc0ad159d10e166f320.root': 852898L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_3_1cefe548ef6766bfdc043627cd992a02d810877ba90c39d20e2aa205.root': 667839L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_19_9a34fe21960b76f62ddfea4b28259db4e6c3255a5d2012714fa729ac.root': 330424L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_16_2221b4794dea0ee1a14cfa4b6e771e7b1982a56a755515abb9e8f856.root': 229342L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_9_0629cc676fc2f87bb383c4512e71027c0b3897f9bf1a31143a16f944.root': 902991L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_5_49c2f6036a11b2e7b78578c165d3ecc350cbb87166a412c857808f19.root': 745723L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_10_2437ed328a2392f2562ae087638d18457670ccb65da3103febca13e2.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_7_1bc53ee5c7b06df5e9c01719c07b8e46c56f22556ed29830f6cab899.root': 821752L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_2_a44c65a096c6da7d11944206b347b2de8a2bf808c4a723b980e01570.root': 629610L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_4_2eaf41d444be7fa09343ca60f83b70b7691d1ad5184bea653ca7811d.root': 704651L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_15_3ca107aa0936242afe96688cdf7c78d34e27c53eea12754ad19f43cb.root': 192780L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_201225_0000_22_3d7441df50a6bb479288861076c2f2252336263e95b1e1e60d0fec02.root': 456567L}, 'WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_6_514b7d7676de5af8c32c662c39c525cbd88e5a43be19c352f58822ad.root': 23983L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_3_d0e393afbd7f72931b20a9ad8c21e23c168b2acfcaaa1fd21d96927b.root': 16781L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_2_522e806587d3f1cb9ef0124b19f231ef08c748d5270844ca4fd15580.root': 14326L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_4_036f2dd5382e999385c5944dac3614cf1245ffc1f8c4cc17e57b2aac.root': 19142L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H80_190606_071404_0000_2_148bbbf3af94636f33fcbf1451afd3739679a876ed933683b377a302.root': 2311L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H80_190606_071404_0000_3_f6366fd1b9a371fd2b49401825aa9ef7e6ab469a16a2b0c21a43e494.root': 4665L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H80_190606_071404_0000_4_922ce1c72f25497e01c86f10b785c1d03d31f4e929d41cbde9a6d089.root': 7164L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H80_190606_071404_0000_5_5a9787b6603fdb776589d0a78e84f664c717baa76e70ac99fead5f75.root': 9486L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_7_2be8163c188bcfd00af6064a347cc55f323f90dc50d907b555aa1f70.root': 26109L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_8_92d2b2a1e75aa3347bfc4edd1bae3808b3742d960126a4b633f6b521.root': 28472L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_1_48c6848bdbe43fb32c1f2015233b95813ea60beb688d03d71236720b.root': 11876L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H80_190606_071404_0000_1_54c6e3b93fcf17d3b75d8241f75abb295199c6dc6932c860e0c21636.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_WminusH_H81_190606_071505_0000_5_be532c1c555ad615933fcd749096a6eae823649237ed1f9153434dc9.root': 21521L}, 'WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_9_8fbebf48c3c9c06507e6e57a1d45f6d60c60e627acf3c6f57ec53e39.root': 986518L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_2_f4543ceea4826470bd7c5ab254b65dc6fb6cca8d2a5a6619f677a201.root': 471437L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_5_d216814a1080981644e1d1c393c81fc5bac8af337b83890403c875cc.root': 728413L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_4_729c617a1ae56fe6e8f3e4ff2e2c5c58a977bdd147eddf671dd1c4b1.root': 1111420L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_13_35aaf1f88ed83a0799fb08e0d4e42c16eafdf84808146a8e6b6e16c0.root': 165505L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_10_1eaef293964e12f978204d8a7a7ed03f2be7bb0becacdd30b298da2c.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_16_20d9fc7ba412d53f5af2b28bec0ef17e3ae4d795a21c9e9066a299c9.root': 360817L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_6_18d3d08776bb23ae32ec34cf3c12c96e677c113c9a5e3965d82763c3.root': 787351L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_17_ebb258887dbc90990e10e8738b44d68c6f8158c15c91e32fa93cc1a5.root': 415342L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_5_2ffb4a6156e76808ca671591ad5a8776ca70de276dced0c2fd9f5ac0.root': 1208327L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_14_95a58a93ba2462cf966d8db5ae679c610ab6e8b71a9b1aae9405d5ad.root': 230619L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_11_d048e7d0e779b4f9bad0f75315288ac5995d57bf0b1bc9436c38f621.root': 63201L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_4_91f5a58b84be708a53818289b9bdeca27f1bac9b484c45dc2654e426.root': 638703L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_7_74a09cdab1f1b8ad0d18127b04499ccd11b842df3b02592102d72e85.root': 866070L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_3_06f748a420834f05e3deba19caa1d91508e640e77fa56a1b883d1396.root': 567583L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_2_27804605938813f93aa16e903dc494e5cc2d31214cb78660f6239ea8.root': 1019856L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_1_24e03ef54bc3ee626073b5172d33d9c0192114711f4d79c549b1069c.root': 1005769L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_8_e3b9f1d607aadbdd6655211897ea9606eb40a531d70e557aa413d425.root': 937138L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_3_9d6ca49b6974d7030080c6732ef9553ad0d606ffb8218f04d4e8fae0.root': 1028729L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_15_3f4fd668df0c46cf8366c13929b1ec05a6413df8c2d5a6fabba101ab.root': 300648L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_12_0432d73c8960d1eb142aaf970bd6a4173ea27b72fc800ba0f208c1e0.root': 114451L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212635_0000_6_40583eb75d74c43707dfa860ad2d012abfb0a43dd9c8703b37c6470c.root': 1259106L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212715_0000_1_0661433d63311d67fa93ef58cbdb32d917e8b34ef6d37af7825c44cc.root': 415386L}, 'ZJetsToNuNu_HT-800To1200_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-800To1200_13TeV-madgraph/tree_-v1_190523_214109_0000_2_bfc00671d3008fa55d6c581eaf6d70cd6f974565b69c067f9826de75.root': 233440L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-800To1200_13TeV-madgraph/tree_-v1_190523_214109_0000_4_a82f827947187dc26dffbc5043ea11eea67ea50c2ee34b03852bb9d8.root': 634986L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-800To1200_13TeV-madgraph/tree_-v1_190523_214109_0000_1_4fb88ccc6b5edbfe8a6dd2326f159b45601c52e16f196d2bbdb10841.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-800To1200_13TeV-madgraph/tree_-v1_190523_214109_0000_3_0c16a462d14ff76281a76b6b265b9a7ebfa45bb9a6995e923706d592.root': 526515L}, 'DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210225_0000_1_b54bb92c17e058aefc2878957ab947dd0c32ddf0d8929ff5e4884fe0.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210225_0000_2_c0196d16f5d22cbdc43e85c27e5e3be89f7aa8ac320b79dda6ca82fa.root': 21819L}, 'ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_214150_0000_5_2655e47e7b031064111944ddef9806b37080df49bdd60f561950c6c7.root': 183476L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_214150_0000_4_e91f513377fb7abf9cf84eb0339ed468c8a5a89b75d54efab4b75647.root': 49841L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_214150_0000_1_f3b7ace6f6ab80552c75a5722141f61abbc33e3fb9a7c9829029b3b5.root': 0}, 'QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_7_be748ce6611c00efb080c806d6fefe682f507c85f13f5a2233568937.root': 29458L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_2_a3dd8c98ebf9c998f6b62f093ddcb9ec0a03eb4ec8d2d87bf656d424.root': 47443L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_3_425eb6e21735bd76a7a6d4753953043210416cf30d2bb8add77a0239.root': 14878L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_7_49eda309a8a3b3d4d0d7b5adaca262dc3427a5ce31ade42179c6b1e6.root': 64528L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_4_fa96cc70de4793dde3fe4600fa9c05d4d02bebbc6d8ea62fce9a2c81.root': 18682L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_6_b5207de1a09b20e7fbdda068b580d0a3e3bde3c1ae441a62e908128c.root': 26397L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_10_3e319cb9bf4441de6f94504a28cf8244bc22f3e16250e68b5b50307f.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_4_3f959fc47d79897a6fac0d72e1a7fbd9fc744c1d0bd21e05170a3c1b.root': 54806L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_9_ac89e2ad505192153e035b269c93b4cdf6f2d1cc02ca20f5919eaeec.root': 40675L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_1_f930d83c0e65c6c4b8f76c2b1f0c8da9123e8f1910c93e4d72caf772.root': 43823L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_5_871428d5e716296c6c3f2e587758698bdb2add3a215b288d1a5405e9.root': 57326L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_6_3c545dba73a359bd3733cd01de01641e6e501a3bc1490d8e53af8c97.root': 60973L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_8_5f9c12e80f2e4a8a334f8d5f3b5ce03b9b8b8af9059d8c14f2e0b472.root': 35172L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_11_021f24fa5983a26fc97a59483dd09cdc411ef5bdb6567cf9aaae0e64.root': 98L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194627_0000_3_7e44207c763263ee65d342bea8cbb9c5e43dba495794d783daece5a5.root': 49439L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_1_2888a55492b095cc2fe1005a3c3de4d055b208e390b4dea860028536.root': 10116L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_12_3c3648c619a65b6cd4a80b5bda7e01ac9880160c698e5fab09b9266f.root': 3882L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_5_b8b019ddea47e3ba90faa885ab0dd9cc32e909abdd1e971497bcf02e.root': 23060L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194702_0000_2_2ca4e1ad91d003cf68655ba3277b63c6cfacda81b9370e4185d40153.root': 10799L}, 'QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194924_0000_3_9a88ef677c1dad8cbf12debbf46dae0fa6e896b43a2f10144e356105.root': 153315L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_4_740766ec7030b9582fb3eff673cdf2df26236e5823df7cbb6b05afa7.root': 27725L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_2_c64e7d98d971369f9bfcaaa7f06212a425eb175ae25edb295dbfd809.root': 21222L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194924_0000_2_021d46e5341b643a462a88d292598530b56805cd90fc9bcf012900e3.root': 127837L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_5_f7ad6e98373c778e602e543601a4a61d640a50493df0d6b1e777a831.root': 50610L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_8_d368cf36d997ac9470acb29d0732863dd6c294d5ac03bbeecaae0cc6.root': 94086L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_1_9c70af842a14291b1a340f8e4cb9bed9628b9d8b3ed3ec5590bed198.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_3_f22465168e6d104a516281bd0833e7f05484cc8431a06091a99547e0.root': 26664L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_194924_0000_1_7d5263175cd3a9edb96d9ac41993aa051d54aa02f034285065db2aa5.root': 116369L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_7_ab7ea7a8520aff6470f8ca25411988a61568231ee91a9b9e966d756d.root': 93322L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_194959_0000_6_144faa829ebd2220d0d017776939683be1b7fd1fc42bf24e23f505de.root': 77320L}, 'ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_16_bd0821bca3e2d8e7ed0ba7b80e1126d4bc626aba13dc814772772c4a.root': 17036L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_21_253bc2afa4786b14f2dc6a37fec89187e03d12bb1340035f385d4632.root': 40560L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_22_c6c2d20afccebc5856a6db8132518e58abcb480a2d7165f20f78f9ab.root': 44683L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_38_464e12f3453f0961115633538e373cd97e1748b60efe828b1b8a0e64.root': 112251L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_31_81baeb037151c7aad75a2fdcebfa0423da8182b3a02626d44db9583c.root': 84114L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_11_e0a30c2ad0bda8aabc2a18f50434ce513047745f345bc273a6c50bf7.root': 3674L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_41_5408ed70d6bc73fedfe5edd6a679f078f4385fd44d7788f08a072dc3.root': 122075L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_34_9a90993d35a48326e445b4ae1c4b1ea5520b9128bf0d1f9dcfe725fd.root': 96938L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_33_b0083338db1595347f0ce3d4d3de874d6737a93a19d02e5082342bfd.root': 92684L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_8_f2dcc70b8507f165d4361d9b045a377e8ea188639b343514b2b8ba52.root': 153804L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_23_8a84e27ea335c543063e9be88dfe68495831e230019ec62791368d3c.root': 48022L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_44_0028d3d1a1f59c6c9b1b48f5c1b8d3bbcc42fe7574e5452d9754b278.root': 134617L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_27_66cddaf270b017026744cb967f74fc6a7df85596fe589c12c6373444.root': 64910L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_26_33d8eb4da86da2662649d24e6546b56f7e61ed308d65a1f94ef4ccd0.root': 60761L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_17_c5d8dca961c5a5d6774b94c33187a810d44384b7e15489ec95f20bac.root': 21340L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_42_e11e4ac95dd75175dc2a626f32950dd0a6f67197e7597ccde21af37c.root': 126402L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_6_12bddc00e2fa293fb5637ca2155a78d0b9cdd13a8e35ca0782d6116a.root': 145205L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_12_8ee2286404a0edfbb1c2efd6eae6a469f7bc618d28ecf996d74f40c4.root': 7888L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_1_1b4afbc353e2645158d61cc56020b30bb151e6c9fac46897164d6272.root': 34163L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_13_0884c6766ea671ecb95ea75565fcfbffdd4b3125c47a4830c4e0c6ef.root': 8210L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_30_0db26f4f138938d4889477e09d8cf112551078ea7147db2b08cf0f39.root': 79856L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_5_98dda8a1c0e503929bc95ca0c8b2a2e8451669d633d5ec638c3858bb.root': 140942L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_4_8b429679dc0fbdf7705ffe047d9bfac200b306358e4bec31dc8637f7.root': 137853L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_15_c26273252a4ab9ecf25b59b8a573d22b1983f657d5256dc6628763d6.root': 14510L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_29_281334fe76ce6746113b93e7d4133ec11d3da9fc948620c59e9362cd.root': 73459L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_32_d654a26e5e94744f9be18aa986b96e93fe2ee9e8dadcfd51d7b360b7.root': 88347L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_36_a83895999634a148cd70707c38c2fb7c3661e251ce8559d1518924f5.root': 105477L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_24_afe097fbdb930b73a05a90fada1733cef8d42fca61e5fa346d357c7a.root': 52155L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_28_466465dca502ce10f260b8e9e00834a244fe361b464eb7063892567b.root': 69173L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_14_80ffa96e4b6e6630f964348748fc94961b5283a8df420948546b3b06.root': 10277L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_2_010aec19d36bd1072e2e32f4332fb9ece0cb91cd4aa43187e6c46685.root': 77665L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_39_d9a691f303fe56fe9955c2ea76a685333eb383e4baab1992e7b961fb.root': 114936L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_37_24aa9e6962eb461c3925b749b2e3ef087e73529bef5a18a7022ac5e3.root': 108040L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_10_382bba6fe507ddb7dbcb46769802058fc3c32c25991ef39a05ee1b26.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_25_f23dc736084f1ec20dde022ef92666ec5c07d74ccf1ab0ddfb44ca4b.root': 56522L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_43_4f36190bd44955ea8df29eec0f5fe6230094b31f99aea887fb4be358.root': 130647L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_19_8781df695f4be4953d418798b7b51a0acd0c7c2e62bc28a8dd9ae467.root': 29924L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_35_f0daa86c29e61548f7c4a889827a7618da312917f1ef3d949a3ef358.root': 101205L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_9_eb1a789e0a8513ffa35e57e8688ee1b0e7797588f01ec7924f077071.root': 156307L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_20_abebb60b2141c6a8eac7d5958c1008772e61f6fd098a4c9f704e8528.root': 36242L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_7_08bbb82e6d806a198beeca875c521e5809738f2fc5a18efb962d129d.root': 149566L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_18_df691b59cca7b2bb9e7f7052377ef07f934b20198e1f81d10a032f7a.root': 25619L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_40_80ab45a38169ba78911b54dfb3e2dbe5e7584a20756bcca11f26267c.root': 119872L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1/tree_-v1_190523_195717_0000_3_d5c3c4a6e12fb3cd1862807c40351bd6f6affcac03419f12623c65f4.root': 119234L}, 'DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210545_0000_3_b253e9339b57e45de862bd4a2dcc2c335a244df6d9c1f3ac3cd68686.root': 23152L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_210545_0000_1_0beca7cc27b53669db27986b08ed2fb0970456ebcce0d369c329f469.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210505_0000_5_f5b191dfeccd98b09f48b4de02d557ac1a804c62f06a87b6364e0e15.root': 80415L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210505_0000_2_e67ef328daf49dbeec8a464ed5aed3bd0b978b8646469ff1171199fd.root': 55197L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_210505_0000_1_f3c749cbd9d90fa5e684891cb0fb82128ecb316b9027ce1f3f3ab9c5.root': 42099L}, 'QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_38_c8a4c19313334881dff4b603be9372701b818b56f944bbbde6507263.root': 239L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_30_033a5c48613c940e91087cf17f74c4eb38937db0ef8232fd539a1605.root': 178L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_18_f9eaa81ad7e3900fc76bdd14db0ea392fea033e5fe2a5e0aa0cb869d.root': 338L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_8_6c5352e94564f312ffdb9dee05490c6c2427fd6d91ce701cf38439de.root': 390L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_18_285e4e573017e9af3490bf6332df9329b2f110d299de799c3d1cd9bc.root': 65L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_17_3069ef8152e3c4cf048821bce7aa2a73a8a220915df74ce734e468b9.root': 331L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_31_f79a5e0309b984df6dbafe19a59e1f44bba508d96571d7fcb8942902.root': 189L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_23_cef3118c1d0489064d2ce3efb0d8b8ec8e0d6a8b1971e3f14708987c.root': 110L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_26_fbc28e167618b290cb05413234352c90806bc2f6846a4ba523c73e64.root': 128L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_4_abf17321a1add79b866514320cedc3ebf47f8d7c21f65c6a8c6569e6.root': 244L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_14_57b6c923b646a233943d35bd818a9eafd0aaa8c49a78c651cfc74a63.root': 28L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_13_1016fd887929a505f6be2e703f545c2ebf63893bc62c7b86afcca897.root': 20L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_11_e63803d5ac01b626b94cc4f6c5cef4a48f51eb198b26886c798dd3a2.root': 298L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_7_b58793dd5f6f79eb2876a79edb883a6152d334a455c3023a2240ac46.root': 380L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_4_eecf06d7e104a7480eb23185bfa7643dbe70c149e5a2d6c8eec8475d.root': 354L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_5_ad3847b1d54be3a88632fc71ab08da17949a4f5c85e091c16014fb93.root': 359L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_8_bc3701a89bf6a0e9abb1adb191fb5d56f9caabe7d6834fc7004b4714.root': 284L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_6_1b4b91016bf77ba4f73a4e07098cbbf55cb4b01cd38fa2c0f7640daa.root': 377L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_2_5c106ac8811c74dd4917db348adb4d092d15770c40122c78c82bb198.root': 346L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_22_2130315709e215295a7c52048086bafab590abd28ba42aeb4908725a.root': 101L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_14_6524c76f9140205cd23d92134e72c874451b82666b67b47072e333ea.root': 312L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_33_1f11dedb840f8a82a8b0ad58efdc1752ccec8657aa640152330f4df9.root': 203L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_19_6dc9d58f008b1972c07b7b7ca896d48c2e55bb8a45cdc49e341cf042.root': 78L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_3_02d1378614741099a12f03bb5fc8d695ff631b04726e16c7144fd10e.root': 348L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_15_20423f83dfe6f46bbe07dea71cc15d31e105c79e8f9d331da816a090.root': 35L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_32_7b5c075225d29468e47fb83f43d4143d96eb18642b0ae20177fb2865.root': 197L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_35_501a1b113c801ce826dcbfb4c291cb47074199e7e147b890baab860a.root': 223L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_37_fb1caa3b003e5bd16e03b43603f5809d1ed1f68e9d863dfb4fb887f1.root': 230L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_27_c30e40b7ced7df6dc650656a25b5b4284a0b92b3d43254241230e697.root': 137L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_34_f6f6213475706c67d1a4ab973589822b4af95900ab1edae8ce72cafa.root': 216L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_9_ee3bdc02ea5e3e05834fcea3091b256ad16471494a6dee1790e5ed63.root': 288L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_3_0a4fd3a42d48f6e95afa7c0818cf69aa907f475d959bea04705bc28c.root': 242L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_11_1e0fd6a9e6087d0e273592b7d0299a37e986196e0db4288b506424f2.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_15_9e2d6fc76fbc8e4c9d65c52d76128bd00b4887c70a42f609a53efde1.root': 321L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_10_3d8bee55eb6219d9b5cb4a62e0eee0776316abd5fc83bf794f27e5e8.root': 291L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_16_25a2da486a793173fa5ec334f73fd3b52a21f7da519d7b5ce56fb683.root': 46L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_16_7f32bf1dc12a21ae70c715c052f4f72ce5b1af8a3ac0a412abc1447a.root': 321L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_5_cfe3064251f071e3149ae8736998a398079272213efb52f4d63124ea.root': 253L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_36_e39d3c842d16fa01773402d478c51798ce357a4e45641a56379cfe82.root': 230L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_13_f887dbc840a042998d4421d15581b19921d6c88661087e3a918a67fa.root': 310L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_12_b7bea85fe3deec3c1534aeda148b009104a71e3b27b51fbb8cbc57a2.root': 12L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_28_a0a5677232ea96aabe77233eca243a7adc7fc0797d0a88f9f07f2cd6.root': 147L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_25_a613d0488e00bbe2a04d84e0249a41a0e39ab778ca9f8482a955c3bd.root': 120L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_10_9fe6c025a4da51c4b7d435e6c47276eff67855f7204fc274ffcfc83d.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_9_c4aaa240e4bf07ec1e76cef9434087491153a25431d2509cede69876.root': 400L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_12_b7131072747208e39eefb09a41575158ffb3f2bdb8a3a6c122a1a2ab.root': 303L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_7_2940ce54852b26e0c1b4697a8178187814439d2b5e45316e2e034840.root': 275L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_2_cb481e4a57e01dc3ee6405563ad7251e32a71f2723005b48f88f93b0.root': 173L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_24_f7afa4f7a824ec7e44c99acb9c00dbca027ec72ccab321519415b70c.root': 112L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_1_7341fd77d20e3003580d0268682ff0689fb3cdcf6d8aa948f601861b.root': 86L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_6_c0a9f23fdcb577f587831a0d7ea9faf2d19156a95b77837feee32963.root': 267L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_21_ce691c7a62533f34ea18a02a131c41a9b6f2feb23a4ddb24401d1adb.root': 92L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_17_d113a167a1f7f526d75efa2a756463fcc1833cac7b8a02157da761ac.root': 50L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_29_ac4afd73845660e2eda498a0b68855abaceaf1bbe5a535965b656046.root': 157L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195228_0000_20_40b673cde63aa599398b06135ed99bf0ed5deb2fade2c10b4faa5674.root': 89L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195152_0000_1_005aa1ab4aa37b8d627a4b3c6784d442c2e51ca6a50f339414f91816.root': 342L}, 'ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_28_ec0256c3b3c0a11bf527147bd23b12b5d4f9ff7b2e5e4d012c641446.root': 10832L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_23_39588e11c80be24097250c5c27b121af5c3c796b144157d4399a49ec.root': 7710L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_14_bf19fa4272e2f0fbf65542e2b727431c85316e0ac50a1650591be9ed.root': 2591L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_25_097e79885fb433e14127a0d3bc1f102ccde0ffd3dd65c8e9c30fef3e.root': 8964L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_17_6db5c9d6f8351545a9851543c1146b73b61f28ee4630db9b4d533764.root': 3847L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_5_66d6c91eec4b1700d509914c48055ca9e5190f0c34047cb3b8ee8fdf.root': 15369L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_4_ce4178f5fc301c0d54b3abe6105467905ab912fa88e3344c500996b4.root': 14686L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_10_7be62dbd6286aeddfb81828bb50c3ab544d47276face2d272d0fd4fd.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_6_35948ce4ee37223f6c254c194636026da4dd3979013d4e0972021d4e.root': 15966L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_19_fe1750d2d1a11eca83e252dcbd5f0e9462fda307b16a6e7802b5598c.root': 5074L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_21_154e1efdb1f68a7f1d77bf093be4f690c61df6279ecad0aa5a5b4a99.root': 7004L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_29_2806e61b6cf7a9ee5c5827069965bbebfd40da7b7e7038824cbf4882.root': 11523L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_12_72742f3b7fd9219a9ff682461144e6deb920e10f243cc329fde5d9b9.root': 1285L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_18_5ab0960d6eb3388d5219c4efafc7f103403850e30051814a519ca601.root': 4455L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_8_b2c59cf4c347d93c15c48a0749fc6087721eb754af159b0244810f50.root': 17250L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_2_5184354cb6108ee07955aa26d97c0b98a43fa57255c1b6d8d5e7dd06.root': 12170L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_9_4756c34a8ae048783dbec1e96e2f6569f24a1f19030a0dde80bc4ca9.root': 17868L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_27_01589c2fb37a1299ec1168aa6f11c6fbda69185a20edbabc79566f6c.root': 10217L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_24_baf6199884ec407d4289aa7ad037b15edff628284bee3f3663839658.root': 8353L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_30_6dfdcf44a2fff415f2e32926d7b8dd7be7b1e3d75b95ef2a08dc7bc6.root': 12798L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_13_586194fc9c835f55a8b57815f949fcecbbf9f9763ac48d2ecbcd497f.root': 1939L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_7_75dbc85c0a7f7067326ee44618276d0b4ff0936e18694c13f416c489.root': 16583L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_31_e7a107d638fe6e58354084526da40a24ebe52ca1a5e8ec525474f365.root': 13467L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_11_38a53511302f3364d3085d6ec6c4fc75d61eb2ad162d0dc67bdfa9ed.root': 659L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_3_68f1008a0ef6fdd1705d1fd2db192509fad4fd4330face2c229d009f.root': 14062L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_20_78dac79a963950442c9bf8b5830d36c63b81bbb7b97620c0eee881bc.root': 6365L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_26_01e512e66ffc95dfd12f3fc1dcf717883aeee21528d0833e91c421a5.root': 9620L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_16_e7bd18fd7344160ee92394a39306eb466dbe5072a8268bc59f1ed7b8.root': 3245L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_RunIISummer16NanoAODv4-PUMorio9_201017_133422_0000_1_4a8f15a5d0b22963463a6607414d414c154289c1b33182c39b62ff8f.root': 5720L}, 'QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_25_c4368badc4daf5713b40c2433ded24fa0c34714e7d0c4bf1baa52991.root': 17970L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_3_bf89fe89d1ea21a18bf067da61a310558a076f43bad3ee568f7fd2fd.root': 31442L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_5_63600ca1210f5e668efddfec111b422a43db2a2cc895aa35cafda9c8.root': 34901L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_7_8153865d0412e7e6f0867ed0524137690864b3be693b327e9dc3e89f.root': 37468L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_1_ccf0b7cc494793cdb030f399670de5819891d62b53e2128fc7c11026.root': 30200L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_24_43504b72b7fa87683a733a1d98a3a4a50c951866e00af009e6113fd4.root': 17919L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_12_1002487dfec2b57232ab8da70473c14998770106df927ab66715f978.root': 3178L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_11_788a00101ead1e2b6eac13b2ae59cfa639c991ef8ccea5c9a54a4a66.root': 25768L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_13_a8fe6e53ccebde99f43115ae3d150837cb030096874fadded1e786a9.root': 28670L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_13_42d064e600a11663836a314ad7d39258b3b0c381f26ef068d556ab8f.root': 4153L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_18_054343c09315130bc55f009b461c8193dea0cbf1cfa42121bd9b1e0c.root': 9174L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_11_860e75e4251ecf0dacddc419f4ab7e6703679f9519d1b1e8d1a06617.root': 1559L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_3_ab918d33558c4517cb192f94044ad56ec3f84ad3148d2d57917775a9.root': 18507L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_22_619e374419cc22ccb63e97d09e4a545a612d78c12a2b7a41d5b4d1db.root': 15160L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_10_413c3bbe11a26dfa11cbb1c69bdd0eac475cf52eb0444dbf323ed80e.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_19_e05eb46a6b04472f8acadb7242da1c9832cc5f5d46f21b79ca8f0a37.root': 10916L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_16_853d9132146eade84956ff941eba0c51b1ab6ac6d71d20e83c0e6e8a.root': 7956L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_1_327a0f32a598d38b2100d210b79ec391026368f183ae19dad4eede3b.root': 11991L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_2_809a05de77b68ada965ca86967595e167a4b511d222c438ac508f725.root': 30468L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_17_a1a0d237c41cfc369cc944c584b34a43459d52746896bffa950de887.root': 8961L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_7_fb7bd803ccabb62a97aace0066bfda8e0b2aa1dd908bbfb6e35acfdc.root': 21244L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_9_724a64470569f242267a848db3ce450fbae6e4592994ac91bcc0bf47.root': 41018L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_12_ebbd8b9e206755b3ddc3afe28bd00288df1c9c1b5a4f0bcf3147f9b5.root': 27042L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_21_122508a6c4ecaf2ec559beeb1df94b0b39404bba868cc18e671e3188.root': 13732L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_23_8387dba763d06593e0440ec7596077b67d58c83f64c53681c8150e1a.root': 16243L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_6_8f37b9ee98509b29590e767448342828a0b11d2e0b96ee05d54531e1.root': 19742L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_9_f23f8dc4a350d427368bd3d715e1b2206de005c8dc8bab2cac1ebfcb.root': 23822L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_2_34a664691eb4665376a74258a0bb2a46c6572970c7c5aa54d3dc0abc.root': 18453L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_15_88e6c3c98c3f5a8847e830a803169e54c08c4904dc39a3458ad03ed8.root': 6873L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_10_78ba4c3b9ab3c0ac403d7d1badc51819af449ce0ddf65c624c13d808.root': 24891L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_5_a0d4a628544c3013fb3ac6696ef6da01cce689d85acacce16f087761.root': 19609L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_4_bd4e2de673047ac058504ae5cfa8a59701eb05d2353ea4cb1b441cfc.root': 33173L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_8_b77d6035ce5739ff8f505918c0bd50d93a4f32ed7fda2259ee6f348d.root': 39233L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_4_737472e64d7734f886878cbb548bc46f168477eb10116ecfd87b9435.root': 18974L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_14_8bf45bbad7e6ea6d223af0a934d134ce02be270cd0368bdbea5cf80a.root': 29253L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_20_25b805a75ebb47812f608b196ce0d5f669c9feb6165db5b64044885e.root': 12298L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195452_0000_6_1a912b49a527d02c6c849a52e536176e38a626b412ea82ac661e1241.root': 36550L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_14_32ce22eb3c7e9a6c3309bfcaa764b1fba08d587fca8f2cb6c9e44ed1.root': 5372L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195528_0000_8_6d522c20be2845799c751bb83e275328423f9bfd42cbc9188a76d9ab.root': 22285L}, 'ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_2_8e605f2d7931c86c29aa00e6ef7c3a1ab22ee25ccaabeea633350183.root': 10213L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_5_da32d1cddf3c421ad9b288181c8ef1280b638d61086a5ebc5869b87b.root': 33341L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_1_014220020e362bd0ff4187731b1e98affdba25824ac4b0aa4b781b4c.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_7_8a82f15c79fc40d4434f001b278c52a3f61e26af753010aea05bec85.root': 50782L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_3_6d7756240da785cd73162ef8d44fa4d4732d631d58b903f6a7bb56ea.root': 21741L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_6_56f7cd1ca949aeaa3f6b78a2065c5c7275779ce681121fb5af9bfb6d.root': 42406L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_4_e5f2437c5fca3cc793943491d294628e757d191b97a50f2ef1a4d90d.root': 24022L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1/tree__ext1-v1_190523_195834_0000_8_312f90fed942188af163aad143709da50e6299b471b2976bf7cb190c.root': 55112L}, 'WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212113_0000_5_9cb10619c0a963534709d75f0c28557b7d6d528557b526d8b05a76de.root': 33290L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212032_0000_1_65b849db80ee209901b9c9cf01d21216cb61e448154e4913260d7ad3.root': 338556L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212113_0000_7_edc72d7728a38cc9de938cef84f8aa1b787823072673a62baf23ef5a.root': 253286L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212113_0000_1_9a4de8edd97ebfad89b62b6deeb9243788e664a3fa8176ff8a93eff5.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212113_0000_6_3e8ed993d75402295b73130d213fd49e9fd8d1a4d0c367223cc25b67.root': 123556L}, 'WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212356_0000_1_90ffb0f57386e4b096febf370f8cc916a94182817d2c7c816bd4bf2e.root': 396588L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212436_0000_3_cd1a96d67cbe5ad6704c4fa869162dfe0a96312fc56a9c7cd94f55a5.root': 239301L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212436_0000_4_84ce3a5d63cc8ed1ee5c9f790c86ab0d36f4f39343869a19d0419805.root': 287236L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212436_0000_1_0e9e5da246edeaea8761e0a15c86c9d1c682e1a4bc958ccddb940506.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212436_0000_2_e01d71ff60c8fcec959997d7230aa9894aea7bbf45e548612e0296ce.root': 130150L}, 'ZJetsToNuNu_HT-1200To2500_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-1200To2500_13TeV-madgraph/tree__ext1-v1_190523_213617_0000_1_0b38f6dae265d36ab081e46754c61808b373e2f0a03d16f0455c28a3.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-1200To2500_13TeV-madgraph/tree_-v1_190523_213536_0000_1_63f63ad0bb269bd628c24ae47f5242d131c40d47e323bfe1190ec4b3.root': 51801L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-1200To2500_13TeV-madgraph/tree_-v1_190523_213536_0000_2_779962a3fb891837d8969fea9baa9c1051c7c8ec0b0df1fa16e166fd.root': 166000L}, 'ZJetsToNuNu_HT-100To200_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_7_6d3e8bad8bc294a7ccb31afe8d0fe4ef64ea05ce7f6790eb054e4021.root': 35351L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree_-v1_190523_213408_0000_1_804b8a8689af098c1d2210c54c6c047a3679f5a6f4f4295fb5261b7c.root': 43105L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_5_2c8cc4c5243102e6ca7acbe27e433f4acdb0876b9924de7bba13e91a.root': 28253L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_12_26015ef8aff0c32d6e2caea0d5df6fc7443b4956faa6847695ebdb7b.root': 9108L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_2_0bf68f3cbd730c14167a3346759382cd1106f8d1f4da01d2f1167b2c.root': 16428L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree_-v1_190523_213408_0000_4_cab4c0b3a6abe2cde677044cbcce5d566845bcf82226e7bb685b445c.root': 52084L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_11_3c054fb443778508a03be877b95d3fe6adf5ac68422fdaa2c3ad4983.root': 4361L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_8_3d19006ad3ee1247965a790beab12a41cc41a3f03feb7921cfb9d8a8.root': 40124L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree_-v1_190523_213408_0000_5_0d7c6abe3754b71b073a4b72bd180ec22095e5b225347878b080f99e.root': 54749L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_3_99726b62febf45c53ef007f44c2c761841bbd935e482019aabaed45f.root': 18538L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree_-v1_190523_213408_0000_3_7d5cd1c42c822fa2c11fe4251d6e286ba5f52ae886640a0a32d74e85.root': 48529L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree_-v1_190523_213408_0000_2_44b186babdb12597211c507469b8d8ebca55ce1560084fa89a17c0d2.root': 45622L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_1_5987421b9c3faa548d00e069200bd8023fa5f09ddc0cdb41cbc60182.root': 13810L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_9_8c143baf32d16ef41da309a644228c24fb8a862c07d1e8fa384230d9.root': 42818L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_4_f2f4b8f217a34df394f6b6dde9227db16bc6076f811028bdd2f9573e.root': 23320L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_6_f95bd5cd9abcb884356c32ea54cc926cc92c1b828956cf917981c4c2.root': 31077L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-100To200_13TeV-madgraph/tree__ext1-v1_190523_213448_0000_10_73f09f51eb6bca90c6a87c17c4c88181d301f4a8400f41dad7434bfe.root': 0}, 'ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_1_e4cc7a03f799620872ab87b0608a4606c740f777c4ef8ce2fd367699.root': 2916L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_2_edfedbf2edee77531fbb74eee8117660ffd9bbf1b362005cd1cea2ff.root': 3447L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_9_2945929d81b1cf11ff4175882415e850e98137e8855807c67aebec48.root': 7063L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_7_b8ab7e9997962301f9151250c2e2d9f17724ae50f10b02c00ce02eb0.root': 6015L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_12_3fbf475d83db08f836f405b52f319ecb81b4b2169a418a21d9dcecee.root': 974L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_14_44087b48de6928ce66610b1b22ee65351fa2e092595c6ac8af34a495.root': 1983L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_11_5adec9bbd4785442dcf8950e27658e218e40e0a5852e62296b2ead0e.root': 476L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_6_86b42d9613f70d73a9c15e4d182fd7cab49210f2e14e9b98bbe50b61.root': 5506L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_8_bd5a4e5b1e9307116a4e8e80c6ddff7c6182340ccdb4b7946a9c32ad.root': 6529L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_4_a537ab7193d122c20ea938e2b8bcfdeb13de0edf8414c1c772bdbec7.root': 4493L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_13_1dadcac7c0d7a47d39f8885b83d504b1d4da69af8bceca765f8fe8f1.root': 1477L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_10_31b0442013d874ef417066d82f0cce82bcde99bdde15a9a1ad4cc4c2.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_3_b253a0a8f4700151a3493333e789fea381eba1b4b337724465a59649.root': 3994L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_15_09a6f825f8202d27f78692080dfd017f16f767e2aebaddd53f0ceba6.root': 2488L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_80_190607_053612_0000_5_90c2c4d2f5a4a6bb400b55bfbb6f2959c3a5db935b0a5eef47737937.root': 4992L}, 'ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio11_200928_125250_0000_5_26ac9f7ef922941ffc65459f16b605abc1f31eb0eb53d55aa472e105.root': 259412L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio11_200928_125250_0000_4_a48d53bff95ce2e4c7f6ec7fc546f9cf539e8083c510a8d0dc0f331a.root': 138632L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio11_200928_125250_0000_1_36352a57b0d1ea29867ebc12404170dc0211592dccea740436e2af1e.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio11_200928_125250_0000_3_e4e23c42838adae6a5db89e81b416a3df7d8bf00ee14a5659f78f5a8.root': 74806L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio11_200928_125250_0000_6_2edb230049c5b4fe6d8134dcf39142ce4ea54efa88bbc4fd054de887.root': 380421L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio11_200928_125250_0000_2_111464fec6368a4f9d8f9159b63e54bd385c4b88bb1d6866faa850e3.root': 63255L}, 'ZJetsToNuNu_HT-200To400_13TeV-madgraph': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_1_0435bb76bed7ae6501f9a2e48b6529898462f12d0b1d036b7f405c0f.root': 1112802L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_9_3896283b464d806e59d89f5cbb3ffd2a47f129df43673b9d26bb152e.root': 1044450L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_5_770d80d75ea47d18b403b94a1f907a1f4995c78f6153d9b221300851.root': 766648L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_16_60baf19ed4bf76541635d5e7a481b402531a5ee5b600bf95a8d68b96.root': 392914L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_8_49e879ec13e7a05848438b25ddae05865a8a55c191757d91001fb318.root': 939305L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_11_c49bb93797b9dd484e7a75e20543a8aefa863a0b52643327a8ba3bee.root': 56204L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_3_be358bcf6659b6673afadf0562c75e18922e60a487e807a00806ac05.root': 1240821L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_3_a564bcac5b4014faabcb47a850993f6df085d78eb7649f0599d73132.root': 628525L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_1_cea0c143d23200ecaa8fa22d3ca513025a475e7ae8d1a87b3bfa4e1f.root': 447559L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_14_10b8b87976961ae60ce04a4bba4021bc3722a556a1f1fb48ae5e27e7.root': 287774L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_6_4e89e06c49e1f88e74327eb4f3df9a9574b4f8f2fe97ba23481da265.root': 1401005L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_7_eb0defe37e1c5df597ff2501c37e513797d8c0e30555d0bdcb9161cd.root': 884766L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_4_86b55da5f932b3f757d2da71eb85bcec800ef4d7419ff7813c14ea0a.root': 1301404L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_13_2004e9c540383402669faa23dad493225fd732acc1286ab2aaf207b6.root': 210453L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_15_fe0e99f5a5d324192ae3be67537f088130ef4bb2c0ec40bc5ec7a2a8.root': 346916L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_4_b70c6d4b5ac7d1892cd3cf25597855a331e903c9981b749df4586e0f.root': 691149L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_5_0ffece49ea51bb3814fe908e66f7bf87b8d66532443c090d25be72cc.root': 1348467L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_10_752c957db4c36ec7b1590e4e50c6e5dbe158f0ef6b5490c2130a28a5.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree_-v1_190523_213657_0000_2_1fb9a1359d634d35031542adee5657e6fe5753d875870f3a6e9031c0.root': 1135303L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_2_e50fd00c197f2ac98fcf734119a5d538d3fc205b3869a93cdc76f3ef.root': 552714L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_6_9d15a9d6fe3a65d37ee33a0e6c27d6a84c0f948777e7906c7bdf95d5.root': 831614L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_HT-200To400_13TeV-madgraph/tree__ext1-v1_190523_213745_0000_12_d7ed5c0a9c6bd894ef90114e5b66bc4011f72235bfce48935da9755b.root': 121262L}, 'ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_213246_0000_3_7c57ae2a25738ad7e7dcdd852c97305860fa0f37e1ff1ec392f1f87e.root': 29722L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_213246_0000_2_0ee1c25daf4e57056006de9262b2bed40f5dd35bff37a329beb99943.root': 6354L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_213246_0000_1_7604280dca0cdf5413412b221817a7398338a3c8eb9a086322bf6ad8.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_213246_0000_5_7430d32f81bd390941c36f5f08a0b780ae887d2a7830a49cdb730358.root': 90449L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_213246_0000_4_43469ab07499bab7fd2629f0e728db1bddaccf5a6740395af24c557d.root': 80857L}, 'QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_17_56481f3bdbfaea5517083fbf573c490e7607cd727fcb05207871ef5b.root': 10020L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_10_476a6ba5c85b354c8b166a686d94388b7496e6f5b0ec0699febcfdd2.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_25_72f58168f2d982f08860898c47a8495a756a2138694f593e0588cbce.root': 2809L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_28_e0ae0592c0ab6ecc1bd9d86bca5316c3fc230b159b3f3769f823e0cb.root': 3435L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_11_244782c3b32767378da69b722ab4957af4627f323bae3f7fc4051f6a.root': 8905L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_19_95eaa2e47a4dacdbbc0d44fb0bc5247ebe9eff5acaf40a3b11561015.root': 1508L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_5_605e808bc6bd7cea504073aa621cabcc5c44fbef5c72cc8292d6b94e.root': 11295L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_26_9a33ba985db2c733b3274e08e43b67fae1962b43bd445c1d1b6b8d75.root': 2984L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_14_702c1040afe9cae0cc11462482f052804e107086ef1c71c282c25db7.root': 689L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_15_bf7f11f7a32bed828ccbc9faf09023b20c32de43014aec2d590abcca.root': 9617L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_15_a95838869212694216540733316963597d5a6e2deb08f30573ccd4b2.root': 868L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_34_605f5b29d44ac7fc90435f5ab9bfa55006605fb22d0a611787739a41.root': 4932L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_29_6dc7281ee50bf6c82e77e4cd7670b16d6e07708247037548564142ea.root': 3644L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_1_08d1ab886982bef6dc63895703d5c08e3557c8b39ef52ebfedcdeb8e.root': 1698L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_7_d888d4045946e7f30ed713d05e69ffdd6024e0a70b8f548f624fa01d.root': 8214L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_48_8162c0b15687b18bb7d795576330defeb7704617f49da4a0b06301b2.root': 7518L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_13_7e35c3496488dbb19ffd173d54e34dca3ffc06ef0df03423221d6524.root': 9266L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_10_cdca0399e3b3a7638281f39ea2d94599fd532a7b7f605b30ebdf8854.root': 8654L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_3_7efa9174d99e9859578243d2c43befc2aa9a31ad0d3ea0ff0e7f5624.root': 10723L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_22_02bbb4e8d99063adc38a1bdb90087e6a2040ac1be7943078460d2db7.root': 2198L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_12_521d12ebf301b417a7d4395e93052c4b47d7e346b66d69d4bc59c0f7.root': 9196L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_9_5985395416e0576b0496bda69611a1a1d1b8bec27e15cd30383b9eef.root': 11948L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_42_2dbec05c9c99e9b2513a51f039875a0583b1b6506bde4f1c0832116e.root': 6564L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_45_8b9de30f4d19dd1307215bf88b28ab3a4da97c7ff72b36e1e51ca0d2.root': 6991L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_11_f51070ce55369627d3b297731e4633f2fb91fa793f89a93d94b4e8cd.root': 170L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_33_b3709bdc49412b86c2b26ef1b38c8b82d94360ba7dacd4450540e5d2.root': 4735L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_9_281c4e19db536d44f60a23512ac8f2c4d68288934685b45b1a782910.root': 8466L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_36_8fac23ef88e4a975970135376e51afb4d548dad0240994339ae99019.root': 5321L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_23_55adc6f8b886a0cac6563c98cde4e56472f9c03f8fee6f4554c7e5a3.root': 2409L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_31_890d11a7888e0f4d8c59bb2271c5849206370fbb1fc52534936b3a32.root': 4199L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_17_3b4bcfe3322be62724697c1851e20ee3c734c8ade055776211fe8e78.root': 1189L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_47_cde740f448b81c6e8a8cfe097d9cd046fa7cf28fa06c66bacbd54266.root': 7346L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_30_8086a790563f74fc2f7aa535de97400ddb017c394295fa3b3651f039.root': 4026L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_7_0d95186f8d2e50e124bcdf221738471ff04d480eac1b3382b02a205e.root': 11614L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_18_880635dc013dc746350d859d43fff07a98775384442bf0f6abb3549e.root': 1352L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_3_ce3f56964d21900985e06a85c72e5708aa0b21428365b9708a070a5f.root': 6080L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_5_30ca4922f2ff821f93a65777171d6bd9da7bafffb79dfed557c39dcf.root': 7880L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_8_323b6501ecfc8721e0b46f9287022b76cdeddd97676fba3b0f43d4ef.root': 11764L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_16_068705413dd5d25816e8bd310f67ce6b888c7bb74171cbad6f65a129.root': 9868L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_40_7f10bf5fd6e05fa98f5b955d7bad391bd8dec32afbc84053548e89c4.root': 6234L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_8_ac56a28bb528f6248f992725fd19386ad777efa807818834414be937.root': 8243L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_35_e0be799f3bc4e48245b54c8a4316ca4580f684eba6e39116a2d48b1e.root': 5195L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_2_e65a5c62912a278b96cb9911d55eaeb472ac1c8bc1ae47ebba3d83ee.root': 3826L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_4_4e91522d791bdd30257eb2f9c7a5ea01d1773e1891daa25fb1129a73.root': 7701L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_4_df995ade28282f1b3edecdaf6c4cebd0943d3cf45985d2d093610cfc.root': 10998L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_32_1ab3b6c7a988456129f2b17f52443a4b708e4e84818ea89bb7e38b3c.root': 4491L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_1_18ca6b45f3659cba744ae794d3e915c573e16a32d718231653c129eb.root': 10156L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_21_8eeb4f86deb34f5788a45614c09a7bb257e683bb6f32ebfcd644c7b3.root': 2031L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_6_56016cc5963f6724ca881328f487f5129e3bb234dfe8289900482b95.root': 8055L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_6_767b6fe3a8b66ce4e65dcd8d561b25269d338e89ff5a49c93002aba9.root': 11461L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_44_c68cbe125534050f09be8d794a7538d8701cd95571cae9b3fcf9b1c0.root': 6835L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_46_e59a30ef5079a648b7dc78ec47a9ca7bf59bae2669ccce4ad272e9f4.root': 7154L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_20_2008c8d0e3df08a825cc0e92bae9f0f8df6f2dc8fad50b52c7e0cf33.root': 1785L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_14_1ef80c222a3fcde83dc07d77f76aefb6a9327e8f077d27849b583ec4.root': 9420L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_41_68f078f19681773a6c317882dd1312e405d8e6305b8a5870381eb108.root': 6390L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_16_89f8c3016b3c1d9df82415a67d54edc47d18864751e00a892fffca0f.root': 1049L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_24_ad10de2f7bb18b57238b629cc25c665429ac7e62a783e3c546882b47.root': 2605L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_27_eb99f8e350b0ad2a6255c557eb16b62c0949fd2dc3b86ee4c35588d5.root': 3281L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_38_8c00113f05f063d0f9c3daacce387e2900986027e23cd9196b74424d.root': 5704L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_39_10821500b4ba46a2dfded07f45a8bcc6695803077c7e684c4a032ab0.root': 5869L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_43_ec2069f541c0d2b9490ebe60e82b32d85430821f36eba2ffdd7df710.root': 6665L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_13_012f5693f8d45e266d26e6c9168db532765359a79a574f403cac45dc.root': 506L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_37_db741c29e7d15549375346de076bad6413a539ff93bdbba989c4c501.root': 5537L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195339_0000_12_919f4ba14798e4f0bca235a35d097a45d144f8897c3c2c0bdefa699b.root': 303L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195304_0000_2_f5f6d040bc1feae27f4570ae8cc55e5ace874fc4365b19cd21eba52f.root': 10468L}, 'WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_3_3144f6e6c7078cae1f968ee2d441a30ce27b582c687a7508d10867e1.root': 12975L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_6_0581a3d60f7b514d4e6e47d79d871b84cacdfb38e41e7c3288d45a07.root': 33726L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_4_b2b81c1018ae9cb379b01d8d8414c1947cdb3f83901a51e3d217c1a3.root': 21089L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_1_e820002e64e96110820e9a5e5dcec25ff0397c5c51a39a8a5ae29241.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_5_dd1504647982f99862a293f2bdce42a558909e0ee5062f4c2faa78d6.root': 25531L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/tree_-v1_190523_200101_0000_2_2b1d1e955c80c8ef7ee3b2ce69afb9fe556cdc04e8bc8018b9872ac1.root': 2481L}, 'DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211219_0000_8_a354e4c83d562949f4a564dfc0b1b695717aec227f3ef169e551ee7c.root': 39L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211219_0000_7_27446e899540ecaa812f4b563a7990e9a88e4bcf57f5e751abb3b67d.root': 29L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211219_0000_6_881d58cceb163952264b21ca019a16c88c41bf082dd5b551a59bb899.root': 23L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211219_0000_3_240227654a49f8dbde6e6b14ff15d8389fd4b9134806ba7e9b0b8bab.root': 13L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211219_0000_9_0c2c9718189ee22e4f1e2e8de966cb97c6f39898a5d58e0e650269cb.root': 47L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211219_0000_5_2b557a991044c18ef34336a91185f78f153572fc663a816f3fdedf86.root': 20L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211219_0000_1_d05e0f3a913a44371b38334afb9f31ace9d5466773c5b5016e30404a.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211219_0000_2_40bb389f079d0f1db0ec08ae4df5e00fb1dd5100960b2e7b6cf20789.root': 2L}, 'DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio1_200928_124703_0000_1_600e6da12c8a4e0e05f4a4d4b91621f57896c83cc8fa89a9fa338b7d.root': 0}, 'ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_7_5914f81442fa99d0daa17c7767d0a4b79831c89750dc42d3388ae70e.root': 157563L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_15_9914a75df101afb5f8dc8aee763de12bca4b7823e0aa8f05e7329d1e.root': 66572L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_11_501db3f009bcc7605bee54e09f3af451ad6fea78becbaa84e529b78b.root': 13553L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_12_dd898ed5e8037f04c58add92dacebe1f086e3906c63623e095eb1f8f.root': 27170L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_8_cbd5c0bc9374ee91b57f73fc7f2d69b1c4b3b21dbeb1cacf572e8d74.root': 171381L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_1_bbdccef3b10222c4f047477c8f1754739ecd899c897fc1fdc87f3077.root': 76753L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_6_af138b99dde593b7854723d13b4d19b3fde8c0160c209c35cf1a96d0.root': 144470L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_9_401ef734d578a6cebb5dada6613ded20d353a4fde9c0d63b91b18ca6.root': 184735L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_10_49ccfda5b35d5476b2642330259949cf147664b07aa468d126c5ae68.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_4_cad24134cae9c2a18d35d0891c344ef2fb2c002e38e68ee5ea9670ae.root': 117448L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_3_a531bcfe7b5195c0b8f1347cffa6b084464936761caad988ba531747.root': 103834L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_5_50f28c4215b53c68b34cbe1dde84dd16d56032f3cdab5705adb151fa.root': 130960L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_13_bd3e42d469b5009ab2ffc0040d84383824301823029f62855758347f.root': 40739L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_14_4f8a29fe193398708d0966643fbdad0af91efdbb217dbdbed2f2513d.root': 54073L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ZH_HToBB_81_190607_053700_0000_2_4d6c3a436abdb9f6681a7c41fbf33aa406f5f272e896e00e40f9e8ac.root': 90361L}, 'ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB84_190607_053924_0000_4_bd29d2b3e4804ad79fa0899ba9a45bd75adff062bf952e8a31ccb53b.root': 22447L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_6_cd92fae854a7e7a99672866fe16413b372eef7e82cfcb790a09af03c.root': 9680L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_7_5b53d8c5383ccb79e60f284b17527b17cd1a4c2290e03d2243562db2.root': 11296L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_9_cdeff43aa0568dce44f1b9fa2ac4f1afbebd739f99e598a3f27b11dc.root': 14531L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_8_f1a528fa00b707e6c9ddc3f44576ef3418f8d5568429c3a919a59a47.root': 12902L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_1_bf3ca7b31b5ff5890f6d614e15a6da4a60154bd9456f1b2923ebf482.root': 1938L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_4_7e2268a5acb6a61252dc16e40c651d53001e07f52c49bee1d0104bf1.root': 6574L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB84_190607_053924_0000_1_97142654d0443e2e7395500ef43e101046da0d4d50a4ee34330b9844.root': 17692L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB84_190607_053924_0000_2_0d09e3b6755fc836c07ce0a74e4d8093e97c48503a2be6f37f99b9c8.root': 19304L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_5_91d5bb5d2eab21c0443bebf83f5499ec2d867c769f46ad07e54b540a.root': 8030L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_10_a1e58b1c85b8d48c76a72616526037c34409850153a7d26b4829a5e2.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB83_190607_053836_0000_1_fde76c4222bf3eeedb0df7a1028f21e8bc359ee10dfe9d1e56a8f47a.root': 15729L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_11_b52a23e740394f84b7aca34374de9ba5933e0dedbb0d2a8f1986a336.root': 1552L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_3_60f402a2b07436fff1183eeb96ecaec24a4cebfbf9bdda43298d166d.root': 5025L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB83_190607_053836_0000_2_6207aacff63bdd6ac498a7516200dd11efc6e66cfe527ea8714dbf9f.root': 17309L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB84_190607_053924_0000_3_d91b358726d1f4a5166f4d8103bdfc1e0bf28e91f6356f6d571a3c2c.root': 20830L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB82_190607_053748_0000_2_3be70669fea0dba791b24ba9d1fe5544202a582d5b5ac55753908e58.root': 3515L}, 'WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211550_0000_1_f52c167f3d00f9beff1c5fc20f9f56db5ef797d367d990e65da06fb4.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211550_0000_3_dcc49d27de3380aca76cba0c6bf48d6e50ac2eeb8553baade0ff512c.root': 4753L}, 'WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_7_2c2c5aff98800a68d38964a4f24859b7da67ec7e4c5ba351dfc86ccd.root': 174071L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_10_8f26d6b50690dd074f285e5a47e1fbe9469fa56d886320016251cb8d.root': 198829L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_2_b3145f9d2d021c3dcdd222c7d31479dbaddde0aa01a8ec6a46ab1bad.root': 376913L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_5_16eec05dedd68c8042d10d200665afd6fd216ddc437e4cc64fef9ce3.root': 153459L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212155_0000_3_0d9340aad777fb466beda178daa8b44fbadc6e8d5d4f42571dc11cc5.root': 516765L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_14_270ef89af77a18d8a5f8ceda4ea8e6be09bf9dd63ca2dd2970fd8940.root': 49540L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_6_da80136b7429e0d49702ad4ffe3d6e7a36d3aa49060ccdfe45155e0b.root': 425353L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_15_24bd6374079ac105691d71cd340f1a50062eeca1708119bccb2676b8.root': 270689L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_16_8b81f48d679270340ba9729cfd2e3b98042e5adc09161ecc7690d55f.root': 79200L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_11_661f70b825b6f9a2977aeb60dfbadc9aff7e92b6ba96b9e9e686990d.root': 12879L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_1_43ca926aa50d0198c5b7334662363040a18f3d8f5c16c7be9793945e.root': 352073L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_18_aa08f9d0c649f9200281a9930197961c80e6d8002942dd9d1c0a8001.root': 315907L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_16_bf23cc2d04cd09ee0a08b14841d34a1f2a50bedf7dc9152197d924a6.root': 288368L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212155_0000_4_27d0b35229d833737e9b9cfb51373a280b94907a15c6c5772d130faa.root': 524318L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_8_316840b63496bbaab9676aad262cff3c81e8c2d13ce8528767c4308a.root': 188132L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_4_7ba73ade347ed820fa5793f731020c8442785afd3d295ee9aa117079.root': 400008L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_10_f8900baa5cda41f496ab016c9137a882d842ccaa10a169b8fd8218f7.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212155_0000_5_6260dc5a694028b9fc237c8f4ba4255ce3008025e1f973dc722830ca.root': 545988L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_19_910bc035d291aa18f93a3f74af381dbbaf38c40496b0c65d29a2a822.root': 337032L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212155_0000_1_bbbcdcd855e8796d4b24e3ab5d66b2ebc69bdf72cd0f470de1242c5f.root': 479379L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_7_0f18c0b7edab548b34aea2e086afbe1213a7cd3e86281cb3287a66b9.root': 439725L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_8_66852fb5c8ed782f82fbf8e391cd01c5ef31a587c66e4e7b72ed369a.root': 452190L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_13_2c2119420bcc0d7a6947904c774189f84169419b45e98523da285c38.root': 256702L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_9_00e045a826e93cfb073bf5ca4ac1b5e6c3ee48c265a540f3de14c209.root': 467079L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_212155_0000_2_3df4e6cb99321f70a576af6fb0c07749ea0de5486b7665b35230a957.root': 492446L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_5_7a60ac6a107bfe9b1a0ae4cb779dae1009eda37e4d5d0d1bed0d9b7e.root': 412409L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_9_ff73a6a8eac714ebb398bf6519de1e3210b98b69548db65f9272047d.root': 188513L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_14_95faeef0aa39d0814e64062b82e4bb95656e933b9737a5cdfc2146f2.root': 257105L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_13_8a98325449963cdecb8a9d6cdb995b86a4740df5a1da4e60a9c20c17.root': 41283L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_6_e76436498e515bab4dc4a5784f277b09f2f440f241da4a89df83ab42.root': 167411L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_20_845afda933a9597f4ef2a5b2f9d74fdf401e61dd2786f5da1bd44499.root': 352420L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_4_d7f0c9e1bd5a1766cfc3d5d942a2a1463c5514b606683b134bcc93f4.root': 139487L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_1_fc4ee4742d517a60b7009a4111492ddc1da82db16970ca9767fb943e.root': 96180L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_3_c5273e4ccd7d3d199fe31ab66683b48e07dde9fffd43806fdf4bb7e3.root': 124808L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_15_318c04a36cc91e1d23df194687d8eec5edb5dcea3bbe5d852e003bb6.root': 64414L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_12_00c26677549f3f7f3116a4237995f1295da5ed04ac948fa96d7b032e.root': 26160L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_212235_0000_2_752a6a63b240a54472449b825355704e9de71848c8cc05bc7f41d4d6.root': 109367L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_11_d15ee91845a3b20d6a5f731abd4d0ed09640c5c8ff93d04d1a2bebc8.root': 211631L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_12_72b79763d4ce898f612f436428788790580f735a5e6c799c18adc440.root': 232470L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_3_f45ef064dd7b2f8f86919a297e9d0449dd6f0bf0b3d94acdb1ebdb0a.root': 387193L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_212317_0000_17_248f1fca1f317e57a9cc0a462d5bf97a51438fe081bc23956d8de00c.root': 300762L}, 'WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_36_4d6ab2b7c7dc5947c254e5af575270c8e9f84e9c366487c0524b0ec9.root': 8389L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_8_deb1484ba38b23f800ccb4d9376352229b87f0b08c67b909187cbeb5.root': 15359L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_1_1c08a244074dc05e8b233799ceca774a75b3d03b37481ff3997fcce3.root': 13375L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_31_3574dbedc0b64ecb6e8505eca3a6c4519ac263252d51955faac0de9d.root': 7008L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_19_4c65dbf8576d2096222ade9f52827fe313a4aaa163a4140b3e491191.root': 1949L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_20_3e3377cba271853f5837340c312dead9ada1c8ab912e5ab51084c8fa.root': 2737L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_13_1a7aaf03ae64261e994cb65716aa99d5e268284745d448a613f1b38a.root': 727L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_9_d131cf56e21fd99ace1036eb86007d6981a27fb13a85e26131f76f46.root': 10356L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_17_da9d6160d93258a19d050d5162e6127df8aff60d3415950d0dbcea4a.root': 1480L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_10_ffc0d91b5463f90b5e8f42fbcf81322cabc69d4d12c7adcac9481774.root': 10687L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_12_30fc66238b9629db6e7af09ecf9144e12ac5948eeb50333cb1d01743.root': 460L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_25_9e07f1f10d77757ba7997eba8bcdbbe959472da8bbb752468e270535.root': 4694L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_14_33e242879e0c08eda9a794ee3b74799d5ede98e6502b7a1a60f4e442.root': 760L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_10_0af07cb55ae98bf60b95cdb22a964c5d535e5df58b0bd26cb6b5e0d2.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_18_c5c211f071ea6173c306031f9cd6be409ff7d8f7b0afc92626050e2b.root': 12667L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_16_348cc5fbae55bbab1e2dc56562837a3e3a68bd5f8c6b9e728d0a290b.root': 1184L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_23_82ba02dedf5585200105657feac023c64d8a029dff800f044f387687.root': 3917L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_34_59dd3b51da5915e3678dad406bcbea6561ab1464f843f68728b98176.root': 7868L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_5_674a97ac6c514e1a37c3a0dc4dd2e57e68e5c03741f3e65e05485ee6.root': 9287L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_26_09fe39fcc8166cecf063a746c790003c2f3b3c8b5515e8cf6c655460.root': 5093L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_8_92db9fee0d1a4567128721684a163f43b5a5348dc5af529401fc1843.root': 10111L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_29_9f8a505a254731743e456b0936d2b0c43a0afbcd9316772500dd9481.root': 6166L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_7_5414e5555e3c9bc6cc729379c8b01b4ed1a95895f08e2bd668c01758.root': 15048L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_11_aff05db59fbf2558baf882204a764d679dd9bb31c4c744e54050c869.root': 10975L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_6_cf4e50a2c08496e1e814f3825d02851dceae8b359205ca83aef7e66f.root': 14618L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_3_53ac432d384ab206fdd726a4157d88bc0e0d8dbcc903d0f393b9484a.root': 8653L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_24_1860422e336cd345a8081a5bb3696cea983c6641dc23e0630dbc3f9e.root': 4299L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_9_db01e108ceca029cb4adfb2cb9ed11e62d6ea7592c5973fe1932bf49.root': 15655L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_11_c29f01aadff4aa84a610979f3425a5e6d9ba3a6e7eb78a4a9faab039.root': 256L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_17_e7d1ed63a6dd4ae57ef338fd3c7651aeca1faffe2c1be2ec9ee75390.root': 12419L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_14_dc45794608b0152a54d1eb52aa71c14f6f6598e7f42616a223bf500f.root': 11822L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_27_ec5990b45d45b40f696468028483e3407f44a962d0c265f7e25a99c5.root': 5494L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_16_e7802bc4be91ee1ad57df576df6645d72d2a301f6998a382d3dab8c9.root': 12331L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_7_f983a20112ee48be0a5777e7030fb8166e56222ac8480a851c3b5c65.root': 10102L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_12_544eb11d16fd27e965ab3939f6ee560adc3ddf5a62de053b7e88984e.root': 11340L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_1_49c962be49442003f331830071ccf1cc76ed1985fabafec0bedf5757.root': 2373L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_4_1ac02a011e997e50d33f39e05bc68fd6fdee7f2aee34f89eb5bcc883.root': 8986L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_30_a1a9b12c2f3463152a40d171f5c7f7f499f45bbfdf4cda26e274e66c.root': 6644L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_33_ef24f522da7dd147f94c08f3db0a44695bf2434af80ffc3a4cc9d306.root': 7764L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_15_cd904f4784a3b609752d64e889d569bf443f10ba093c6862b39bb4ac.root': 12114L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_5_bc241948f3c7d707cfdd7003bda0e47757f7f3728c208cc3b9b1aa03.root': 14255L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_20_5804b11c9cf9d9289b79465645a03551c153c92b05e5b8902ab50eb2.root': 13382L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_2_981685b98435c553452526dd9cb8db50e4228dadc529b66f45cd2902.root': 13399L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_6_bc6796553d685d329f22d25ca399b476e38c8fe1ef7cdc56fe1de926.root': 9647L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_15_9f9308074723013ab8481e74e4c729a42db94bdb7848c24398e72f83.root': 875L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_35_164ccb5c17dbee7ed2126670a98ddbb692ca4d3d3b2f60adb8898b7f.root': 8136L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_3_75416bb5bec7cdbbdbdf60a5861de29dcbc5b9bb129cad5561f75315.root': 13744L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_22_92ba8a3c2855854a3cdca7e1552824be6540ac6b928193545fae9c41.root': 3478L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_21_05ed3bdcea11f4f088c5a7f0790a6caa655c4f6f669f3453b64acc19.root': 3120L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_19_30626b7699ba155b19965009f98eac47d827f834f530a466d2e47ddb.root': 12922L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_28_02052eaddc14f5aa3a9652a3179d03ac39d9742ba10220e207f70974.root': 5788L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_13_4f57b18dd363077be66f3a6cf9ea8ba0466b168748ce204bc5a483fe.root': 11624L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_213125_0000_4_4b264ed05077d83cfe104263b32cd7b84544541e6f0f79f23fac9d37.root': 14027L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_2_a59b2d6dbc0515c2511a384e2d4f974b27a7b96a794229265f57024a.root': 6182L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_32_c21d491eff13bed8139cad12af66e7dc46730cfc205c7a9d8afd142f.root': 7479L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext2-v1_190523_213205_0000_18_cd53622ad5883dcdd91af4b17841cdefc3cb51ec829b12577f88938e.root': 1691L}, 'QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_8_f349bf044b69aafee33f883c39ea4de5cdf3ddcc107e217a2c58a37e.root': 9L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_30_148d01f52bbe9e1bbdb98ddc8822b7ef2df8159c8e6ba227fd4c8237.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_15_708817bbaf52fdc9f1a06414e5445973642d39ec9316aa842e424082.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_29_f7020c1b11a2cca43b9fa5a3385e5db814f83928974fc7b018c88861.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_27_6c18614b8dcebd0dba0ab4a5365aa6ee2e395722a28e9f1c5ef780d6.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_11_b3d38c829a87c799cfc8b788468dadbfb1b14f4512d510913323d5ea.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_3_b2fb0fbbb6d67a4d16027490f0bf98ea21d6bd552439758dbc125dc8.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_14_0412184d61b13da4d941e007454e851369b159f46b365a9d67af4329.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_24_93af7e3086c3f71cae4c3b59e33f35012e379dd5cd19cf4efe9acdac.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_22_555873da715567c375e9cf559e5e8b7d10383f202d987b993f6ad070.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_7_d596074ee238eee857328f336aef145d2079d6ac669f05bcf0848784.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_21_49b788fa3bece595ab957808dbfe21010aa5264b8dc627f0aeccf4c8.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_8_1bad0970f625841609fbeb3a0578053eea08bf3a0c3ccf865af1bca1.root': 11L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_16_e87bf763ba63f3817dfc84ba5e567178708926d248d6566fc039423e.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_34_d2599d4f11a84c0ca6e4100c1723190da6f5e078d22d094eca415595.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_25_6f7375c48487c777c40606090c5797dab0f74ab8dedd05feccee45e2.root': 3L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_10_8eab575882f79486217c951958e89ddc285bc0ccca83158b4b1c2744.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_14_2a4d626fa3f6ca47fc67852d08578281f2f5801cc908e64ca061d400.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_7_48902f084da259e72adac5079e9045e19a830ed20486293d294c8849.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_6_9c78f5611510faeadd79ba57202c64d91f58f1f4ba4482b28e5970fa.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_26_c3feb4f7ad1879c8159b2bbf3fa6792bff9b659dd29213588b47013d.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_10_5c599e3cf965c665bf81a417bbcebf799e21a02b0eec89cd0ddf4f42.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_20_ef5a4f03650d75387025af0c3eaf909cfb8df223d2a7d361a7aa3975.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_5_07934e48339455675401414dd946ef1988639eb3e779ae3dc2287476.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_33_0244e8708aa25234242b3c23fb42a5a5ca570166e50dfa31c4d565ea.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_1_399b1ac2357478aeca326859a410911cb198c09e935890968161703b.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_2_575f59a47e2ab527af22ae7bad47c951f5852943a963621f71b359c5.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_23_2f31e1da185cc69c5219917b67deba06c8c6d17ad53e51192c7f0288.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_2_c756197a7e36255a92c22b9cd0f68dc077822af8875d411f5edada4a.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_31_d0023c6fdca27197dcd68a8324e34adee4c27079b186140380130058.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_1_ecf8a65e1996e2b78401622ba2c2548b5ac78c50e89f6e81e10bd6a6.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_4_267bae5f3d55c1250d3c9fa5b5febc6ad944d13a208ea99e8c65f63c.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_28_e2661ce0d50fc330f5ef2deab045d6c04771475e2b8286a263e8d2ce.root': 4L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_15_6ce14a3d3e2b5a221a92f9f99d1b61586f13281829473d557da8ea13.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_12_fba3d26e155745a43664c73a79fddac84ecd6b1f3ba292c8cecb9eea.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_18_3c16ad06a07c048f3e9ee932209af59f35f2413b4835aa5f1241f729.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_3_da5ad961268d3ed283beb0b09982e770b4cdbdd169aafcd0e61fa297.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_12_0f286fef695d8f3b424d9113bf016528a679b182cc3b07a65a797a60.root': 1L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_11_f2661bc4d1bbe96d10f99c847e42c2761e37348e33e4765c02796778.root': 0L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_19_bf0644f8636b399ad13fada6476f4e275af65365906b922939945bf8.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_17_308b2e78d882c0ba66c21780e221a6a096182a244b5e352c26254708.root': 2L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_9_168c86b90e1eed4f168bd199477e0310355b6dbc745523df66cca1a8.root': 11L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_9_8defa3b14040a02a4f32bacb70bc6bfc42bb07701e982501cf88cbc6.root': 9L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_5_f5154dad0fdb8234be55d79d65bb9004077519c272c56bf5ccdcd661.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_195036_0000_13_d75e97f6f97f5f753bdd21c50439971acc67dba791caaed6639ba8ed.root': 10L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_4_1352d97436937a5be1eb8a54e27ea17e24ecac235fd0e8076c7f0b8d.root': 7L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_6_fbce6e1d9725450a0615d4014ce5927eff387007eb38ecd268cf22cc.root': 8L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_32_2254eb1125b4698b4ffe6a1159aef93cc2b5b48a97ed694b67c96a43.root': 6L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_195112_0000_13_dd0b920a533311e162483e388b1660c74b02d482381a44a275994b88.root': 1L}, 'ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_2_c7c038e6257b73dbf757562356e1285b581e95e2345a73c804ab4979.root': 334830L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_11_dbda9ce4d1748e47154aee8d1427e2a37367d887c483cf0b95f75495.root': 277321L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB86_190607_054105_0000_3_28108f6b0054346b60ac75a0bb858f27825e374fa137bc6370374681.root': 138805L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_8_dec67224732adfaef38677c1f706d83f671737998cdc6bc6ce2bfd3b.root': 611856L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_5_822cfc677efa66bf4da276dfce50227a1db347a84b630d16d70da0ec.root': 473318L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB86_190607_054105_0000_2_5ce035eef8b26f0b04c2cd9f842bfe1b44b6cc57bd1b659283b75415.root': 103888L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_4_b27146bd949193254e69623c86763ef3be1ee615c0456ba8ab571e1f.root': 427363L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB86_190607_054105_0000_4_bccf5ce0dea01557faef3b5d936adfb6d2ba35ae129752e97678ab5b.root': 184787L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB86_190607_054105_0000_1_4866f39f3db45fd02d376ceaca16511a3ea3130025b5956c668236cc.root': 57970L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_9_ddf7e09957ebca1333043315a2bcbe3975f45d03e58f00fc8ef9d3cd.root': 657711L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB85_190607_054014_0000_1_f26ebf1b022816fb88d0b43617f563bbd8d45d9e823be8a72f74b5ff.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_3_617b0af74e607fe48f6e71d2728a3254c08097cfab47377eb0365f55.root': 380822L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_1_6072d9b3310dd162d3bf2193102ac55e3fe26dcc5fddac6fae505b12.root': 288519L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB85_190607_054014_0000_2_aa0d04e48bfecab14fcdf936f618d4156e9acdb74f5fcc2788fe3cef.root': 46413L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_10_14d62ceb70ac2e2f477d432bfc1427be7666957e3c8652a0d74b4c8b.root': 230975L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_6_98810079fa4184bd3705e9808665e067d67a751e2cc0a136657fe4cf.root': 519875L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_adewit-crab_nano2016_ggZH_HToB87_190607_054153_0000_7_402cfcb5a71af52447a01db08d51259eebf9acc047aa42a3aa7fa71c.root': 565589L}, 'DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio2_200928_124738_0000_1_5c1799f8cc2ebda0c33d0b51ce680843dd4acaccb73c2503c13ddec9.root': 0}, 'DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio5_200928_124923_0000_2_61b7fa2fed2ce6e3a77017c958e0048b4b5244a02b8f04866b214ad4.root': 30L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio5_200928_124923_0000_1_69cae0d38fe5554f4ca176f597e57adbf3d89fceccd6106b3dbbebfb.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio6_200928_124955_0000_4_1e7286b58d0f07608dc1cf0255e0e0ad8ff0cf069f2fbec94a1a4e36.root': 1247L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio5_200928_124923_0000_3_f6daa219dec2514971a24d4d01414c500ef47a680bbc87476fb02fe7.root': 47L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio6_200928_124955_0000_3_8bc115058490be03ed62eb66e397117381567ec39efb1ea76902d362.root': 1135L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio6_200928_124955_0000_1_43987c1fbea455b05b10d8a507e34338efd6fedb2f1925d3faef35af.root': 576L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_RunIISummer16NanoAODv4-PUMorio6_200928_124955_0000_2_4dfc6ef8cb2f8796228efb9d6703706ae6fce77b6a3682ae6375d123.root': 615L}, 'WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8': {'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211629_0000_9_19bad066e1aade3f1b409422250ae840a03d8cd02487c9937f8e419c.root': 83212L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211629_0000_5_cbd6257261700db7ca2b48b2db8d7780cbbc74a643a50d5f412d04fe.root': 43656L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211629_0000_2_52fa09c7bd705ed48ea7dc133b4c129bc96f588d805b15b843be1048.root': 16832L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211629_0000_6_b69024b457e7d9dcdd371a8593e724ec1ab88e4b5db64a427500d19c.root': 44276L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211629_0000_7_f0f32a699636e3cca3d999c8f2a80556b6d65d651ac74f56f54f0986.root': 57009L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211712_0000_1_8ce2d0dc1b8c17e41545bd02312eb6a371063387c2d4d801487a38ed.root': 6075L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211629_0000_3_ea58719294b36cd1a91d0a92cdfafbb76a02526bf49b70e9559043a2.root': 18972L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211712_0000_11_0f6c8e17696a5283333b887610b3d8a68bac90850c694926f247f015.root': 3884L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211712_0000_2_47eb24d3fa6706bec57de391dc9d9a226d21a2465b140f098199abba.root': 7006L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211629_0000_8_6b6c6f5d9b19def36640496b6c831b2bc5f9d9ab18cfc5df998de0e1.root': 72715L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211712_0000_3_b3fd2371bafadc442754329f3d41c86b1c4615d69b83b79a5e02fcba.root': 11839L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211629_0000_10_9f5aa8889907f703d55b38239f56fb044555e3f09d41339a92ee17df.root': 12139L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree__ext1-v1_190523_211712_0000_10_f93ba2e8e7906e1c2890088c6a1e623e37ef3be0a36a63c3ed054d1b.root': 0, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211629_0000_4_98ed2632f3cc580a11a0c24a38275c79ce0555c42bd99d985ac2b650.root': 31105L, 'root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/prep_step2//WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/tree_-v1_190523_211629_0000_1_6b732c5cbd7cd31bdfa2a0862f742471b9838f5fc615f029df08ebb4.root': 15581L}} \ No newline at end of file diff --git a/python/Zvv2016config/general.ini b/python/Zvv2016config/general.ini index 2e437ee0c..f212da6b7 100644 --- a/python/Zvv2016config/general.ini +++ b/python/Zvv2016config/general.ini @@ -8,13 +8,19 @@ channel = Zvv TTdataset = MET [Prep] -# we do not need any specific Jet Smearing in 2016 -#VHbb = ['VHbbCommon.Clean', 'VHbbCommon.METXY', 'Prep.Selection', 'VHbbCommon.isData','VHbbCommon.isSignal','VHbbCommon.isWH','VHbbCommon.HeppyStyleGen','VHbbCommon.genBstatus','VHbbCommon.SampleGroup'] -VHbb = ['VHbbCommon.HeppyStyleGen'] +Step1 = ['VHbbCommon.Clean','VHbbCommon.JetSmearer','VHbbCommon.JECcorrelator','Prep.LeptonSelection'] +LeptonSelection = VHbbSelection.VHbbSelection(year="2016", channels=["Znn"], idWmn=None, idWen=None, skipJetSelection=True, vpt0lep=130.0, vpt1lep=110.0, vpt2lep=75.0,jetIdCut=2) + +Step2 = ['VHbbCommon.METXY','Prep.Selection', 'VHbbCommon.isData','VHbbCommon.isSignal','VHbbCommon.isWH','VHbbCommon.HeppyStyleGen','VHbbCommon.genBstatus','VHbbCommon.vLeptons'] Selection = VHbbSelection.VHbbSelection(year="2016", channels=["Znn"], jetIdCut=2) [Sys] -all = ['VHbbCommon.EWKweights', 'VHbbCommon.BTagSFDeepCSV', 'VHbbCommon.HiggsReco', 'VHbbCommon.isGGZH', 'VHbbCommon.vLeptons', 'Sys.newBranches', 'Sys.metTriggerSF', 'VHbbCommon.LOtoNLOweight', 'VHbbCommon.DYspecialWeight','VHbbCommon.JetPUIDSF'] + +all = ['VHbbCommon.SampleGroup','VHbbCommon.EWKweights', 'VHbbCommon.BTagSFDeepCSV', 'VHbbCommon.HiggsReco', 'VHbbCommon.isGGZH', 'Sys.newBranches', 'Sys.metTriggerSF', 'VHbbCommon.LOtoNLOweight', 'VHbbCommon.DYspecialWeight','VHbbCommon.JetPUIDSF','VHbbCommon.DoubleBtagSF'] + +#fix = ['VHbbCommon.HiggsReco'] + +boostedFlags = ['VHbbCommon.isBoosted','VHbbCommon.isBoostedVZ'] # add weights/scale factors # trigger SF computed from w_jets (different to ttbar in 2017/2018, nominal threshold: 110 OR 170) @@ -35,10 +41,10 @@ newBranches = BranchTools.TreeFormulas({ [Eval] #all = ['Eval.DNN', 'Eval.CRDNN', 'Eval.VV', 'Eval.VVCRDNN', 'Eval.weightAsBranch'] -all = ['Eval.DNN', 'Eval.CRDNN_med', 'Eval.CRDNN_high', 'Eval.weightAsBranch'] +all = ++['Eval.weightAsBranch']+ # DNNs -VH = ['Eval.DNN', 'Eval.CRDNN'] +VH = ['Eval.DNN', 'Eval.CRDNN_med', 'Eval.CRDNN_high'] DNN = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName='SR_medhigh_Znn') DNN_med_0j = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName='SR_med_Znn_0j') DNN_med_ge1j = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName='SR_med_Znn_ge1j') @@ -55,12 +61,15 @@ CRDNN_high = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName=' multiDNN = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName='Multi_medhigh_Znn') # VV -VV = ['Eval.VVDNN','Eval.VVCRDNN'] +VV = ['Eval.VVDNN','Eval.VVCRDNN_med','Eval.VVCRDNN_high'] VVDNN = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName='VV_SR_medhigh_Znn') -VVCRDNN = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName='VV_Zhf_medhigh_Znn') +VVCRDNN_med = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName='VV_Zhf_med_Znn') +VVCRDNN_high = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName='VV_Zhf_high_Znn') # boosted BDT -BDT_Znn_BOOSTFinal_wdB_2016 = tmvaEvaluator.tmvaEvaluator(mvaName='BDT_Znn_BOOSTFinal_wdB_2016',condition='Hbb_fjidx>-1') +BDT = ['Eval.BDT_Zvv_BOOSTFinal_wdB_2016', 'Eval.BDT_VZ_Zvv_BOOSTFinal_wdB_2016'] +BDT_Zvv_BOOSTFinal_wdB_2016 = tmvaEvaluator.tmvaEvaluator(mvaName='BDT_Zvv_BOOSTFinal_wdB_2016',condition='Hbb_fjidx>-1') +BDT_VZ_Zvv_BOOSTFinal_wdB_2016 = tmvaEvaluator.tmvaEvaluator(mvaName='BDT_VZ_Zvv_BOOSTFinal_wdB_2016',condition='Hbb_fjidx>-1') # mjj mjj = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName='Mjj_SR_medhigh_Znn') @@ -76,12 +85,12 @@ useSpecialWeight = True weightQCD = 1.0 weightEWK = EWKw[0] -weightNLO = weightLOtoNLO +weightNLO = weightLOtoNLO_2016 # inside FitCorr[0] weightTT = 1.0 weightPU = puWeight -#doubleBtagWeight = (1.0+*(-1.0+bTagWeightDoubleB)) +doubleBtagWeight = (1.0+*(-1.0+bTagWeightDoubleB)) bTagWeight = (1.0+*(-1.0+bTagWeightDeepCSV)) weight_mettrigSF = weight_mettrigSF #FitCorr = FitCorr[0] @@ -89,7 +98,7 @@ FitCorr = 1.0 weightJetPUID = weightJetPUID weightNaddJetsResidual = 1.0 -PrefireWeight = 1.0 +PrefireWeight = PrefireWeight # if useSpecialWeight is set to True, specialweight is evaluated on the fly when creating datacards/plots, if it is set to False, it is read from the tree stitchingWeights_False = DY_specialWeight @@ -98,13 +107,14 @@ stitchingWeights = !> additionalCorrection = 1.0 -weightF = genWeight * * * * * * * * * * +weightF = genWeight * * * * * * * * * * * * + +weight_noNLO = / +weight_noBTag = / +weight_noPU = genWeight * * * * * * * * * * * * +weight_noEWK = / +weight_noFitCorr = / -weight_noNLO = genWeight * * * * * * * * * * * * -weight_noBTag = genWeight * * * * * * * * * * * * -weight_noPU = genWeight * * * * * * * * * * * * -weight_noEWK = genWeight * * * * * * * * * * * * -weight_noFitCorr = genWeight * * * * * * * * * * * * CMS_vhbb_ttbar_nAddJets_UP = * CMS_vhbb_ttbar_nAddJets_DOWN = / diff --git a/python/Zvv2016config/hadd.ini b/python/Zvv2016config/hadd.ini index 9427666b5..0a27eea13 100644 --- a/python/Zvv2016config/hadd.ini +++ b/python/Zvv2016config/hadd.ini @@ -1,57 +1,70 @@ -# V11 +# V11 v2 [Hadd] -WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8: 7 -ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1: 5 -ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 -ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1: 6 -DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 17 -WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 21 -DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2 -ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 -ZZ_TuneCUETP8M1_13TeV-pythia8: 4 -WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8: 1 -DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 248 -ZJetsToNuNu_HT-400To600_13TeV-madgraph: 1 -ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1: 2 DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 12 -WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 -DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 190 -WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 -MET: 1 -ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8: 6 -QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 944000 -DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 17 -ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8: 12 -QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2 -ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph: 1 -ZJetsToNuNu_HT-200To400_13TeV-madgraph: 1 -WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8: 8 -WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 -ZJetsToNuNu_HT-800To1200_13TeV-madgraph: 1 DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 17 +DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 179 +DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 12 +DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 4 +DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2 +DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2246 DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2 +DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 230 +DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1536 +DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 64 +DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 10 +DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 4 +MET: 1 QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 5 -QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 -TT_TuneCUETP8M2T4_13TeV-powheg-pythia8: 2 -DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2 -QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2170 -ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8: 12 +QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 472000 +QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2 +QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2 +QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 65334 +QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2202 +QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 86 QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 15 +ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8: 6 +ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1: 6 +ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1: 5 +ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1: 2 ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1: 2 +TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8: 3 +WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2 +WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 3 +WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 20 WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2 WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 -ZJetsToNuNu_HT-1200To2500_13TeV-madgraph: 1 -ZJetsToNuNu_HT-100To200_13TeV-madgraph: 6 -WZ_TuneCUETP8M1_13TeV-pythia8: 7 -ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8: 32 -QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 52267 -ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 -QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 84 +WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2271 +WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 56 WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8: 3 -WW_TuneCUETP8M1_13TeV-pythia8: 9 +WWTo2L2Nu_13TeV-powheg: 10 +WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8: 1 +WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8: 22 +WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8: 8 +WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8: 7 +ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8: 32 ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8: 2 +ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +ZJetsToNuNu_HT-100To200_13TeV-madgraph: 5 +ZJetsToNuNu_HT-1200To2500_13TeV-madgraph: 1 +ZJetsToNuNu_HT-200To400_13TeV-madgraph: 1 +ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph: 1 +ZJetsToNuNu_HT-400To600_13TeV-madgraph: 1 ZJetsToNuNu_HT-600To800_13TeV-madgraph: 1 -WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2 -WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 65 -DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 4 +ZJetsToNuNu_HT-800To1200_13TeV-madgraph: 1 +ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8: 26 +ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8: 1 +ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8: 12 ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8: 1 diff --git a/python/Zvv2016config/hadd_V11.ini b/python/Zvv2016config/hadd_V11.ini new file mode 100644 index 000000000..9427666b5 --- /dev/null +++ b/python/Zvv2016config/hadd_V11.ini @@ -0,0 +1,57 @@ +# V11 +[Hadd] +WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8: 7 +ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1: 5 +ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1: 6 +DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 17 +WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 21 +DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2 +ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +ZZ_TuneCUETP8M1_13TeV-pythia8: 4 +WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8: 1 +DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 248 +ZJetsToNuNu_HT-400To600_13TeV-madgraph: 1 +ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1: 2 +DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 12 +WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 190 +WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +MET: 1 +ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8: 6 +QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 944000 +DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 17 +ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8: 12 +QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2 +ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph: 1 +ZJetsToNuNu_HT-200To400_13TeV-madgraph: 1 +WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8: 8 +WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +ZJetsToNuNu_HT-800To1200_13TeV-madgraph: 1 +DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2 +QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 5 +QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +TT_TuneCUETP8M2T4_13TeV-powheg-pythia8: 2 +DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2 +QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2170 +ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8: 12 +QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 15 +ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1: 2 +WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +ZJetsToNuNu_HT-1200To2500_13TeV-madgraph: 1 +ZJetsToNuNu_HT-100To200_13TeV-madgraph: 6 +WZ_TuneCUETP8M1_13TeV-pythia8: 7 +ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8: 32 +QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 52267 +ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 1 +QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 84 +WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8: 3 +WW_TuneCUETP8M1_13TeV-pythia8: 9 +ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8: 2 +ZJetsToNuNu_HT-600To800_13TeV-madgraph: 1 +WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 2 +WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 65 +DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8: 4 +ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8: 1 diff --git a/python/Zvv2016config/paths.ini b/python/Zvv2016config/paths.ini index c3b9cfb7a..a4f8868bf 100644 --- a/python/Zvv2016config/paths.ini +++ b/python/Zvv2016config/paths.ini @@ -1,7 +1,7 @@ [Configuration] #!! List of the config you want to use #!! The list only support spaces between configs -List = paths.ini ../VHbb2016commonconfig/general.ini general.ini ../Zvv2016config/cuts.ini ../VHbb2016commonconfig/samples_mc.ini ../VHbb2016commonconfig/systematics.ini ../VHbb2016commonconfig/stxs.ini data.ini datacards.ini plots.ini training.ini ../VHbb2016commonconfig/vhbbPlotDef.ini vhbbPlotDef.ini fit.ini hadd.ini volatile.ini +List = paths.ini ../VHbb2016commonconfig/general.ini general.ini ../Zvv2016config/cuts.ini ../VHbb2016commonconfig/samples_mc.ini ../VHbb2016commonconfig/systematics.ini ../VHbb2016commonconfig/stxs.ini data.ini datacards.ini plots.ini training.ini ../VHbb2016commonconfig/vhbbPlotDef.ini vhbbPlotDef.ini fit.ini hadd.ini volatile.ini ../VHbb2016commonconfig/EventCounts2016V11.ini # Xrootd config, first redirector is the primary one if multiple ones are given xrootdRedirectors = root://t3dcachedb03.psi.ch:1094/ @@ -26,37 +26,43 @@ scratch = /scratch// samplepath = # to use sample trees before hadding use: --set='Directories.samplefiles:=' -samplefiles_split = /src/Xbb/samples/VHbbPostNano2016_V11/ -samplefiles = /src/Xbb/samples/VHbbPostNano2016_V11/merged_Zvv2016/ +samplefiles_split = /src/Xbb/samples/VHbbPostNano2016_V11_v2/ +samplefiles = /src/Xbb/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ ;!! from which samples to plot and where to save the plots -;plottingSamples: -plottingSamples: +plottingSamples: ;after updating and adding all of the systematics -tmpSamples = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2016_V11/2020_05_14/cache-dc-withBDT/ +#tmpSamples = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/cacheplot-NoStitching/ +#tmpSamples = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2016_V11/2020_11_01/cachedc-fix/ +#tmpSamples = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2016_V11/2021_03_06/cachedc-OldStitching/ +tmpSamples = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2016_V11/2021_03_19/cachedc-VZ-NoStitiching/ #!! from which samples to make the DCs and where to save the DCs -dcSamples = +dcSamples = -TESTout = /work/creissel/test/ +PREPin = root://eoscms.cern.ch/ +PREP1out = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2016_V11/2020_10_19/prep_step1/ -#PREPin = root://eoscms.cern.ch/ -#PREPin = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2016_V11/2020_05_14/eval-v2/ -PREPin = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2016_V11/2020_05_14/prep-csplitting/ -PREPout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2016_V11/2020_05_14/prep-csplitting/ +PREP2in = +PREPout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2016_V11/2020_11_01/prep_step2/ HADDin = -HADDout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2016_V11/2020_05_14/hadd/ +HADDout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2016_V11/2020_11_01/hadd/ SYSin = -SYSout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2016_V11/2020_05_14/prep-csplitting/ -#SYSout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2016_V11/2020_05_14/sys-v2/ +SYSout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2016_V11/2020_11_01/sys/ -#MVAin = -#MVAin = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2016_V11/2020_05_14/eval/ -#MVAin = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2016_V11/2020_05_14/eval-v2/ -#MVAin = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2016_V11/2020_05_14/prep-csplitting/ -MVAin = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2016_V11/2020_05_14/eval-csplitting/ -MVAout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2016_V11/2020_05_14/eval-csplitting-withBDT/ +#FIXin = +#FIXout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2016_V11/2020_10_20/fix/ +BOOSTin = +BOOSTout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2016_V11/2020_11_01/sys_boostedFlags/ + +MVAin = +MVAout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2016_V11/2020_11_01/eval/ + +BOOST2in = +BOOST2out = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2016_V11/2020_11_01/eval_boostedVZ/ + +TESTout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2016_V11/2020_11_01/test/ diff --git a/python/Zvv2016config/plots.ini b/python/Zvv2016config/plots.ini index c1f77a858..b43b2f297 100644 --- a/python/Zvv2016config/plots.ini +++ b/python/Zvv2016config/plots.ini @@ -4,10 +4,10 @@ #ZZLF = 'ZZ_0b' #ZZHF = 'ZZ_1b', 'ZZ_2b' -VVLF = ,, -VVHF = ,, +#VVLF = ,, +#VVHF = ,, -VV = , +#VV = , [Plot_general] @@ -58,9 +58,10 @@ var_Boost: Vpt,FatMass,FatPt,tau21,tau32,DoubleB,NaddJetsBoost,HVdPhiBoost,dRMMa # reduced list -#var = DNN,CRDNN_high,CRDNN_med_0j,CRDNN_med_ge1j -#var = -var = BDT +#var = count,Hj0_DeepCSV,Hj1_DeepCSV,Hj0_pt_reg,Hj1_pt_reg,Hmass,Hpt,MET,METphi,DNN,CRDNN_high,CRDNN_med,BDT,DeepAK8_bbVSlight,FatJet_mSD,FatJet_Pt,METphi_uncorrected +#var = Vpt +#var = ,count,MET,METphi +var = VV_DNN # ------------------------------------------------------------------------------------------------------------------------------------------------------ # data @@ -83,12 +84,11 @@ allBKGwithQCD = ,,,,] # diboson analysis -VVSIG = 'WZTo1L1Nu2Qnlo_2b','ZZ_2b' -VVBKG = 'WWTo1L1Nu2Qnlo_0b','WWTo1L1Nu2Qnlo_1b','WWTo1L1Nu2Qnlo_2b','WZTo1L1Nu2Qnlo_0b','WZTo1L1Nu2Qnlo_1b','ZZ_0b','ZZ_1b',,,,,, - +VVSIG = , +VVBKG = ,,,,,,,,, # The ordering of sample groups in the plots. -setup = ZH,WH,ggZH,QCD,VVLF,VVHF,ZJets_0b,ZJets_1b,ZJets_2b,WJets_0b,WJets_1b,WJets_2b,TT,ST +setup = ZH,WH,ggZH,QCD,VVLF,VVHF,ZJets_0b,ZJets_0b_udsg,ZJets_0b_c,ZJets_1b,ZJets_2b,WJets_0b,WJets_0b_udsg,WJets_0b_c,WJets_1b,WJets_2b,TT,ST setupLog = setup_VV = VVHF,VVLF,ZH,WH,ggZH,QCD,ZJets_0b,ZJets_1b,ZJets_2b,WJets_0b,WJets_1b,WJets_2b,TT,ST @@ -108,8 +108,11 @@ controlSample = {"HighPt_Signal": 0,"HighPt_TT":1,"HighPt_Zlight":2,"HighPt_Zbb" addOverFlow = False # List of regions to be submitted in case of batch submission +#List = SR_med_Znn_ge1j, SR_med_Znn_0j,SR_high_Znn #List = -List = SR_high_Znn_BOOST +List = +#List = +#List = SR_high_Znn_BOOST #List = SR_med_Znn_ge1j, SR_med_Znn_0j, SR_high_Znn, Zhf_med_Znn, Zhf_med_Znn_0j, Zhf_med_Znn_ge1j #List = SR_med_Znn_ge1j, SR_med_Znn_0j, SR_high_Znn, Zhf_med_Znn, Zhf_high_Znn, SR_medhigh_Znn @@ -119,7 +122,7 @@ ListBoosted = SR_high_Znn_BOOST,ttbar_high_Znn_BOOST,Zlf_high_Znn_BOOST,Zhf_hig ListTraining = SR_medhigh_Znn, Zhf_med_Znn_0j, Zhf_med_Znn_ge1j, Zhf_high_Znn List_Mjj = Mjj_0,Mjj_1,Mjj_2,Mjj_3 List_Multi = Multi_medhigh_Znn - +ListDNN = VV_SR_med_Znn,VV_SR_high_Znn,VV_SR_high1_Znn,VV_SR_high2_Znn # Possibility to add an additional blinding cut for data. #addBlindingCut = diff --git a/python/Zvv2016config/training.ini b/python/Zvv2016config/training.ini index cc226366d..db06e07db 100644 --- a/python/Zvv2016config/training.ini +++ b/python/Zvv2016config/training.ini @@ -55,9 +55,10 @@ backgrounds = [] treeCut = SR_medhigh_Znn treeVarSet = ZvvBDTVarsWP branchName = DNN_ -checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/tfZllDNN/Zvv2016_SR_medhigh_Znn_200617_V11-Dec9.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/1.000e+00/rnd_376122/checkpoints/model.ckpt +checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/final_results/Zvv2016_SR_medhigh_Znn_201109_V11-Dec9.h5/Zvv2016_SR_medhigh_Znn_201109_V11-Dec9.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/1.000e+00/rnd_331781/checkpoints/model.ckpt signalIndex = 0 -bins = [0.0000, 0.0694, 0.1216, 0.1800, 0.2472, 0.3228, 0.4090, 0.5034, 0.6257, 0.7295, 0.8094, 0.8678, 0.9094, 0.9379, 0.9619, 1.0000] +#bins = [0.0000, 0.0694, 0.1216, 0.1800, 0.2472, 0.3228, 0.4090, 0.5034, 0.6257, 0.7295, 0.8094, 0.8678, 0.9094, 0.9379, 0.9619, 1.0000] +#bins = [0.00000, 0.24630, 0.36113, 0.45685, 0.55247, 0.64412, 0.71719, 0.77420, 0.82131, 0.85734, 0.88552, 0.90958, 0.92970, 0.94758, 0.96452, 1.00001] [Zhf_medhigh_Znn] signals = [] @@ -77,7 +78,7 @@ treeCut = Zhf_med_Znn_0j treeVarSet = ZvvBDTVarsWP classes = branchName = CRDNN_med_ -checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/tfZllDNN/Zvv2016_Zhf_med_Znn_0j_200617_V11-Dec9.h5/512-256-128-64-64-64/0.30-0.50-0.50-0.50-0.50-0.50/5.000e-04/rnd_377264/checkpoints/model.ckpt +checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/final_results/Zvv2016_Zhf_med_Znn_201109_V11-Dec9.h5/Zvv2016_Zhf_med_Znn_201109_V11-Dec9.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/1.000e+00/rnd_331783/checkpoints/model.ckpt bins = [0, 1, 2, 3, 4, 5] [Zhf_med_Znn_ge1j] @@ -88,7 +89,7 @@ treeCut = Zhf_med_Znn_ge1j treeVarSet = ZvvBDTVarsWP classes = branchName = CRDNN_med_ -checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/tfZllDNN/Zvv2016_Zhf_med_Znn_ge1j_200617_V11-Dec9.h5/512-256-128-64-64-64/0.30-0.50-0.50-0.50-0.50-0.50/5.000e-04/rnd_377256/checkpoints/model.ckpt +checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/final_results/Zvv2016_Zhf_med_Znn_201109_V11-Dec9.h5/Zvv2016_Zhf_med_Znn_201109_V11-Dec9.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/1.000e+00/rnd_331783/model.ckpt bins = [0, 1, 2, 3, 4, 5] [SR_med_Znn] @@ -104,7 +105,7 @@ data = treeVarSet = ZvvBDTVarsWP classes = branchName = CRDNN_med_ -checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/tfZllDNN/Zvv2016_Zhf_med_Znn_200715_V11-Dec9.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/1.000e+00/rnd_906868/checkpoints/model.ckpt +checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/final_results/Zvv2016_Zhf_med_Znn_201109_V11-Dec9.h5/Zvv2016_Zhf_med_Znn_201109_V11-Dec9.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/1.000e+00/rnd_331783/checkpoints/model.ckpt bins = [0, 1, 2, 3, 4, 5] [SR_high_Znn] @@ -121,7 +122,7 @@ treeCut = Zhf_high_Znn treeVarSet = ZvvBDTVarsWP classes = branchName = CRDNN_high_ -checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/tfZllDNN/Zvv2016_Zhf_high_Znn_200715_V11-Dec9.h5/512-256-128-64-64-64/0.50-0.50-0.50-0.50-0.50-0.50/5.000e-04/rnd_906869/checkpoints/model.ckpt +checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/final_results/Zvv2016_Zhf_high_Znn_201109_V11-Dec9/Zvv2016_Zhf_high_Znn_201109_V11-Dec9.h5/512-256-128-64-64-64/0.50-0.50-0.50-0.50-0.50-0.50/5.000e-04/rnd_331784/checkpoints/model.ckpt bins = [0, 1, 2, 3, 4, 5] [BDT_Zvv_BOOSTFinal_wdB] @@ -137,10 +138,10 @@ treeCut = Signal_BOOSTv3 signals = [] backgrounds = [] treeVarSet = ZvvBDTVarsWP -branchName = DNN_ -checkpoint = DNN/ +branchName = VV_DNN_ +checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/final_results/Zvv2016_VV_SR_medhigh_Znn_201109_V11-Dec9.h5/Zvv2016_VV_SR_medhigh_Znn_201109_V11-Dec9.h5/512-256-128-64-64-64/0.50-0.50-0.50-0.50-0.50-0.50/1.000e+00/rnd_331782/checkpoints/model.ckpt signalIndex = 0 -bins = +#bins = [VV_Zhf_medhigh_Znn] signals = [] @@ -160,7 +161,10 @@ signals = [] backgrounds = [] data = treeVarSet = ZvvBDTVarsWP +branchName = VV_CRDNN_med_ classes = +checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/final_results/Zvv2016_VV_Zhf_med_Znn_201109_V11-Dec9.h5/Zvv2016_VV_Zhf_med_Znn_201109_V11-Dec9.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/1.000e+00/rnd_331785/checkpoints/model.ckpt +bins = [0, 1, 2, 3, 4, 5] [VV_SR_high_Znn] signals = [] @@ -174,6 +178,9 @@ backgrounds = [] data = treeVarSet = ZvvBDTVarsWP classes = +branchName = VV_CRDNN_high_ +checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/final_results/Zvv2016_VV_Zhf_high_Znn_201109_V11-Dec9.h5/Zvv2016_VV_Zhf_high_Znn_201109_V11-Dec9.h5/512-256-128-64-64-64/0.50-0.50-0.50-0.50-0.50-0.50/5.000e-04/rnd_331786/checkpoints/model.ckpt +bins = [0, 1, 2, 3, 4, 5] # Multi @@ -196,7 +203,7 @@ List_for_submitscript = #List = Zhf_med_Znn_0j, Zhf_med_Znn_ge1j, Zhf_high_Znn, Zhf_medhigh_Znn, SR_medhigh_Znn #List_VZ = VV_Zhf_med_Znn, VV_Zhf_high_Znn, VV_SR_medhigh_Znn -List = Zhf_med_Znn, Zhf_high_Znn +List = Zhf_med_Znn, Zhf_high_Znn, SR_medhigh_Znn, VV_Zhf_med_Znn, VV_Zhf_high_Znn, VV_SR_medhigh_Znn List_Boosted = BDT_Zvv_BOOSTFinal_wdB List_Multi = Multi_medhigh_Znn @@ -208,14 +215,22 @@ List_Multi = Multi_medhigh_Znn [ZvvBDTBOOSTVarsFinal_wdB] Nominal = MET_Pt FatJet_Msoftdrop[Hbb_fjidx] FatJet_Pt[Hbb_fjidx] FatJet_eta[Hbb_fjidx] (FatJet_deepTagMD_bbvsLight[Hbb_fjidx])>0.97 (-99+(hJidx[0]>-1)*(99+H_mass)) (-99+(hJidx[0]>-1)*(99+H_pt)) -99+(hJidx[0]>-1)*(99+abs(TVector2::Phi_mpi_pi(H_phi-MET_Phi))) abs(TVector2::Phi_mpi_pi(V_phi-FatJet_phi[Hbb_fjidx])) -99.0+MaxIf$(99.0+Jet_Pt,(hJidx[0]>-1)&&Jet_Pt>30&&abs(Jet_eta)<2.4&&(Jet_puId>6||Jet_Pt>50)&&Jet_jetId>2&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) -99.0+MinIf$(99.0+abs(TVector2::Phi_mpi_pi(Jet_phi-MET_Phi)),(hJidx[0]>-1)&&Jet_Pt>30&&abs(Jet_eta)<2.4&&(Jet_puId>6||Jet_Pt>50)&&Jet_jetId>2&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) -99+(hJidx[0]>-1)*(99+Sum$(Jet_Pt>30&&abs(Jet_eta)<2.4&&(Jet_puId>6||Jet_Pt>50)&&Jet_jetId>2&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1])) -99+(hJidx[0]>-1)*(99+hJets_FSRrecovered_dEta) -99+(hJidx[0]>-1)*(99+hJets_FSRrecovered_dPhi) -99+(hJidx[0]>-1)*(99+max(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered)) -99+(hJidx[0]>-1)*(99+min(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered)) -[BDT_Znn_BOOSTFinal_wdB_2016] +[BDT_Zvv_BOOSTFinal_wdB_2016] MVAtype = MVAsettings = NTrees=100:nCuts=20 -#signals = [] -#backgrounds = [] signals = [] backgrounds = [] treeVarSet = ZvvBDTBOOSTVarsFinal_wdB -treeCut = Signal_BOOSTv3_removeOverlap +treeCut = Signal_BOOSTv3 +systematics = +#bins = [-1.00000, -0.24307, -0.10320, 0.00213, 0.09253, 0.16787, 0.22800, 0.28227, 0.33160, 0.37747, 0.42853, 0.47787, 0.52907, 0.58040, 0.63907, 1.0000] +#bins = [-1.00000, -0.29816, -0.15084, -0.02918, 0.06886, 0.16080, 0.24018, 0.31282, 0.39690, 0.51764, 1.00001] + +[BDT_VZ_Zvv_BOOSTFinal_wdB_2016] +MVAtype = +MVAsettings = NTrees=100:nCuts=20 +signals = [] +backgrounds = [] +treeVarSet = ZvvBDTBOOSTVarsFinal_wdB +treeCut = VZ_Signal_BOOSTv3 systematics = -bins = [-1.00000, -0.24307, -0.10320, 0.00213, 0.09253, 0.16787, 0.22800, 0.28227, 0.33160, 0.37747, 0.42853, 0.47787, 0.52907, 0.58040, 0.63907, 1.0000] diff --git a/python/Zvv2016config/vhbbPlotDef.ini b/python/Zvv2016config/vhbbPlotDef.ini index fb5ffc36e..4a12e4474 100644 --- a/python/Zvv2016config/vhbbPlotDef.ini +++ b/python/Zvv2016config/vhbbPlotDef.ini @@ -81,32 +81,43 @@ plotEqualSize = True [plotDef:DNN] relPath = .Nominal xAxis = DNN (final binning) -nBins = 15 +#nBins = 15 min = 0.0 max = 1.0 log = True -binList = +#binList = plotEqualSize = True visualizeBlindCutThreshold = 0.6 +rebinMethod = flats(5,15) -[plotDef:VVDNN] +[plotDef:VV_DNN] relPath = .Nominal xAxis = VZ DNN (final binning) nBins = 15 min = 0.0 max = 1.0 log = True -binList = +#binList = +rebinMethod = flats(5,15) plotEqualSize = True visualizeBlindCutThreshold = 0.6 [plotDef:BDT] -relPath = BDT_Znn_BOOSTFinal_wdB_2016.Nominal +relPath = BDT_Zvv_BOOSTFinal_wdB_2016.Nominal xAxis = boosted BDT (optimized binning) min = -1 max = 1 #nBins = 15000 -binList = [-1.00000, -0.24307, -0.10320, 0.00213, 0.09253, 0.16787, 0.22800, 0.28227, 0.33160, 0.37747, 0.42853, 0.47787, 0.52907, 0.58040, 0.63907, 1.0000] +#binList = [-1.00000, -0.24307, -0.10320, 0.00213, 0.09253, 0.16787, 0.22800, 0.28227, 0.33160, 0.37747, 0.42853, 0.47787, 0.52907, 0.58040, 0.63907, 1.0000] plotEqualSize = True -#rebinMethod = flatsignal +rebinMethod = flats(5,15) +[plotDef:VV_BDT] +relPath = BDT_VZ_Zvv_BOOSTFinal_wdB_2016.Nominal +xAxis = VZ boosted BDT (optimized binning) +min = -1 +max = 1 +#nBins = 15000 +#binList = [-1.00000, -0.24307, -0.10320, 0.00213, 0.09253, 0.16787, 0.22800, 0.28227, 0.33160, 0.37747, 0.42853, 0.47787, 0.52907, 0.58040, 0.63907, 1.0000] +plotEqualSize = True +rebinMethod = flats(5,15) diff --git a/python/Zvv2017config/SRbinning_MVA_Zvv.txt b/python/Zvv2017config/SRbinning_MVA_Zvv.txt new file mode 100644 index 000000000..412c6254d --- /dev/null +++ b/python/Zvv2017config/SRbinning_MVA_Zvv.txt @@ -0,0 +1,17 @@ +[dc:SR_medhigh_Znn] +rebin_list=[0.00000, 0.23935, 0.35125, 0.44988, 0.53141, 0.60630, 0.67235, 0.72595, 0.77107, 0.80987, 0.84417, 0.87437, 0.90169, 0.92579, 0.94983, 1.00001] + +[dc:SR_med_Znn_0j] +rebin_list=[0.00000, 0.30756, 0.42515, 0.50854, 0.57078, 0.63382, 0.68670, 0.73247, 0.77350, 0.81024, 0.84248, 0.87080, 0.89632, 0.91794, 0.93845, 1.00001] + +[dc:SR_med_Znn_ge1j] +rebin_list=[0.00000, 0.12501, 0.18150, 0.23276, 0.28496, 0.33520, 0.38871, 0.44857, 0.51172, 0.57806, 0.64404, 0.70589, 0.75871, 0.80528, 0.85262, 1.00001] + +[dc:SR_high_Znn] +rebin_list=[0.00000, 0.32822, 0.46525, 0.57331, 0.66793, 0.73075, 0.77756, 0.81474, 0.84746, 0.87410, 0.89679, 0.91693, 0.93642, 0.95368, 0.96919, 1.00001] + +[dc:SR_high1_Znn] +rebin_list=[0.00000, 0.31121, 0.44136, 0.54998, 0.64253, 0.71181, 0.76147, 0.79962, 0.83295, 0.86035, 0.88532, 0.90759, 0.92713, 0.94624, 0.96334, 1.00001] + +[dc:SR_high2_Znn] +rebin_list=[0.00000, 0.75241, 0.88440, 0.93715, 0.96945, 1.00001] diff --git a/python/Zvv2017config/cuts.ini b/python/Zvv2017config/cuts.ini index f4339d6c7..fdecf06d0 100755 --- a/python/Zvv2017config/cuts.ini +++ b/python/Zvv2017config/cuts.ini @@ -52,13 +52,16 @@ Zrw = ( && isZnn && > 170.0 && min(MHT_ ; Z+HF Zhf_base = ( && > && < 0.5 && < 2) +#Zhf_base = ( && > && < 0.5 && < 2) Zhf = ( && ( < 90 || > 150)) VV_Zhf = ( && ( < 60 || > 120)) # -------------------------------------------------------------------------------------------------- # SIGNAL region # -------------------------------------------------------------------------------------------------- -SR_base = ( && > && < 0.5 && < 2) +#SR_base = ( && > && < 0.5 && < 2) +#SR_base = ( && > && < 0.5 && < 2 && overlapEvent) +SR_base = ( && > && < 0.5 && < 2 ) SR = ( && ( > 90 && < 150)) VV_SR = ( && ( > 60 && < 120)) @@ -208,6 +211,7 @@ BasicCuts_BOOST2= (FatJet_Pt[Hbb_fjidx]>250 && abs(FatJet_eta[Hbb_fjidx])<2.5 && NaddbJets_boosted=Sum$(VHbb::deltaR(FatJet_eta[Hbb_fjidx],FatJet_phi[Hbb_fjidx],Jet_eta,Jet_phi)> 0.8 && > && Jet_lepFilter>0 && Jet_PtReg>25 && fabs(Jet_eta)<2.5) Signal_BOOSTv3 = ( && > 90 && < 150 && == 0 && ==0 && FatJet_deepTagMD_bbvsLight[Hbb_fjidx]>0.8) +#Signal_BOOSTv3 = ( && > 90 && < 150 && == 0 && ==0 && FatJet_deepTagMD_bbvsLight[Hbb_fjidx]>0.8 && overlapEvent) Signal_BOOSTv3_1 = ( && > 90 && < 150 && == 0 && ==0 && FatJet_deepTagMD_bbvsLight[Hbb_fjidx]>0.8) Signal_BOOSTv3_2 = ( && > 90 && < 150 && == 0 && ==0 && FatJet_deepTagMD_bbvsLight[Hbb_fjidx]>0.8) diff --git a/python/Zvv2017config/datacards.ini b/python/Zvv2017config/datacards.ini index 2e91350b9..6eb993672 100644 --- a/python/Zvv2017config/datacards.ini +++ b/python/Zvv2017config/datacards.ini @@ -51,19 +51,19 @@ weightF_sys = [ ; 'TEST_vhbb_BtagMjj_TM_120_130', ; 'TEST_vhbb_BtagMjj_TM_130_140', ; 'TEST_vhbb_BtagMjj_TM_140_150', - 'CMS_vhbb_VjetsBenriched_ZBJets_2017_13TeV', - 'CMS_vhbb_VjetsBenriched_ZJetsBGenFilter_2017_13TeV', - 'CMS_vhbb_VjetsBenriched_ZBJets_RW_2017_13TeV', - 'CMS_vhbb_VjetsBenriched_ZJetsBGenFilter_RW_2017_13TeV', - 'CMS_vhbb_Vjets_ZBJets_RW_2017_13TeV', - 'CMS_vhbb_Vjets_ZJetsBGenFilter_RW_2017_13TeV', - 'CMS_vhbb_VjetsBenriched_WBJets_2017_13TeV', - 'CMS_vhbb_VjetsBenriched_WJetsBGenFilter_2017_13TeV', - 'CMS_vhbb_VjetsBenriched_WBJets_RW_2017_13TeV', - 'CMS_vhbb_VjetsBenriched_WJetsBGenFilter_RW_2017_13TeV', - 'CMS_vhbb_Vjets_WBJets_RW_2017_13TeV', - 'CMS_vhbb_Vjets_WJetsBGenFilter_RW_2017_13TeV', - 'CMS_vhbb_Vjets_minJetPt', +; 'CMS_vhbb_VjetsBenriched_ZBJets_2017_13TeV', +; 'CMS_vhbb_VjetsBenriched_ZJetsBGenFilter_2017_13TeV', +; 'CMS_vhbb_VjetsBenriched_ZBJets_RW_2017_13TeV', +; 'CMS_vhbb_VjetsBenriched_ZJetsBGenFilter_RW_2017_13TeV', +; 'CMS_vhbb_Vjets_ZBJets_RW_2017_13TeV', +; 'CMS_vhbb_Vjets_ZJetsBGenFilter_RW_2017_13TeV', +; 'CMS_vhbb_VjetsBenriched_WBJets_2017_13TeV', +; 'CMS_vhbb_VjetsBenriched_WJetsBGenFilter_2017_13TeV', +; 'CMS_vhbb_VjetsBenriched_WBJets_RW_2017_13TeV', +; 'CMS_vhbb_VjetsBenriched_WJetsBGenFilter_RW_2017_13TeV', +; 'CMS_vhbb_Vjets_WBJets_RW_2017_13TeV', +; 'CMS_vhbb_Vjets_WJetsBGenFilter_RW_2017_13TeV', +; 'CMS_vhbb_Vjets_minJetPt', ;2017 run era weight 'CMS_vhbb_Vpt150_13TeV', 'CMS_vhbb_Vpt250_13TeV', @@ -72,34 +72,34 @@ weightF_sys = [ 'CMS_vhbb_runEra2017D', 'CMS_vhbb_runEra2017E', 'CMS_vhbb_runEra2017F', - 'CMS_vhbb_DeepCSV_TT', - 'CMS_vhbb_DeepCSV_TM', - 'CMS_vhbb_DeepCSV_TL', - 'CMS_vhbb_DeepCSV_MM', - 'CMS_vhbb_DeepCSV_ML', - 'CMS_vhbb_DeepCSV_LL', +; 'CMS_vhbb_DeepCSV_TT', +; 'CMS_vhbb_DeepCSV_TM', +; 'CMS_vhbb_DeepCSV_TL', +; 'CMS_vhbb_DeepCSV_MM', +; 'CMS_vhbb_DeepCSV_ML', +; 'CMS_vhbb_DeepCSV_LL', ; DEFAULT shape uncertainties ;top pt reweighting ; 'CMS_vhbb_topptreweighting_13TeV', ; LO to NLO weight -; 'CMS_vhbb_vjetnlodetajjrw_13TeV', + 'CMS_vhbb_vjetnlodetajjrw_13TeV', ; 2017 version - 'CMS_vhbb_vjetnlovptrw_13TeV', - 'CMS_vhbb_vjetnlovptrw_ZJets0_13TeV', - 'CMS_vhbb_vjetnlovptrw_ZJets1_13TeV', - 'CMS_vhbb_vjetnlovptrw_ZJets2_13TeV', - 'CMS_vhbb_vjetnlovptrw_WJets0_13TeV', - 'CMS_vhbb_vjetnlovptrw_WJets1_13TeV', - 'CMS_vhbb_vjetnlovptrw_WJets2_13TeV', - 'CMS_vhbb_vjetnlovptrw_DYJets0_13TeV', - 'CMS_vhbb_vjetnlovptrw_DYJets1_13TeV', - 'CMS_vhbb_vjetnlovptrw_DYJets2_13TeV', - 'CMS_vhbb_vjetnlovptrw_ZBJets1_13TeV', - 'CMS_vhbb_vjetnlovptrw_ZBJets2_13TeV', - 'CMS_vhbb_vjetnlovptrw_WBJets1_13TeV', - 'CMS_vhbb_vjetnlovptrw_WBJets2_13TeV', - 'CMS_vhbb_vjetnlovptrw_DYBJets1_13TeV', - 'CMS_vhbb_vjetnlovptrw_DYBJets2_13TeV', +; 'CMS_vhbb_vjetnlovptrw_13TeV', +; 'CMS_vhbb_vjetnlovptrw_ZJets0_13TeV', +; 'CMS_vhbb_vjetnlovptrw_ZJets1_13TeV', +; 'CMS_vhbb_vjetnlovptrw_ZJets2_13TeV', +; 'CMS_vhbb_vjetnlovptrw_WJets0_13TeV', +; 'CMS_vhbb_vjetnlovptrw_WJets1_13TeV', +; 'CMS_vhbb_vjetnlovptrw_WJets2_13TeV', +; 'CMS_vhbb_vjetnlovptrw_DYJets0_13TeV', +; 'CMS_vhbb_vjetnlovptrw_DYJets1_13TeV', +; 'CMS_vhbb_vjetnlovptrw_DYJets2_13TeV', +; 'CMS_vhbb_vjetnlovptrw_ZBJets1_13TeV', +; 'CMS_vhbb_vjetnlovptrw_ZBJets2_13TeV', +; 'CMS_vhbb_vjetnlovptrw_WBJets1_13TeV', +; 'CMS_vhbb_vjetnlovptrw_WBJets2_13TeV', +; 'CMS_vhbb_vjetnlovptrw_DYBJets1_13TeV', +; 'CMS_vhbb_vjetnlovptrw_DYBJets2_13TeV', ; 'CMS_vhbb_vjetnlovptrw_p0_13TeV', ; 'CMS_vhbb_vjetnlovptrw_p1_13TeV', ; 'CMS_vhbb_vjetnlovptrw_naddjet0_p0_13TeV', @@ -366,13 +366,15 @@ removeWeightSystematics = {'Zee': ['CMS_vhbb_eff_m_13TeV', 'CMS_vhbb_eff_m_trigg ptRegionsDict = {'HighPt': ['Znn_13TeV_Signal','Znn_13TeV_Zlight','Znn_13TeV_Zbb','Znn_13TeV_TT']} # datacard CR+SR -;List = , +;List = , +List = ;List = -List = , -ListVZ = VV_SR_med_Znn_0j,VV_Zhf_med_Znn,Zlf_med_Znn,ttbar_med_Znn,VV_SR_med_Znn_ge1j,VV_SR_high1_Znn,VV_SR_high2_Znn,VV_Zhf_high_Znn,Zlf_high_Znn,ttbar_high_Znn,VV_SR_high1_Znn_BOOST,VV_SR_high2_Znn_BOOST,Zlf_high_Znn_BOOST,VV_Zhf_high_Znn_BOOST,ttbar_high_Znn_BOOST +;List = +ListVZ = VV_SR_med_Znn_0j,VV_Zhf_med_Znn,VV_Zlf_med_Znn,VV_ttbar_med_Znn,VV_SR_med_Znn_ge1j,VV_SR_high1_Znn,VV_SR_high2_Znn,VV_Zhf_high_Znn,VV_Zlf_high_Znn,VV_ttbar_high_Znn,VV_SR_high1_Znn_BOOST,VV_SR_high2_Znn_BOOST,VV_Zlf_high_Znn_BOOST,VV_Zhf_high_Znn_BOOST,VV_ttbar_high_Znn_BOOST ListVH_resolved = SR_med_Znn_0j,Zhf_med_Znn,Zlf_med_Znn,ttbar_med_Znn,SR_med_Znn_ge1j,SR_high1_Znn,SR_high2_Znn,Zhf_high_Znn,Zlf_high_Znn,ttbar_high_Znn +;ListVH_resolved = SR_med_Znn_0j,SR_med_Znn_ge1j,SR_high1_Znn,SR_high2_Znn ListVH_boosted= SR_high1_Znn_BOOST,SR_high2_Znn_BOOST,Zlf_high_Znn_BOOST,Zhf_high_Znn_BOOST,ttbar_high_Znn_BOOST @@ -395,6 +397,8 @@ Backgrounds = VV_Signals = VV_Backgrounds = +DNN_trafo = (TMath::Sqrt(.Nominal)+TMath::Power((.Nominal),12))/2. + #------------------------------------------------- # standard RESOLVED analysis #------------------------------------------------- @@ -421,12 +425,6 @@ background = data = type = cr - - - - - - [dc:Zlf_med_Znn_0j] var = V_pt range = 10,150.0,250.0 @@ -435,7 +433,6 @@ background = data = type = cr - [dc:Zlf_med_Znn_ge1j] var = V_pt range = 10,150.0,250.0 @@ -493,10 +490,6 @@ data = !> data_MET = data_SingleLepton = - - - - [dc:ttbar_med_Znn_0j] var = V_pt range = 10,150.0,250.0 @@ -528,23 +521,27 @@ type = BDT [dc:SR_med_Znn_0j] rebin_method = list -#rebin_list = -rebin_list = [0.00000, 0.29529, 0.40167, 0.48041, 0.55046, 0.61851, 0.67545, 0.72464, 0.76820, 0.80733, 0.83923, 0.86891, 0.89582, 0.91832, 0.93939, 1.00001] +rebin_list = +#rebin_list = [0.00000, 0.29529, 0.40167, 0.48041, 0.55046, 0.61851, 0.67545, 0.72464, 0.76820, 0.80733, 0.83923, 0.86891, 0.89582, 0.91832, 0.93939, 1.00001] var = .Nominal +#var = signal = background = data = type = BDT +#range = 15,0.0,1.0 [dc:SR_med_Znn_ge1j] rebin_method = list -#rebin_list = -rebin_list = [0.00000, 0.11898, 0.17571, 0.22821, 0.28018, 0.32849, 0.38627, 0.44798, 0.51525, 0.58118, 0.64564, 0.70672, 0.76160, 0.81004, 0.85710, 1.00001] -var = .Nominal +rebin_list = +#rebin_list = [0.00000, 0.11898, 0.17571, 0.22821, 0.28018, 0.32849, 0.38627, 0.44798, 0.51525, 0.58118, 0.64564, 0.70672, 0.76160, 0.81004, 0.85710, 1.00001] +var = .Nominal +#var = signal = background = data = type = BDT +#range = 15,0.0,1.0 [dc:Zlf_high_Znn] var = V_pt @@ -568,8 +565,6 @@ background = data = type = cr - - [dc:Zhf_high_Znn] rebin_method = list rebin_list = @@ -614,18 +609,17 @@ data = !> data_MET = data_SingleLepton = - - - [dc:SR_high_Znn] rebin_method = list -#rebin_list = -rebin_list = [0.00000, 0.34687, 0.47643, 0.57743, 0.66732, 0.73099, 0.78084, 0.81997, 0.85288, 0.87994, 0.90328, 0.92192, 0.93882, 0.95472, 0.96916, 1.00001] +rebin_list = +#rebin_list = [0.00000, 0.34687, 0.47643, 0.57743, 0.66732, 0.73099, 0.78084, 0.81997, 0.85288, 0.87994, 0.90328, 0.92192, 0.93882, 0.95472, 0.96916, 1.00001] var = .Nominal +#var = signal = background = data = type = BDT +#range = 15,0.0,1.0 [dc:VV_SR_high1_Znn] @@ -655,22 +649,23 @@ type = BDT rebin_method = list rebin_list = [0.00000, 0.30570, 0.42892, 0.53649, 0.63162, 0.70592, 0.76030, 0.80141, 0.83834, 0.86759, 0.89261, 0.91329, 0.93294, 0.95167, 0.96703, 1.00001] var = .Nominal +#var = signal = background = data = type = BDT +#range = 15,0.0,1.0 [dc:SR_high2_Znn] rebin_method = list rebin_list = [0.00000, 0.76679, 0.89362, 0.94416, 0.97188, 1.00001] - var = .Nominal +#var = signal = background = data = type = BDT - - +#range = 15,0.0,1.0 [dc:Zlf_medhigh_Znn] var = 1 diff --git a/python/Zvv2017config/general.ini b/python/Zvv2017config/general.ini index f3ee4be30..863d4dd0a 100644 --- a/python/Zvv2017config/general.ini +++ b/python/Zvv2017config/general.ini @@ -33,12 +33,14 @@ submitScriptSpecialOptions = {'sysnew': ' -l h_vmem=6g '} [Prep] Step1 = ['VHbbCommon.Clean','VHbbCommon.JetSmearer','VHbbCommon.JECcorrelator','Prep.LeptonSelection'] -LeptonSelection = VHbbSelection.VHbbSelection(year="2017", channels=["Znn"], idWmn=None, idWen=None, skipJetSelection=True, vpt0lep=130.0, vpt1lep=110.0, vpt2lep=75.0) +#LeptonSelection = VHbbSelection.VHbbSelection(year="2017", channels=["Znn"], idWmn=None, idWen=None, skipJetSelection=True, vpt0lep=130.0, vpt1lep=110.0, vpt2lep=75.0) +LeptonSelection = VHbbSelection.VHbbSelection(year="2017", channels=["Znn"], idWmn=None, idWen=None, skipJetSelection=True, vpt0lep=130.0, vpt1lep=110.0, vpt2lep=75.0,jetIdCut=1) Step2 = ['VHbbCommon.METXY','Prep.Selection', 'VHbbCommon.isData','VHbbCommon.isSignal','VHbbCommon.isWH','VHbbCommon.HeppyStyleGen','VHbbCommon.genBstatus','VHbbCommon.vLeptons'] VHbb = ['VHbbCommon.Clean','VHbbCommon.mSD_sys_2017','VHbbCommon.JetSmearer','VHbbCommon.METXY','Prep.Selection', 'VHbbCommon.isData','VHbbCommon.isSignal','VHbbCommon.isWH','VHbbCommon.HeppyStyleGen','VHbbCommon.genBstatus','VHbbCommon.vLeptons'] -Selection = VHbbSelection.VHbbSelection(year="2017", channels=["Znn"]) +#Selection = VHbbSelection.VHbbSelection(year="2017", channels=["Znn"]) +Selection = VHbbSelection.VHbbSelection(year="2017", channels=["Znn"],jetIdCut=1) [Sys] all = ['VHbbCommon.SampleGroup','VHbbCommon.EWKweights', 'VHbbCommon.BTagSF', 'VHbbCommon.HiggsReco', 'VHbbCommon.isGGZH', 'Sys.newBranches', 'Sys.metTriggerSF', 'Sys.fill1','Sys.fill2','Sys.fill3','VHbbCommon.LOtoNLOweightV7', 'VHbbCommon.TTweights', 'VHbbCommon.DYspecialWeight','VHbbCommon.JetPUIDSF','VHbbCommon.runEraWeights','VHbbCommon.DoubleBtagSF'] @@ -71,8 +73,9 @@ aJidx = aJidx.aJidx() [Eval] -all = + - +#all = + + +all = +#all = # DNNs VH = DNN = tensorflowEvaluator_fromCheckpoint.tensorflowEvaluator(mvaName='SR_medhigh_Znn',condition='hJidx[0]>-1&&hJidx[1]>-1') @@ -112,6 +115,9 @@ BOOSTED = ['Eval.BDT_Zvv_BOOSTFinal_wdB','Eval.BDT_VZ_Zvv_BOOSTFi BDT_Zvv_BOOSTFinal_wdB = tmvaEvaluator.tmvaEvaluator(mvaName='BDT_Zvv_BOOSTFinal_wdB',condition='Hbb_fjidx>-1') BDT_VZ_Zvv_BOOSTFinal_wdB = tmvaEvaluator.tmvaEvaluator(mvaName='BDT_VZ_Zvv_BOOSTFinal_wdB',condition='Hbb_fjidx>-1') +RESOLVED_BDT = ['Eval.BDT_SR_medhigh_Znn'] +BDT_SR_medhigh_Znn = tmvaEvaluator.tmvaEvaluator(mvaName='SR_medhigh_Znn') + # VZ BOOSTED VZ_BOOSTED = ['Eval.BDT_VZ_Zvv_BOOSTFinal_wdB'] BDT_VZ_Zvv_BOOSTFinal_wdB = tmvaEvaluator.tmvaEvaluator(mvaName='BDT_VZ_Zvv_BOOSTFinal_wdB',condition='Hbb_fjidx>-1') @@ -133,7 +139,10 @@ useSpecialWeight = True weightQCD = 1.0 weightEWK = EWKw[0] -weightNLO = weightLOtoNLO_LHEVptV7 +#weightNLO = weightLOtoNLO_LHEVptV7 +weightNLO = weightLOtoNLO +#weightNLO = 1.0 +#weightNLO = weightLOtoNLO*weightLOtoNLO_LHEVptV7*weightLOtoNLO_LHEVptV7_Up*weightLOtoNLO_LHEVptV7_Down weightTT = 1.0 weightPU = puWeight doubleBtagWeight = (1.0+*(-1.0+bTagWeightDoubleB)) @@ -158,6 +167,7 @@ runEraWeight = (1.0/(+++ * * * * * * * * * * * * +#weightF = genWeight * * * * * * * * * * * * * * overlapEvent_MCWeight weight_noNLO = / diff --git a/python/Zvv2017config/hadd.ini b/python/Zvv2017config/hadd.ini index f363051bb..d956343e0 100644 --- a/python/Zvv2017config/hadd.ini +++ b/python/Zvv2017config/hadd.ini @@ -71,3 +71,46 @@ ZZTo4L_13TeV_powheg_pythia8: 21 ZZ_TuneCP5_13TeV-pythia8: 4 ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8: 3 ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8: 1 +DY1JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8: 27 +DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8: 8 +DY1JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8: 1 +DY1JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8: 458 +DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8: 8096 +DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8: 6 +DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8: 6 +DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8: 3 +DY2JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8: 116 +DY2JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8: 364 +DY3JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8: 52 +DY4JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8: 52 +DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8: 99 +W1JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8: 3200 +W1JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8: 20 +W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8: 2 +W1JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8: 1 +W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8: 2 +W1JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8: 197 +W1JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8: 126 +W2JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8: 1298 +W2JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8: 4 +W2JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8: 1 +W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8: 1 +W2JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8: 1 +W2JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8: 15 +W2JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8: 22 +W3JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8: 5 +W4JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8: 2 +Z1JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8: 1 +Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8: 1 +Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8: 1 +Z1JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8: 37 +Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8: 1 +Z2JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8: 1 +Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8: 1 +Z2JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8: 2 +DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8: 27035 +DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8: 199 +DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8: 23 +WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8: 22223 +WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8: 61 +WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8: 4 diff --git a/python/Zvv2017config/paths.ini b/python/Zvv2017config/paths.ini index a3f023c26..d035442dd 100644 --- a/python/Zvv2017config/paths.ini +++ b/python/Zvv2017config/paths.ini @@ -2,7 +2,7 @@ #!! List of the config you want to use #!! The list only support spaces between configs #List = paths.ini userpaths.ini ../VHbb2017commonconfig/general.ini general.ini cuts.ini ../VHbb2017commonconfig/samples_mc.ini ../VHbb2017commonconfig/systematics.ini ../VHbb2017commonconfig/stxs.ini data.ini datacards.ini plots.ini training.ini ../VHbb2017commonconfig/vhbbPlotDef.ini vhbbPlotDef.ini fit.ini hadd.ini volatile.ini -List = paths.ini ../VHbb2017commonconfig/general.ini general.ini cuts.ini ../VHbb2017commonconfig/samples_mc.ini ../VHbb2017commonconfig/systematics.ini ../VHbb2017commonconfig/stxs.ini data.ini datacards.ini plots.ini training.ini ../VHbb2017commonconfig/vhbbPlotDef.ini vhbbPlotDef.ini fit.ini hadd.ini volatile.ini +List = paths.ini ../VHbb2017commonconfig/general.ini general.ini cuts.ini ../VHbb2017commonconfig/samples_mc.ini ../VHbb2017commonconfig/systematics.ini ../VHbb2017commonconfig/stxs.ini data.ini datacards.ini plots.ini training.ini ../VHbb2017commonconfig/vhbbPlotDef.ini vhbbPlotDef.ini fit.ini hadd.ini volatile.ini SRbinning_MVA_Zvv.txt # Xrootd config, first redirector is the primary one if multiple ones are given xrootdRedirectors = root://t3dcachedb03.psi.ch:1094/ @@ -27,24 +27,42 @@ scratch = /scratch// samplepath = # to use sample trees before hadding use: --set='Directories.samplefiles:=' -samplefiles_split = /mnt/t3nfs01/data01/shome/berger_p2/VHbb/CMSSW_10_1_0/src/Xbb/samples/VHbbPostNano2017_V11/merged_Zvv2017/ -samplefiles = /mnt/t3nfs01/data01/shome/berger_p2/VHbb/CMSSW_10_1_0/src/Xbb/samples/VHbbPostNano2017_V11/merged_Zvv2017/ +samplefiles_split = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/samples/VHbbPostNano2017_V11 +#samplefiles = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/samples/VHbbPostNano2017_V11/merged_Zvv2017/ +samplefiles = /work/acalandr/VHbb_Xbb_production_Oct2020/2017_Christina_Xbb_LOtoNLO_DEtaBBreweight/CMSSW_10_1_0/src/Xbb/samples/VHbbPostNano2017_V11/merged_Zvv2017/ ;!! from which samples to plot and where to save the plots -trainingSamples = +trainingSamples = plottingSamples = dcSamples = # defined in userpaths.ini -tmpSamples = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/acalandr/VHbb/Zvv/VHbbPostNano2017_V11/tmp/v36/ -PREPin = -PREPout = -HADDin = -HADDout = -SYSin = -SYSout = +#tmpSamples = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2017_V11/tmp/2022_01_26/training/ +tmpSamples = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2017_V11/tmp/2022_01_30/cachedc/ + +PREPin = root://eoscms.cern.ch/ +PREPout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2017_V11/2021_05_20-v2/prep_step1/ +PREP2out = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2017_V11/2021_05_20-v2/prep_step2/ + +HADDin = +HADDout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2017_V11/2021_05_20-v2/hadd/ + +SYSin = +SYSout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2017_V11/2021_05_20-v2/syst/ + +BOOSTin = +#BOOSTout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2017_V11/2021_05_20-v2/boost/ +BOOSTout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user/acalandr/VHbb/Zvv/VHbbPostNano2017_V11/jetIDfix/boost/ + #MVAin = root://t3dcachedb03.psi.ch:1094///pnfs/psi.ch/cms/trivcat/store/user/berger_p2/VHbb/Zvv/VHbbPostNano2017_V11/Oct2020v1/eval_boosted/ -MVAin = root://t3dcachedb03.psi.ch:1094///pnfs/psi.ch/cms/trivcat/store/user/acalandr/VHbb/Zvv/VHbbPostNano2017_V11/Oct2020v1/v2/ -MVAout = root://t3dcachedb03.psi.ch:1094///pnfs/psi.ch/cms/trivcat/store/user/acalandr/VHbb/Zvv/VHbbPostNano2017_V11/Oct2020v1/v3/ +#MVAout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2017_V11/2021_05_20-v2/eval/ +#MVAout_v3 = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2017_V11/2021_10_12/eval/LOtoNLO-v2/ +#MVAout_v4 = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2017_V11/2021_11_23/eval_withBDT/ +#MVAout_v6 = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2017_V11/2021_12_08/HIG18016_DNNs/ + +MVAout = root://t3dcachedb03.psi.ch:1094//pnfs/psi.ch/cms/trivcat/store/user//VHbb/Zvv/VHbbPostNano2017_V11/2022_01_22/eval/ + +MVAPIRMINout = root://t3dcachedb03.psi.ch:1094///pnfs/psi.ch/cms/trivcat/store/user/berger_p2/VHbb/Zvv/VHbbPostNano2017_V11/forShapes/NLOv7/ +MVAALESSANDROout = root://t3dcachedb03.psi.ch:1094///pnfs/psi.ch/cms/trivcat/store/user/acalandr/VHbb/Zvv/VHbbPostNano2017_V11/June2021/mva/ diff --git a/python/Zvv2017config/plots.ini b/python/Zvv2017config/plots.ini index 551699c44..d6128da19 100644 --- a/python/Zvv2017config/plots.ini +++ b/python/Zvv2017config/plots.ini @@ -33,20 +33,25 @@ vars_DNN = VV_DNN1,VV_BDT1 # standard sets varsfull = ,,,,,,,,,,,,,, -vars_reduced = ,,Heta,Hphi,dPhi_MET_tkMET,min_MET_MHT,tkmetphi,METphi,nAddJetCloseToMET,nAddJetFarFromMET,nAddJetTransverse,Hmass_noFSR,Hpt_noFSR,nFSRrecovered,Vmt,Vmt_ext,nVertices,rho,Hmass_0to900,Hmass_0to500 +vars_reduced = ,,Heta,Hphi,dPhi_MET_tkMET,min_MET_MHT,tkmetphi,METphi,nAddJetCloseToMET,nAddJetFarFromMET,nAddJetTransverse,Hmass_noFSR,Hpt_noFSR,nFSRrecovered,Vmt,Vmt_ext,nVertices,rho,Hmass_0to900,Hmass_0to500,Vpt,deltaRbbWithFSR,deltaRbb,deltaEtabb #----- Boosted analysis plots -----# #var_additionalBTAGALGOS: BDT_VZ_Zvv_BOOSTFinal_wdB #var_Boost: Vpt,FatJet_mSD,FatJet_Pt,DeepAK8_bbVSlightBDT_Zvv_BOOSTFinal_wdB var_Boost: Vpt,FatJet_mSD,FatJet_Pt,DeepAK8_bbVSlight,BDT_Zvv_BOOSTFinal_wdB,BDT_VZ_Zvv_BOOSTFinal_wdB -vars = , -var = +#vars = ,.Nominal,BDT_Zvv_BOOSTFinal_wdB.Nominal +#vars = LHE_Vpt +#var = +#var = deltaEtabb,deltaEtabbWithFSR,Vpt +#var = DNN,BDT +var = DNN # ------------------------------------------------------------------------------------------------------------------------------------------------------ # data # ------------------------------------------------------------------------------------------------------------------------------------------------------ DataMET = ['MET'] +#DataMET = [] DataSingleLepton = ['SingleElectron','SingleMuon'] Data = @@ -63,6 +68,9 @@ allBKGwithQCD = ,,,,]' samples = [,] +#samples = [] +#samples = [,,] +#samples = [] # diboson analysis # _1b cats are empty @@ -91,7 +99,12 @@ controlSample = {"HighPt_Signal": 0,"HighPt_TT":1,"HighPt_Zlight":2,"HighPt_Zbb" addOverFlow = False # List of regions to be submitted in case of batch submission -List = +#List = SR_med_Znn_0j,SR_med_Znn_ge1j,SR_high1_Znn,SR_high2_Znn,SR_high_Znn,SR_medhigh_Znn +#List = SR_med_Znn_0j,SR_med_Znn_ge1j,SR_high1_Znn,SR_high2_Znn,SR_high_Znn,SR_high1_Znn_BOOST,SR_high2_Znn_BOOST,SR_high_Znn_BOOST,SR_medhigh_Znn +List = SR_med_Znn_0j,SR_med_Znn_ge1j,SR_high1_Znn,SR_high2_Znn,SR_high_Znn,SR_medhigh_Znn +#List = +#List = ttbar_medhigh_Znn,Zlf_medhigh_Znn,Zhf_medhigh_Znn,SR_medhigh_Znn +#List = Zlf_medhigh_Znn,Zhf_medhigh_Znn,SR_medhigh_Znn ListVH = ListVHLegacy = SR_med_Znn_0j,SR_med_Znn_ge1j,ttbar_med_Znn,Zlf_med_Znn,Zhf_med_Znn,SR_high1_Znn,ttbar_high_Znn,Zlf_high_Znn,Zhf_high_Znn,SR_high2_Znn, diff --git a/python/Zvv2017config/training.ini b/python/Zvv2017config/training.ini index 64d3eb52f..327b7bce9 100644 --- a/python/Zvv2017config/training.ini +++ b/python/Zvv2017config/training.ini @@ -18,11 +18,14 @@ ntupleVersion = -final [ZvvBDTVarsWP] # b-tag working points instead of shape -Nominal = H_mass H_pt MET_Pt abs(TVector2::Phi_mpi_pi(H_phi-MET_Phi)) (>)+(>)+(>) (>)+(>)+(>) hJets_FSRrecovered_dEta hJets_FSRrecovered_dPhi max(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) min(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) SA5 Sum$(Jet_Pt>30&&abs(Jet_eta)<2.4&&(Jet_puId>6||Jet_Pt>50)&&Jet_jetId>4&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) -99.0+MaxIf$(99.0+(>)+(>)+(>),Jet_Pt>30&&abs(Jet_eta)<2.4&&(Jet_puId>6||Jet_Pt>50)&&Jet_jetId>4&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) -99.0+MaxIf$(99.0+Jet_Pt,Jet_Pt>30&&abs(Jet_eta)<2.4&&(Jet_puId>6||Jet_Pt>50)&&Jet_jetId>4&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) -99.0+MinIf$(99.0+abs(TVector2::Phi_mpi_pi(Jet_phi-MET_Phi)),Jet_Pt>30&&abs(Jet_eta)<2.4&&(Jet_puId>6||Jet_Pt>50)&&Jet_jetId>4&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) +Nominal = H_mass H_pt MET_Pt abs(TVector2::Phi_mpi_pi(H_phi-MET_Phi)) (>)+(>)+(>) (>)+(>)+(>) hJets_FSRrecovered_dEta hJets_FSRrecovered_dPhi max(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) min(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) SA5 Sum$(Jet_Pt>30&&abs(Jet_eta)<2.4&&(Jet_puId>6||Jet_Pt>50)&&Jet_jetId>1&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) -99.0+MaxIf$(99.0+(>)+(>)+(>),Jet_Pt>30&&abs(Jet_eta)<2.4&&(Jet_puId>6||Jet_Pt>50)&&Jet_jetId>1&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) -99.0+MaxIf$(99.0+Jet_Pt,Jet_Pt>30&&abs(Jet_eta)<2.4&&(Jet_puId>6||Jet_Pt>50)&&Jet_jetId>1&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) -99.0+MinIf$(99.0+abs(TVector2::Phi_mpi_pi(Jet_phi-MET_Phi)),Jet_Pt>30&&abs(Jet_eta)<2.4&&(Jet_puId>6||Jet_Pt>50)&&Jet_jetId>1&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) +#Nominal = H_mass H_pt MET_Pt abs(TVector2::Phi_mpi_pi(H_phi-MET_Phi)) (>)+(>)+(>) hJets_FSRrecovered_dEta hJets_FSRrecovered_dPhi max(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) min(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) SA5 Sum$(Jet_Pt>30&&abs(Jet_eta)<2.4&&(Jet_puId>6||Jet_Pt>50)&&Jet_jetId>4&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) -99.0+MaxIf$(99.0+(>)+(>)+(>),Jet_Pt>30&&abs(Jet_eta)<2.4&&(Jet_puId>6||Jet_Pt>50)&&Jet_jetId>4&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) -99.0+MaxIf$(99.0+Jet_Pt,Jet_Pt>30&&abs(Jet_eta)<2.4&&(Jet_puId>6||Jet_Pt>50)&&Jet_jetId>4&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) -99.0+MinIf$(99.0+abs(TVector2::Phi_mpi_pi(Jet_phi-MET_Phi)),Jet_Pt>30&&abs(Jet_eta)<2.4&&(Jet_puId>6||Jet_Pt>50)&&Jet_jetId>4&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) [ZvvBDTVars] Nominal = H_mass H_pt MET_Pt abs(TVector2::Phi_mpi_pi(H_phi-MET_Phi)) hJets_FSRrecovered_dEta hJets_FSRrecovered_dPhi max(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) min(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) SA5 Sum$(Jet_Pt>30&&abs(Jet_eta)<2.4&&(Jet_puId>6||Jet_Pt>50)&&Jet_jetId>4&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) -99.0+MaxIf$(99.0+,Jet_Pt>30&&abs(Jet_eta)<2.4&&(Jet_puId>6||Jet_Pt>50)&&Jet_jetId>4&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) -99.0+MaxIf$(99.0+Jet_Pt,Jet_Pt>30&&abs(Jet_eta)<2.4&&(Jet_puId>6||Jet_Pt>50)&&Jet_jetId>4&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) -99.0+MinIf$(99.0+abs(TVector2::Phi_mpi_pi(Jet_phi-MET_Phi)),Jet_Pt>30&&abs(Jet_eta)<2.4&&(Jet_puId>6||Jet_Pt>50)&&Jet_jetId>4&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) +[ZvvHIG18016Vars] +Nominal = H_mass H_pt abs(TVector2::Phi_mpi_pi(H_phi-MET_Phi)) MET_Pt hJets_FSRrecovered_dEta SA5 hJets_FSRrecovered_dPhi max(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) min(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered) -99.0+MaxIf$(99.0+,Jet_Pt>30&&abs(Jet_eta)<2.4&&(Jet_puId>6||Jet_Pt>50)&&Jet_jetId>4&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) -99.0+MaxIf$(99.0+Jet_Pt,Jet_Pt>30&&abs(Jet_eta)<2.4&&(Jet_puId>6||Jet_Pt>50)&&Jet_jetId>4&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) -99.0+MinIf$(99.0+abs(TVector2::Phi_mpi_pi(Jet_phi-MET_Phi)),Jet_Pt>30&&abs(Jet_eta)<2.4&&(Jet_puId>6||Jet_Pt>50)&&Jet_jetId>4&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1]) [ZvvBDTVarsMulti] Nominal = @@ -48,15 +51,25 @@ classes = [['VL',[,,,]],['ZC',[,]],['ZB',[,,,]],['WL',[]],['WC',[]],['WB',[,]],['ST',[]],['TT',[]],['VVLF',[]],['VVHF',[]],['SIG_VH',[,,]]] [SR_medhigh_Znn] +#xml = weights/MVA_SR_medhigh_Znn.weights.xml +#MVAtype = +#MVAsettings = NTrees=100:nCuts=20 MVAtype = -MVAsettings = NTrees=289:MaxDepth=5:MinNodeSize=0.416364956233:nCuts=16:BoostType=Grad:UseBaggedBoost=True:Shrinkage=0.0954152279012:NodePurityLimit=0.0915613170424:SeparationType=CrossEntropy +#MVAsettings = NTrees=289:MaxDepth=5:MinNodeSize=0.416364956233:nCuts=16:BoostType=Grad:UseBaggedBoost=True:Shrinkage=0.0954152279012:NodePurityLimit=0.0915613170424:SeparationType=CrossEntropy signals = [] backgrounds = [] treeVarSet = ZvvBDTVarsWP -branchName = DNN_200924_VHLegacyDNN2017V11_Znn_Apr2020v6final_SR_medhigh_Znn -checkpoint = DNN/200924_VHLegacyDNN2017V11_Znn_Apr2020v6final_SR_medhigh_Znn +#treeVarSet = ZvvHIG18016Vars +branchName = DNN_220126_VHLegacyDNN2017V11_Znn_Jan2022jetIdCut1_SR_medhigh_Znn +#branchName = DNN_200924_VHLegacyDNN2017V11_Znn_Apr2020v6final_SR_medhigh_Znn +#branchName = BDT_20211123_TL +#branchName = DNN_211208_HIG18016DNN2017V11_Znn_SR_medhigh_Znn +#checkpoint = DNN/200924_VHLegacyDNN2017V11_Znn_Apr2020v6final_SR_medhigh_Znn +#checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/Zvv_SR/Zvv2017_SR_medhigh_Znn_211208_V11DeepCSV-final.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/1.000e+00/rnd_28713/checkpoints/model.ckpt +checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/jetIdCut1_220126/Zvv2017_SR_medhigh_Znn_220126_V11DeepCSV-final.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/1.000e+00/rnd_568170/checkpoints/model.ckpt signalIndex = 0 bins = [0.0000, 0.2377, 0.3497, 0.4448, 0.5293, 0.6080, 0.6765, 0.7316, 0.7782, 0.8173, 0.8513, 0.8813, 0.9077, 0.9312, 0.9547, 1.0001] +#bins = [-1.00000, 1.00001] [ME_SR_medhigh_Znn] MVAtype = @@ -75,6 +88,7 @@ signals = [] backgrounds = [] data = treeVarSet = ZvvBDTVarsWP +#treeVarSet = ZvvHIG18016Vars classes = branchName = DNN_ checkpoint = DNN/ @@ -101,27 +115,36 @@ signalIndex = 0 signals = [] backgrounds = [] treeVarSet = ZvvBDTVarsWP +#treeVarSet = ZvvHIG18016Vars bins = [0, 1, 2, 3, 4, 5.0001] branchName = DNN_ checkpoint = DNN/ signalIndex = 0 +classes = [Zhf_med_Znn_ge1j] signals = [] backgrounds = [] treeVarSet = ZvvBDTVarsWP +#treeVarSet = ZvvHIG18016Vars bins = [0, 1, 2, 3, 4, 5.0001] branchName = DNN_ checkpoint = DNN/ signalIndex = 0 +classes = [Zhf_med_Znn] signals = [] backgrounds = [] treeVarSet = ZvvBDTVarsWP +#treeVarSet = ZvvHIG18016Vars classes = -branchName = DNN_200713_VHLegacyDNN2017V11_Znn_Apr2020v6_July_5bin_Zhf_med_Znn -checkpoint = DNN/200713_VHLegacyDNN2017V11_Znn_Apr2020v6_July_5bin_Zhf_med_Znn +#branchName = DNN_200713_VHLegacyDNN2017V11_Znn_Apr2020v6_July_5bin_Zhf_med_Znn +#branchName = DNN_211208_HIG18016DNN2017V11_Znn_5bin_Zhf_med_Znn +branchName = DNN_220126_VHLegacyDNN2017V11_Znn_5bin_Zhf_med_Znn +#checkpoint = DNN/200713_VHLegacyDNN2017V11_Znn_Apr2020v6_July_5bin_Zhf_med_Znn +#checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/Zvv_Zhf_med/Zvv2017_Zhf_med_Znn_211208_V11DeepCSV-final.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/1.000e+00/rnd_28749/checkpoints/model.ckpt +checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/jetIdCut1_220126/Zvv2017_Zhf_med_Znn_220126_V11DeepCSV-final.h5/512-256-128-64-64-64/0.20-0.50-0.50-0.50-0.50-0.50/1.000e+00/rnd_568172/checkpoints/model.ckpt bins = [0, 1, 2, 3, 4, 5.0001] bins_5 = [0.0, 0.34905798367513213, 0.3995512172376354, 0.4360723805655335, 0.4732378437332781, 1.0, 1.3446163003371907, 1.4002619613281861, 1.4408745435641452, 1.4862711820353458, 2.0, 2.3493802822877563, 2.4186597831547942, 2.5010288210430147, 2.6135164664375803, 3.0, 3.3475680276458126, 3.3966435112189557, 3.4421680024451122, 3.499054762304108, 4.0, 4.384278843343445, 4.465877817975319, 4.542304623788388, 4.632507920345233, 5.0001] @@ -130,9 +153,14 @@ bins_5 = [0.0, 0.34905798367513213, 0.3995512172376354, 0.436072380565 signals = [] backgrounds = [] treeVarSet = ZvvBDTVarsWP +#treeVarSet = ZvvHIG18016Vars classes = -branchName = DNN_200713_VHLegacyDNN2017V11_Znn_Apr2020v6_July_5bin_Zhf_high_Znn -checkpoint = DNN/200713_VHLegacyDNN2017V11_Znn_Apr2020v6_July_5bin_Zhf_high_Znn +#branchName = DNN_200713_VHLegacyDNN2017V11_Znn_Apr2020v6_July_5bin_Zhf_high_Znn +#branchName = DNN_211208_HIG18016DNN2017V11_Znn_5bin_Zhf_high_Znn +branchName = DNN_220126_VHLegacyDNN2017V11_Znn_5bin_Zhf_high_Znn +#checkpoint = DNN/200713_VHLegacyDNN2017V11_Znn_Apr2020v6_July_5bin_Zhf_high_Znn +#checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/Zvv_Zhf_high/Zvv2017_Zhf_high_Znn_211208_V11DeepCSV-final.h5/512-256-128-64-64-64/0.50-0.50-0.50-0.50-0.50-0.50/5.000e-04/rnd_28763/checkpoints/model.ckpt +checkpoint = /work/creissel/VHbb/CMSSW_10_1_0/CMSSW_10_1_0/src/Xbb/python/tfVHbbDNN/results/jetIdCut1_220126/Zvv2017_Zhf_high_Znn_220126_V11DeepCSV-final.h5/512-256-128-64-64-64/0.50-0.50-0.50-0.50-0.50-0.50/5.000e-04/rnd_568171/checkpoints/model.ckpt bins = [0, 1, 2, 3, 4, 5.0001] bins_5 = [0.0, 0.3214664011912839, 0.36910111263711537, 0.4142388368162519, 0.45616219738851244, 1.0, 1.3288602274105976, 1.388793394826822, 1.4306442514410485, 1.4648528614683882, 2.0, 2.347454048876913, 2.408986119397085, 2.4832476906071808, 2.592401839997623, 3.0, 3.346983458298966, 3.3937142003307397, 3.4386306566138627, 3.493774257453915, 4.0, 4.385547943776322, 4.465304431239819, 4.5316487203997635, 4.6250628099276625, 5.0001] @@ -261,7 +289,8 @@ bins = [0.0, 0.3835364781305318, 1.0, 1.2623681507695788, 2.0, 2.30042751 [MVALists] List_for_submitscript = -List = ,, +#List = ,, +List = SR_medhigh_Znn,Zhf_med_Znn_0j,Zhf_med_Znn_ge1j,Zhf_high_Znn,Zhf_medhigh_Znn,Zhf_med_Znn List_Boosted = BDT_Zvv_BOOSTFinal_wdB List_Multi = Multi_medhigh_Znn List_VV = VV_Zhf_medhigh_Znn,VV_SR_medhigh_Znn diff --git a/python/Zvv2017config/vhbbPlotDef.ini b/python/Zvv2017config/vhbbPlotDef.ini index 0ea352bf7..9ada2c9bf 100644 --- a/python/Zvv2017config/vhbbPlotDef.ini +++ b/python/Zvv2017config/vhbbPlotDef.ini @@ -163,6 +163,7 @@ relPath = .Nominal xAxis = DNN (final binning) nBins = 15 min = 0.0 +#min = -1.0 max = 1.0 log = True binList = @@ -222,7 +223,7 @@ log = True plotEqualSize = True visualizeBlindCutThreshold = 0.6 -[plotDef:BDT_Zvv_BOOSTFinal_wdB] +[plotDef:BDT] relPath = BDT_Zvv_BOOSTFinal_wdB.Nominal xAxis = BDT_Zvv_BOOSTFinal_wdB nBins = 15000 diff --git a/python/data/btag/deepak8v2_bbvslight.csv b/python/data/btag/deepak8v2_bbvslight.csv index afa79907c..842644d0c 100644 --- a/python/data/btag/deepak8v2_bbvslight.csv +++ b/python/data/btag/deepak8v2_bbvslight.csv @@ -1,31 +1,31 @@ year wp ptmin ptmax sf sflow sfhigh -2016 mp 200 300 0.99 0.04 0.04 -2016 mp 300 400 1.00 0.06 0.06 -2016 mp 400 500 0.97 0.03 0.03 -2016 mp 500 600 0.91 0.05 0.05 -2016 mp 600 Inf 0.95 0.04 0.04 -2016 hp 200 300 0.91 0.03 0.04 -2016 hp 300 400 0.99 0.03 0.03 -2016 hp 400 500 1.00 0.03 0.03 -2016 hp 500 600 0.95 0.04 0.03 -2016 hp 600 Inf 0.95 0.04 0.05 -2017 mp 200 300 1.05 0.04 0.04 -2017 mp 300 400 1.05 0.02 0.02 -2017 mp 400 500 1.01 0.03 0.03 -2017 mp 500 600 1.06 0.03 0.03 -2017 mp 600 Inf 1.13 0.05 0.05 -2017 hp 200 300 0.91 0.04 0.03 -2017 hp 300 400 0.94 0.02 0.02 -2017 hp 400 500 0.90 0.02 0.03 -2017 hp 500 600 1.03 0.03 0.04 -2017 hp 600 Inf 1.36 0.07 0.07 -2018 mp 200 300 1.32 0.05 0.05 -2018 mp 300 400 1.35 0.03 0.03 -2018 mp 400 500 1.22 0.03 0.03 -2018 mp 500 600 1.31 0.04 0.04 -2018 mp 600 Inf 1.30 0.04 0.04 -2018 hp 200 300 1.00 0.04 0.05 -2018 hp 300 400 1.10 0.04 0.04 -2018 hp 400 500 1.08 0.03 0.03 -2018 hp 500 600 1.11 0.04 0.04 -2018 hp 600 Inf 1.27 0.06 0.06 \ No newline at end of file +2016 mp 200 300 1.04 0.11 0.11 +2016 mp 300 400 0.97 0.09 0.09 +2016 mp 400 500 1.02 0.08 0.08 +2016 mp 500 600 0.95 0.10 0.10 +2016 mp 600 Inf 0.98 0.10 0.10 +2016 hp 200 300 1.06 0.07 0.07 +2016 hp 300 400 1.06 0.06 0.06 +2016 hp 400 500 1.00 0.09 0.09 +2016 hp 500 600 0.98 0.08 0.08 +2016 hp 600 Inf 1.01 0.05 0.05 +2017 mp 200 300 1.01 0.11 0.11 +2017 mp 300 400 1.10 0.13 0.13 +2017 mp 400 500 1.03 0.10 0.10 +2017 mp 500 600 0.95 0.12 0.12 +2017 mp 600 Inf 0.96 0.10 0.10 +2017 hp 200 300 0.92 0.08 0.08 +2017 hp 300 400 0.96 0.09 0.09 +2017 hp 400 500 0.99 0.07 0.07 +2017 hp 500 600 1.05 0.07 0.07 +2017 hp 600 Inf 1.17 0.11 0.11 +2018 mp 200 300 0.91 0.12 0.12 +2018 mp 300 400 1.20 0.15 0.15 +2018 mp 400 500 1.05 0.09 0.09 +2018 mp 500 600 0.93 0.10 0.10 +2018 mp 600 Inf 1.05 0.12 0.12 +2018 hp 200 300 0.97 0.12 0.12 +2018 hp 300 400 0.85 0.07 0.07 +2018 hp 400 500 1.04 0.09 0.09 +2018 hp 500 600 1.03 0.08 0.08 +2018 hp 600 Inf 1.03 0.09 0.09 diff --git a/python/dump_event_numbers.py b/python/dump_event_numbers.py new file mode 100644 index 000000000..658d1cf3f --- /dev/null +++ b/python/dump_event_numbers.py @@ -0,0 +1,47 @@ +import ROOT +import glob +from myutils.sampleTree import SampleTree +import sys +import os +from myutils.XbbConfig import XbbConfigReader, XbbConfigTools +from myutils import ParseInfo +from myutils.BranchList import BranchList +from myutils.FileLocator import FileLocator + +ROOT.gROOT.SetBatch(True) +ROOT.gSystem.Load("../interface/VHbbNameSpace_h.so") + +#use this if its just one root file +#files = ["/pnfs/psi.ch/cms/trivcat/store/user/krgedia/VHbb/Zll/VHbbPostNano2018/prep_test/DoubleMuon/tree_Run2018A-Nano14Dec2018-v180_190426_091335_0000_1 _ece43a8e07c7252be5b485d4343748de876253455fdf9d5f1cfc2f11.root"] + +#use this if you want to use wildcard root file address. It gives you list of all root files in the directory +files = glob.glob("/pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Wlv/VHbbPostNano2016_V11/2020_05_15/sys_withTop/SingleMuon/tree_*.root") + +#Use one of the above two options + +#Here you parse the config file +config = XbbConfigTools(config=XbbConfigReader.read("Wlv2016")) + +#Once you parse the config file, you can access the quantities from the config. +sel_formula = str(config.get("Cuts","ttbar_high_Wmn")) + +#Here you kind of TChain all the 'Event' TTrees from all the TTrees from the list 'files' you provided and use it latter as an iterator +sampleTree = SampleTree(files, treeName='Events', xrootdRedirector='root://t3dcachedb03.psi.ch:1094/') +nEvents = sampleTree.GetEntries() + +#Here you add the formula you want +sampleTree.addFormula("f",sel_formula) + +j=0 +#Here you iterate over all the events from the TChained TTrees +for event in sampleTree: + #Here you evaluate the fomula for each event + passed = sampleTree.evaluate("f") + if passed: + j=j+1 + #if (j<50): + if (j 0: + for var in varsToCheck: + + if "ratiovpt" in var: + f_VptHpt = ROOT.TTreeFormula('f_VptHpt', 'V_pt/H_pt', tree ) + f_VptHpt.GetNdata() + fileForSync.write(str((float)(f_VptHpt.EvalInstance()))+",") + + elif "phi" in var: + f_phivar = ROOT.TTreeFormula('f_phivar', 'abs(TVector2::Phi_mpi_pi(V_phi-H_phi))', tree ) + f_phivar.GetNdata() + fileForSync.write(str((int)(f_phivar.EvalInstance()))+",") + + elif "btagLeading" in var: + f_btagvarL=ROOT.TTreeFormula('f_btagvarL','Jet_btagDeepB[hJidx[0]]',tree) + f_btagvarL.GetNdata() + fileForSync.write(str((float)(f_btagvarL.EvalInstance()))+",") + + elif "btagSubleading" in var: + f_btagvarS=ROOT.TTreeFormula('f_btagvarS','Jet_btagDeepB[hJidx[1]]',tree) + f_btagvarS.GetNdata() + fileForSync.write(str((float)(f_btagvarS.EvalInstance()))+",") + + elif "maxFSR" in var: + f_maxFSR=ROOT.TTreeFormula('f_maxFSR','max(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered)',tree) + f_maxFSR.GetNdata() + fileForSync.write(str((float)(f_maxFSR.EvalInstance()))+",") + + elif "minFSR" in var: + f_minFSR=ROOT.TTreeFormula('f_minFSR','min(hJets_0_pt_FSRrecovered,hJets_1_pt_FSRrecovered)',tree) + f_minFSR.GetNdata() + fileForSync.write(str((float)(f_minFSR.EvalInstance()))+",") + + elif "naddjet" in var: + f_naddjet=ROOT.TTreeFormula('f_naddjet','Sum$(Jet_Pt>30&&abs(Jet_eta)<2.5&&(Jet_puId>6||Jet_Pt>50.0)&&Jet_jetId>2&&Jet_lepFilter&&Iteration$!=hJidx[0]&&Iteration$!=hJidx[1])',tree) + f_naddjet.GetNdata() + fileForSync.write(str((int)(f_naddjet.EvalInstance()))+",") + + elif "VH_Whf_medhigh_Wln_WP_resonly_22april" in var: + f_dnn = ROOT.TTreeFormula('f_dnn', 'VH_Whf_medhigh_Wln_WP_resonly_22april', tree ) + f_dnn.GetNdata() + fileForSync.write(str((int)(f_dnn.EvalInstance()))+",") + + elif "muonSF" in var: + f_muonSF = ROOT.TTreeFormula('f_muonSF', 'muonSF[0]', tree ) + f_muonSF.GetNdata() + fileForSync.write(str((float)(f_muonSF.EvalInstance()))+",") + + elif "electronSF" in var: + f_electronSF = ROOT.TTreeFormula('f_electronSF', 'electronSF[0]', tree ) + f_electronSF.GetNdata() + fileForSync.write(str((float)(f_electronSF.EvalInstance()))+",") + + elif "EWKw" in var: + f_EWK = ROOT.TTreeFormula('f_EWK', 'EWKw[0]', tree ) + f_EWK.GetNdata() + fileForSync.write(str((float)(f_EWK.EvalInstance()))+",") + + elif "weightF" in var: + f_weightF = ROOT.TTreeFormula('f_weightF', 'genWeight*puWeight*1.0*muonSF_Iso[0]*muonSF_Id[0]*muonSF_trigger[0]*electronSF[0]*(1.0+(((hJidx[0]>-1&&hJidx[1]>-1) && !(boostedSR&&!resolvedSR)) || ((hJidx[0]>-1&&hJidx[1]>-1) && !(boostedSR_VZ&&!resolvedSR_VZ)))*(-1.0+bTagWeightDeepCSV))*EWKw[0]*weightLOtoNLO_2016*1.0 * 1.0 * weightJetPUID * PrefireWeight', tree) + f_weightF.GetNdata() + fileForSync.write(str((float)(f_weightF.EvalInstance()))+",") + + elif "StitchingWeight" in var: + f_StitchingWeight = ROOT.TTreeFormula('f_StitchingWeight', '(1.0)*((LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt<100&&LHE_HT>=100&&LHE_HT<200)*0.68054 + (LHE_Nb==0&&nGenStatus2bHad>0&&LHE_Vpt<100&&LHE_HT>=100&&LHE_HT<200)*0.67236 + (LHE_Nb==0&&nGenStatus2bHad==0&&LHE_Vpt>=100&&LHE_Vpt<200&&LHE_HT>=100&&LHE_HT<200)*0.67944 + (LHE_Nb>0&&LHE_Vpt<100&&LHE_HT>=100&&LHE_HT<200)*0.68138)', tree) + f_StitchingWeight.GetNdata() + fileForSync.write(str((float)(f_StitchingWeight.EvalInstance()))+",") + + else: + fileForSync.write(str(getattr(tree,var))+",") + + + + fileForSync.write("\n") + + + tFile.Close() + +fileForSync.close() + + + diff --git a/python/myutils/BatchSystemSLURM.py b/python/myutils/BatchSystemSLURM.py index 9767f22bb..1bf25ed9d 100644 --- a/python/myutils/BatchSystemSLURM.py +++ b/python/myutils/BatchSystemSLURM.py @@ -108,6 +108,7 @@ def submit(self, job, repDict): timeLimit = '0-10:00' elif repDict['queue'] == 'long.q': timeLimit = '1-00:00' + partitionAuto = "long" elif repDict['queue'] == 'twodays.q': timeLimit = '2-00:00' elif repDict['queue'] == 'threedays.q': @@ -116,7 +117,7 @@ def submit(self, job, repDict): timeLimit = '0-03:00' elif repDict['queue'] == 'veryshort.q': timeLimit = '0-00:59' - partitionAuto = "quick" + partitionAuto = "short" elif repDict['queue'] == 'espresso.q': timeLimit = '0-00:05' partitionAuto = "quick" diff --git a/python/myutils/EWKweights.py b/python/myutils/EWKweights.py index be9001010..807c6b7e0 100644 --- a/python/myutils/EWKweights.py +++ b/python/myutils/EWKweights.py @@ -26,7 +26,7 @@ def customInit(self, initVars): self.isData = self.sample.isData() if not self.isData: - self.applyEWK = any([x in self.sample.identifier for x in ['DY', 'WJet', 'WBJet', 'ZJet', 'ZBJet']]) + self.applyEWK = any([x in self.sample.identifier for x in ['DY', 'WJet', 'WBJet', 'ZJet', 'ZBJet', 'W1Jets', 'W2Jets', 'Z1Jets', 'Z2Jets']]) self.sys_sample = None if 'ZH_HToBB_ZToLL' in self.sample.identifier and not 'ggZH_HToBB_ZToLL' in self.sample.identifier: diff --git a/python/myutils/FlagOverlapFromFile.py b/python/myutils/FlagOverlapFromFile.py new file mode 100644 index 000000000..621c362e2 --- /dev/null +++ b/python/myutils/FlagOverlapFromFile.py @@ -0,0 +1,85 @@ +#!/usr/bin/env python +import ROOT +import numpy as np +import array +import os +from BranchTools import Collection +from BranchTools import AddCollectionsModule +import cPickle + +class FlagOverlapFromFile(AddCollectionsModule): + + def __init__(self, fileNameSR, fileNameCR, NormOverlap, SRonly=True, branchName='overlapEvent'): + super(FlagOverlapFromFile, self).__init__() + self.branchName = branchName + self.fileNameSR = fileNameSR + self.fileNameCR = fileNameCR + self.version = 20211019 + + self.SRonly = SRonly + self.NormOverlap = NormOverlap + + def customInit(self, initVars): + self.sample = initVars['sample'] + self.config = initVars['config'] + + self.addBranch(self.branchName) + self.addBranch(self.branchName + "_MCWeight") + + self.sampleTree = initVars['sampleTree'] + + self.cuts = self.config.get('LimitGeneral','List').split(",") + + if self.SRonly: + self.cuts = [c for c in self.cuts if c.startswith('SR')] + + for c in self.cuts: + self.selection = self.config.get('Cuts',c) + self.sampleTree.addFormula(self.selection) + + self.File = {} + with open(self.fileNameSR, "rb") as f: + eventList = cPickle.load(f) + with open(self.fileNameCR, "rb") as f: + eventList_CR = cPickle.load(f) + + if not self.SRonly: + eventList.update(eventList_CR) + + + self.OverlapMCWeight = {} + with open(self.NormOverlap) as f: + for line in f: + (key, val) = line.split() + val = val.split("/") + self.OverlapMCWeight[key[:-1]] = float(val[0])/float(val[1]) + + self.Runs = [x[0] for x in eventList.keys()] + self.EventNumbers = [x[1] for x in eventList.keys()] + self.EventList = eventList + + def processEvent(self, tree): + + flag = 0.0 + mcweight = 1.0 + + if not self.sample.isData(): + flag = 1.0 + + for c in self.cuts: + selection = self.config.get('Cuts',c) + if self.sampleTree.evaluate(selection): + mcweight = self.OverlapMCWeight[c] + + if self.sample.isData(): + run = tree.run + event = tree.event + + if run in self.Runs: + if event in self.EventNumbers: + if (run,event) in self.EventList.keys(): + flag = 1.0 + + self._b(self.branchName)[0] = flag + self._b(self.branchName + "_MCWeight")[0] = mcweight + diff --git a/python/myutils/GetTopMass.py b/python/myutils/GetTopMass.py index 48bb3326c..31b3efc1e 100644 --- a/python/myutils/GetTopMass.py +++ b/python/myutils/GetTopMass.py @@ -164,6 +164,7 @@ def EquationSolve(self, a, b, c, d): result = [] + #print("abcd: ",a,b,c,d) if (a != 0): @@ -174,6 +175,8 @@ def EquationSolve(self, a, b, c, d): rho=0. theta=0. + #print("Delta: ",Delta) + if( Delta<=0): rho = sqrt(-(q*q*q)) @@ -269,6 +272,8 @@ def getNu4Momentum(self, TLepton, TMET, debug=False): metpx=MET.Px() metpy=MET.Py() + #print("ptlep,pxlep,pylep,metpx,metpy",ptlep,pxlep,pylep,metpx,metpy) + EquationA = 1. EquationB = -3.*pylep*mW/(ptlep) EquationC = mW*mW*(2*pylep*pylep)/(ptlep*ptlep)+mW*mW-4*pxlep*pxlep*pxlep*metpx/(ptlep*ptlep)-4*pxlep*pxlep*pylep*metpy/(ptlep*ptlep) diff --git a/python/myutils/JECcorrelator.py b/python/myutils/JECcorrelator.py index f46a5afa2..1ba39f289 100644 --- a/python/myutils/JECcorrelator.py +++ b/python/myutils/JECcorrelator.py @@ -118,6 +118,40 @@ def customInit(self, initVars): self.existingBranches[var] = array.array('f', [0.0]*50) self.sampleTree.tree.SetBranchAddress(var, self.existingBranches[var]) + for var in ["Jet_eta","Jet_phi","Jet_neEmEF","Jet_chEmEF"]: + setattr(self,var.lower(),array.array('f', [0.0]*self.maxNjet)) + self.sampleTree.tree.SetBranchAddress(var, getattr(self, var.lower())) + + for var in ["Jet_muonIdx1","Jet_muonIdx2"]: + setattr(self,var.lower(),array.array('i', [0]*self.maxNjet)) + self.sampleTree.tree.SetBranchAddress(var, getattr(self, var.lower())) + + for var in ["nJet","nMuon"]: + setattr(self,var.lower(),array.array('i', [0])) + self.sampleTree.tree.SetBranchAddress(var, getattr(self, var.lower())) + + for var in ["Muon_pt"]: + setattr(self,var.lower(),array.array('f', [0.0]*50)) + self.sampleTree.tree.SetBranchAddress(var, getattr(self, var.lower())) + + for syst in self.JEC_reduced: + if syst != "nom": UD = ["Up","Down"] + else: UD = [""] + for Q in UD: + setattr(self,"jet_pt_"+syst+Q,array.array('f', [0.0]*self.maxNjet)) + setattr(self,"jet_mass_"+syst+Q,array.array('f', [0.0]*self.maxNjet)) + setattr(self,"met_pt_"+syst+Q,array.array('f', [0.0])) + setattr(self,"met_phi_"+syst+Q,array.array('f', [0.0])) + setattr(self,"fatjet_pt_"+syst+Q,array.array('f', [0.0]*self.maxNfatjet)) + setattr(self,"fatjet_msoftdrop_"+syst+Q,array.array('f', [0.0]*self.maxNfatjet)) + + self.sampleTree.tree.SetBranchAddress("Jet_pt_"+syst+Q, getattr(self, "jet_pt_"+syst+Q)) + self.sampleTree.tree.SetBranchAddress("Jet_mass_"+syst+Q, getattr(self, "jet_mass_"+syst+Q)) + self.sampleTree.tree.SetBranchAddress("MET_pt_"+syst+Q, getattr(self, "met_pt_"+syst+Q)) + self.sampleTree.tree.SetBranchAddress("MET_phi_"+syst+Q, getattr(self, "met_phi_"+syst+Q)) + self.sampleTree.tree.SetBranchAddress("FatJet_pt_"+syst+Q, getattr(self, "fatjet_pt_"+syst+Q)) + self.sampleTree.tree.SetBranchAddress("FatJet_msoftdrop_"+syst+Q, getattr(self, "fatjet_msoftdrop_"+syst+Q)) + for syst in self.JEC_reduced: for Q in self._variations(syst): self.addVectorBranch("Jet_pt_"+syst+Q, default=0.0, branchType='f', length=self.maxNjet, leaflist="Jet_pt_"+syst+Q+"[nJet]/F") @@ -170,7 +204,6 @@ def correlator(self,syst,idx,Q,var,attr): return self.maxmin(Q, sum_1, sum_2) def METcorrelator(self,syst,Q,var,attr): - MET_nom = ROOT.TLorentzVector() MET_nom.SetPtEtaPhiM(attr["MET_pt"]["nom"][0], 0.0, attr["MET_phi"]["nom"][0], 0.0) met_px_nom = MET_nom.X() @@ -292,6 +325,7 @@ def processEvent(self, tree): attr["nJet"] = tree.nJet for var in ["Jet_pt", "Jet_mass", "MET_pt", "MET_phi", "FatJet_pt", "FatJet_msoftdrop"]: for syst in self.JEC_full: + #print("syst :",syst) attr[var][syst] = {} for Q in self._variations(syst): attr[var][syst][Q] = list(self.existingBranches[var+"_"+syst+Q]) @@ -321,6 +355,13 @@ def processEvent(self, tree): for i in range(nFatJet): self._b(self._v("FatJet_pt", syst, Q, ""))[i] = self.correlator(syst,i,Q,"FatJet_pt",attr) self._b(self._v("FatJet_msoftdrop", syst, Q, ""))[i] = self.correlator(syst,i,Q,"FatJet_msoftdrop",attr) + if ((getattr(self,"fatjet_msoftdrop"+"_"+syst+Q)[i]>0) and (getattr(self,"fatjet_pt"+"_"+syst+Q)[i]>0)): + #histograms["FatJet_pt"][syst][Q].Fill((getattr(self,"fatjet_pt"+"_"+syst+Q)[i] - self._b(self._v("FatJet_pt", syst, Q, ""))[i])/(getattr(self,"fatjet_pt"+"_"+syst+Q)[i])) + #histograms["FatJet_msoftdrop"][syst][Q].Fill((getattr(self,"fatjet_msoftdrop"+"_"+syst+Q)[i] - self._b(self._v("FatJet_msoftdrop", syst, Q, ""))[i])/(getattr(self,"fatjet_msoftdrop"+"_"+syst+Q)[i])) + attr["FatJet_pt"][syst][Q].append(self._b(self._v("FatJet_pt", syst, Q, ""))[i]) + attr["FatJet_msoftdrop"][syst][Q].append(self._b(self._v("FatJet_msoftdrop", syst, Q, ""))[i]) + #true_attr["FatJet_pt"][syst][Q].append(getattr(self,"fatjet_pt"+"_"+syst+Q)[i]) + #true_attr["FatJet_msoftdrop"][syst][Q].append(getattr(self,"fatjet_msoftdrop"+"_"+syst+Q)[i]) #self.nEvent += 1 #if self.nEvent % 1000 == 0: @@ -344,7 +385,7 @@ def processEvent(self, tree): w.customInit({'sampleTree': sampleTree, 'sample': sample, 'config': config}) sampleTree.addOutputBranches(w.getBranches()) histograms={} - for jec in w.JEC_reduced: histograms[jec] = {} + for jec in w.JEC_reduced: histograms[jec] = {} for var in ["Jet_pt", "Jet_mass", "MET_pt", "MET_phi", "FatJet_pt", "FatJet_msoftdrop"]: histograms[var] = {} diff --git a/python/myutils/Jet.py b/python/myutils/Jet.py index 56ccb5400..89355ef09 100644 --- a/python/myutils/Jet.py +++ b/python/myutils/Jet.py @@ -20,6 +20,6 @@ def deltaR(jet1, jet2): def get(tree): jets = [] for i in range(tree.nJet): - if tree.Jet_lepFilter[i] > 0 and (tree.Jet_puId[i] > 6 or tree.Jet_Pt[i] > 50.0) and tree.Jet_jetId[i] > 4: + if tree.Jet_lepFilter[i] > 0 and (tree.Jet_puId[i] > 6 or tree.Jet_Pt[i] > 50.0) and tree.Jet_jetId[i] > 2: jets.append(Jet(pt=tree.Jet_Pt[i], eta=tree.Jet_eta[i], phi=tree.Jet_phi[i], mass=tree.Jet_mass_nom[i], btag=tree.Jet_btagDeepB[i], index=i, pt_reg=tree.Jet_PtReg[i], mass_reg=tree.Jet_PtReg[i]/tree.Jet_Pt[i]*tree.Jet_mass_nom[i])) return jets diff --git a/python/myutils/LOtoNLOweight.py b/python/myutils/LOtoNLOweight.py index 23c5184ea..804da33ea 100644 --- a/python/myutils/LOtoNLOweight.py +++ b/python/myutils/LOtoNLOweight.py @@ -227,8 +227,8 @@ def processEvent(self, tree): # eta bb derived from 2017 DY self._b(self.branchName)[0] = 1.153 * self.LOtoNLOWeightBjetSplitEtabb2017(etabb, nb) - # eta bb derived from 2016 DY - self._b(self.branchName + '_2016')[0] = 1.153 * self.LOtoNLOWeightBjetSplitEtabb(etabb, nb) + # eta bb derived from 2016 DY + self._b(self.branchName + '_2016')[0] = 1.153 * self.LOtoNLOWeightBjetSplitEtabb(etabb, nb) def applies(self, tree): diff --git a/python/myutils/MuonSFfromJSON.py b/python/myutils/MuonSFfromJSON.py index 4898300ae..fc77ef337 100644 --- a/python/myutils/MuonSFfromJSON.py +++ b/python/myutils/MuonSFfromJSON.py @@ -19,8 +19,8 @@ def __init__(self, jsonFiles=None, branchName='muonSF', channel='None', year=Non self.year = year self.tablenames = { 2016: {'Zll':{ - 'idSf':'SF_MuIDTightBCDEF', - 'isoSf':'NUM_LooseRelIso_DEN_LooseID', + 'idSf':'SF_MuIDTight', + 'isoSf':'SF_MuIsoTight', 'eff_IsoMu8_mc':'Mu8LegMC', 'eff_IsoMu17_mc':'Mu17LegMC', 'eff_IsoMu8_data':'Mu8Leg', @@ -65,12 +65,17 @@ def __init__(self, jsonFiles=None, branchName='muonSF', channel='None', year=Non self.jsonTable = JsonTable(jsonFiles) self.channel = channel if self.channel== 'Zll': - self.idSf = self.jsonTable.getEtaPtTable(self.tablenames[self.year][self.channel]['idSf'], 'abseta_pt') - self.isoSf = self.jsonTable.getEtaPtTable(self.tablenames[self.year][self.channel]['isoSf'], 'abseta_pt') - self.eff_IsoMu8_mc = self.jsonTable.getEtaPtTable(self.tablenames[self.year][self.channel]['eff_IsoMu8_mc'], 'abseta_pt') - self.eff_IsoMu17_mc = self.jsonTable.getEtaPtTable(self.tablenames[self.year][self.channel]['eff_IsoMu17_mc'], 'abseta_pt') - self.eff_IsoMu8_data = self.jsonTable.getEtaPtTable(self.tablenames[self.year][self.channel]['eff_IsoMu8_data'], 'abseta_pt') - self.eff_IsoMu17_data = self.jsonTable.getEtaPtTable(self.tablenames[self.year][self.channel]['eff_IsoMu17_data'], 'abseta_pt') + if self.year == 2016: + for corr in self.tablenames[self.year][self.channel].keys(): + for lumi_sec in self.tablenames[self.year]['lumi'].keys(): + setattr(self, corr+lumi_sec, self.jsonTable.getEtaPtTable(self.tablenames[self.year][self.channel][corr]+lumi_sec, 'abseta_pt')) + else: + self.idSf = self.jsonTable.getEtaPtTable(self.tablenames[self.year][self.channel]['idSf'], 'abseta_pt') + self.isoSf = self.jsonTable.getEtaPtTable(self.tablenames[self.year][self.channel]['isoSf'], 'abseta_pt') + self.eff_IsoMu8_mc = self.jsonTable.getEtaPtTable(self.tablenames[self.year][self.channel]['eff_IsoMu8_mc'], 'abseta_pt') + self.eff_IsoMu17_mc = self.jsonTable.getEtaPtTable(self.tablenames[self.year][self.channel]['eff_IsoMu17_mc'], 'abseta_pt') + self.eff_IsoMu8_data = self.jsonTable.getEtaPtTable(self.tablenames[self.year][self.channel]['eff_IsoMu8_data'], 'abseta_pt') + self.eff_IsoMu17_data = self.jsonTable.getEtaPtTable(self.tablenames[self.year][self.channel]['eff_IsoMu17_data'], 'abseta_pt') elif self.channel == 'Wlv': if self.year == 2016: for corr in self.tablenames[self.year][self.channel].keys(): @@ -143,14 +148,20 @@ def computeSF(self, weight_trigg, weight_Id, weight_Iso, weight_SF, lep_eta, lep weight_Id[i] = 0.0 weight_Iso[i] = 0.0 - for corr in self.tablenames[self.year][self.channel].keys(): + for corr in ['idSf','isoSf','triggerSf']: for lumi_sec in self.tablenames[self.year]['lumi'].keys(): - w = self.getSf(corr+lumi_sec, lep_eta, lep_pt, lep_n, syst=syst) if corr.startswith("triggerSf"): - weight_trigg[i] += self.tablenames[self.year]['lumi'][lumi_sec] * w + if self.channel=='Wlv': + w = self.getSf(corr+lumi_sec, lep_eta, lep_pt, lep_n, syst=syst) + weight_trigg[i] += self.tablenames[self.year]['lumi'][lumi_sec] * w + else: + w = self.getTriggerSf(lep_eta, lep_pt, lep_n, syst=syst, lumi_sec=lumi_sec) + weight_trigg[i] += self.tablenames[self.year]['lumi'][lumi_sec] * w if corr.startswith("idSf"): + w = self.getSf(corr+lumi_sec, lep_eta, lep_pt, lep_n, syst=syst) weight_Id[i] += self.tablenames[self.year]['lumi'][lumi_sec] * w if corr.startswith("isoSf"): + w = self.getSf(corr+lumi_sec, lep_eta, lep_pt, lep_n, syst=syst) weight_Iso[i] += self.tablenames[self.year]['lumi'][lumi_sec] * w else: @@ -207,19 +218,19 @@ def computeEventSF_fromleg(self, eff_mu8_l1, eff_mu17_l1, eff_mu8_l2, eff_mu17_l return eff_event - def getTriggerSf(self, eta, pt, len_n, syst=None): + def getTriggerSf(self, eta, pt, len_n, syst=None, lumi_sec=""): triggSF = 1. if self.channel == 'Zll': if len_n==2: - eff_mu8_l1_mc = self.jsonTable.findvalerr(self.eff_IsoMu8_mc, eta[0], pt[0], self.systVariations) - eff_mu17_l1_mc = self.jsonTable.findvalerr(self.eff_IsoMu17_mc, eta[0], pt[0], self.systVariations) - eff_mu8_l1_data = self.jsonTable.findvalerr(self.eff_IsoMu8_data, eta[0], pt[0], self.systVariations) - eff_mu17_l1_data = self.jsonTable.findvalerr(self.eff_IsoMu17_data, eta[0], pt[0], self.systVariations) - - eff_mu8_l2_mc = self.jsonTable.findvalerr(self.eff_IsoMu8_mc, eta[1], pt[1], self.systVariations) - eff_mu17_l2_mc = self.jsonTable.findvalerr(self.eff_IsoMu17_mc, eta[1], pt[1], self.systVariations) - eff_mu8_l2_data = self.jsonTable.findvalerr(self.eff_IsoMu8_data, eta[1], pt[1], self.systVariations) - eff_mu17_l2_data = self.jsonTable.findvalerr(self.eff_IsoMu17_data, eta[1], pt[1], self.systVariations) + eff_mu8_l1_mc = self.jsonTable.findvalerr(getattr(self, 'eff_IsoMu8_mc'+lumi_sec), eta[0], pt[0], self.systVariations) + eff_mu17_l1_mc = self.jsonTable.findvalerr(getattr(self,'eff_IsoMu17_mc'+lumi_sec), eta[0], pt[0], self.systVariations) + eff_mu8_l1_data = self.jsonTable.findvalerr(getattr(self,'eff_IsoMu8_data'+lumi_sec), eta[0], pt[0], self.systVariations) + eff_mu17_l1_data = self.jsonTable.findvalerr(getattr(self,'eff_IsoMu17_data'+lumi_sec), eta[0], pt[0], self.systVariations) + + eff_mu8_l2_mc = self.jsonTable.findvalerr(getattr(self,'eff_IsoMu8_mc'+lumi_sec), eta[1], pt[1], self.systVariations) + eff_mu17_l2_mc = self.jsonTable.findvalerr(getattr(self,'eff_IsoMu17_mc'+lumi_sec), eta[1], pt[1], self.systVariations) + eff_mu8_l2_data = self.jsonTable.findvalerr(getattr(self,'eff_IsoMu8_data'+lumi_sec), eta[1], pt[1], self.systVariations) + eff_mu17_l2_data = self.jsonTable.findvalerr(getattr(self,'eff_IsoMu17_data'+lumi_sec), eta[1], pt[1], self.systVariations) #print("new event triggerSf") #print(eta[0], pt[0]) #print(eff_mu8_l1_mc) diff --git a/python/myutils/NewStackMaker.py b/python/myutils/NewStackMaker.py index e6560b7a9..c18b7b45b 100644 --- a/python/myutils/NewStackMaker.py +++ b/python/myutils/NewStackMaker.py @@ -179,14 +179,14 @@ def __init__(self, config, var, region, SignalRegion, setup=None, subcut='', tit self.histogramOptions['nBins'] = len(self.histogramOptions['binList'])-1 # region/variable specific blinding cut - if self.config.has_option(self.configSection, 'blindCuts'): - blindCuts = eval(self.config.get(self.configSection, 'blindCuts')) - if self.var in blindCuts: - self.blind = True - self.histogramOptions['blindCut'] = blindCuts[self.var] - if '{var}' in self.histogramOptions['blindCut']: - self.histogramOptions['blindCut'] = self.histogramOptions['blindCut'].format(var=self.histogramOptions['treeVar']) - print("\x1b[31mINFO: for region {region} var {var} using the blinding cut: {cut}\x1b[0m".format(region=self.region, var=self.var, cut=self.histogramOptions['blindCut'])) + #if self.config.has_option(self.configSection, 'blindCuts'): + # blindCuts = eval(self.config.get(self.configSection, 'blindCuts')) + # if self.var in blindCuts: + # self.blind = True + # self.histogramOptions['blindCut'] = blindCuts[self.var] + # if '{var}' in self.histogramOptions['blindCut']: + # self.histogramOptions['blindCut'] = self.histogramOptions['blindCut'].format(var=self.histogramOptions['treeVar']) + # print("\x1b[31mINFO: for region {region} var {var} using the blinding cut: {cut}\x1b[0m".format(region=self.region, var=self.var, cut=self.histogramOptions['blindCut'])) self.groups = {} self.histograms = [] @@ -282,6 +282,7 @@ def addSampleTree(self, sample, sampleTree, groupName, cut='1'): 'histogram': sampleHistogram, 'group': groupName, 'signal': sample.type=='SIG' + #'signal': groupName=='VVHF' }) if self.config.has_option('Plot_general', 'drawWeightSystematicError'): diff --git a/python/myutils/STXSshapeCorrections.py b/python/myutils/STXSshapeCorrections.py new file mode 100644 index 000000000..bfb8ce8a7 --- /dev/null +++ b/python/myutils/STXSshapeCorrections.py @@ -0,0 +1,192 @@ +#!/usr/bin/env python +from __future__ import print_function +from __future__ import division +import ROOT +from BranchTools import Collection +from BranchTools import AddCollectionsModule +import array +import os +import math +import numpy as np +from XbbConfig import XbbConfigTools +import time +from XbbConfig import XbbConfigReader, XbbConfigTools +from sample_parser import ParseInfo +from BranchList import BranchList +from FileLocator import FileLocator +from ROOT import TCanvas, TFile, TProfile, TNtuple, TH1F, TH2F +from ROOT import gROOT, gBenchmark, gRandom, gSystem, Double +from sampleTree import SampleTree +import copy +import csv + +# calculates the STXS acceptance uncertainties (shape) based on the STXS bin in Vpt and NJet +class STXSshapeCorrections(AddCollectionsModule): + + def __init__(self, year): + super(STXSshapeCorrections, self).__init__() + self.debug = 'XBBDEBUG' in os.environ + self.quickloadWarningShown = False + self.existingBranches = {} + + self.year = year if type(year) == str else str(year) + + def addBranch(self, branchName, default=0.0): + if branchName not in self.existingBranches: + super(STXSshapeCorrections, self).addBranch(branchName, default) + else: + print("DEBUG: skip adding branch:", branchName) + + # can be used to overwrite branch if it already exists + def _b(self, branchName): + if branchName not in self.existingBranches: + return super(STXSshapeCorrections, self)._b(branchName) + else: + return self.existingBranches[branchName] + + def customInit(self, initVars): + self.sampleTree = initVars['sampleTree'] + self.sample = initVars['sample'] + self.config = initVars['config'] + + self.corrections = { + "ZH": { + "FORWARD": 0.0, + "PTV_0_75_0J": 0.028, + "PTV_0_75_1J": 0.08450443775, + "PTV_0_75_GE2J": 0.1294951737, + "PTV_75_150_0J": 0.035, + "PTV_75_150_1J": 0.08202438662, + "PTV_75_150_GE2J": 0.1182074448, + "PTV_150_250_0J": 0.0, + "PTV_150_250_1J": 0.08156592426, + "PTV_150_250_GE2J": 0.1053090689, + "PTV_250_400_0J": 0.05714017851, + "PTV_250_400_1J": 0.08297590012, + "PTV_250_400_GE2J": 0.09471008394, + "PTV_GT400_0J": 0.07462010453, + "PTV_GT400_1J": 0.09067061266, + "PTV_GT400_GE2J": 0.09588618253, + }, + + "WH": { + "FORWARD": 0.0, + "PTV_0_75_0J": 0.026, + "PTV_0_75_1J": 0.07440430095, + "PTV_0_75_GE2J": 0.1115168149, + "PTV_75_150_0J": 0.031, + "PTV_75_150_1J": 0.07083784299, + "PTV_75_150_GE2J": 0.1001698557, + "PTV_150_250_0J": 0.039, + "PTV_150_250_1J": 0.07071067812, + "PTV_150_250_GE2J": 0.09013878189, + "PTV_250_400_0J": 0.05315072906, + "PTV_250_400_1J": 0.07438413809, + "PTV_250_400_GE2J": 0.08614522622, + "PTV_GT400_0J": 0.07049794323, + "PTV_GT400_1J": 0.08549830408, + "PTV_GT400_GE2J": 0.09203781831, + }, + + "ggZH": { + "FORWARD": 0.0, + "PTV_0_75_0J": 0.391, + "PTV_0_75_1J": 0.3115541686, + "PTV_0_75_GE2J": 0.3620414341, + "PTV_75_150_0J": 0.364, + "PTV_75_150_1J": 0.3137036818, + "PTV_75_150_GE2J": 0.3719381669, + "PTV_150_250_0J": 0.0, + "PTV_150_250_1J": 0.3587659404, + "PTV_150_250_GE2J": 0.3910306893, + "PTV_250_400_0J": 0.9002005332, + "PTV_250_400_1J": 0.5260446749, + "PTV_250_400_GE2J": 0.4225849027, + "PTV_GT400_0J": 0.9155457389, + "PTV_GT400_1J": 0.896829972, + "PTV_GT400_GE2J": 0.896829972, + } + } + + self.STXSname = { + 0: "FORWARD", # used for events with Higgs rapidity > 2.5 where we have very little acceptance, so it doent matter which values we put here (use default) + 1: "PTV_0_75_0J", + 2: "PTV_75_150_0J", + 3: "PTV_150_250_0J", + 4: "PTV_250_400_0J", + 5: "PTV_GT400_0J", + 6: "PTV_0_75_1J", + 7: "PTV_75_150_1J", + 8: "PTV_150_250_1J", + 9: "PTV_250_400_1J", + 10: "PTV_GT400_1J", + 11: "PTV_0_75_GE2J", + 12: "PTV_75_150_GE2J", + 13: "PTV_150_250_GE2J", + 14: "PTV_250_400_GE2J", + 15: "PTV_GT400_GE2J", + } + + if self.sample.isMC(): + + # load needed information + self.existingBranches["HTXS_stage1_1_fine_cat_pTjet30GeV"] = array.array('i', [0]) + self.sampleTree.tree.SetBranchAddress("HTXS_stage1_1_fine_cat_pTjet30GeV", self.existingBranches["HTXS_stage1_1_fine_cat_pTjet30GeV"]) + + self.addBranch("THU_ZH_accUp", default=1.0) + self.addBranch("THU_ZH_accDown", default=1.0) + self.addBranch("THU_WH_accUp", default=1.0) + self.addBranch("THU_WH_accDown", default=1.0) + self.addBranch("THU_ggZH_accUp", default=1.0) + self.addBranch("THU_ggZH_accDown", default=1.0) + + def processEvent(self, tree): + if not self.hasBeenProcessed(tree) and self.sample.isMC(): + self.markProcessed(tree) + + # check for WH sample + if (self.sample.index == -12501) or (self.sample.index == -12500): + STXSname = self.STXSname[self.existingBranches["HTXS_stage1_1_fine_cat_pTjet30GeV"][0]-300] + self._b("THU_WH_accUp")[0] = 1.0 + self.corrections["WH"][STXSname] + self._b("THU_WH_accDown")[0] = 1.0 - self.corrections["WH"][STXSname] + + # check for ZH sample + elif (self.sample.index == -12502) or (self.sample.index == -12504): + STXSname = self.STXSname[self.existingBranches["HTXS_stage1_1_fine_cat_pTjet30GeV"][0]-400] + self._b("THU_ZH_accUp")[0] = 1.0 + self.corrections["ZH"][STXSname] + self._b("THU_ZH_accDown")[0] = 1.0 - self.corrections["ZH"][STXSname] + + # check for ggZH sample + elif (self.sample.index == -12503) or (self.sample.index == -12505): + STXSname = self.STXSname[self.existingBranches["HTXS_stage1_1_fine_cat_pTjet30GeV"][0]-500] + self._b("THU_ggZH_accUp")[0] = 1.0 + self.corrections["ggZH"][STXSname] + self._b("THU_ggZH_accDown")[0] = 1.0 - self.corrections["ggZH"][STXSname] + + #print(self._b("THU_WH_accUp")[0]) + #print(self._b("THU_WH_accDown")[0]) + + #print(self._b("THU_ZH_accUp")[0]) + #print(self._b("THU_ZH_accDown")[0]) + + #print(self._b("THU_ggZH_accUp")[0]) + #print(self._b("THU_ggZH_accDown")[0]) + + +if __name__=='__main__': + + print("main") + + config = XbbConfigReader.read('Zvv2016') + info = ParseInfo(config=config) + sample = [x for x in info if x.identifier == 'ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8'][0] + + sampleTree = SampleTree(['/pnfs/psi.ch/cms/trivcat/store/user/creissel/VHbb/Zvv/VHbbPostNano2016_V11/2020_11_01/eval_boostedVZ/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/tree_0daeeaa419203ed1ca7bc5b1abb63105e5eb6c93e2e4032c8d9dbf4f_000000_000000_0000_6_365ec88febcb9c2a9f97b3c92a920f8ba2b348d0651e246ceee1770a.root'], treeName='Events', xrootdRedirector="root://t3dcachedb03.psi.ch:1094/") + w = STXSshapeCorrections("2016") + w.customInit({'sampleTree': sampleTree, 'sample': sample, 'config': config}) + sampleTree.addOutputBranches(w.getBranches()) + + n=0 + for event in sampleTree: + print(event) + event,run = w.processEvent(event) + diff --git a/python/myutils/mSD_sys.py b/python/myutils/mSD_sys.py new file mode 100644 index 000000000..893d515c2 --- /dev/null +++ b/python/myutils/mSD_sys.py @@ -0,0 +1,112 @@ +#!/usr/bin/env python +from __future__ import print_function +import ROOT +from BranchTools import Collection +from BranchTools import AddCollectionsModule +import array +import os +import math +import numpy as np +from XbbConfig import XbbConfigTools + +# applies the smearing to MC jet resolution and modifies the Jet_PtReg* branches of the tree +class mSD_sys(AddCollectionsModule): + + def __init__(self, year = None, backupPreviousCorrection=True): + super(mSD_sys, self).__init__() + self.debug = 'XBBDEBUG' in os.environ + self.backupPreviousCorrection = backupPreviousCorrection + self.quickloadWarningShown = False + + self.year = year if type(year) == str else str(year) + self.scale_params = { + '2017': [0.93, 0.01, 0.93, 0.01], + '2016': [0.93, 0.01, 0.93, 0.01], + } + if self.year not in self.scale_params: + print("ERROR: smearing for year", self.year, " not available!") + raise Exception("SmearingError") + + self.scale, self.scale_err, self.res, self.res_err = self.scale_params[self.year] + + def customInit(self, initVars): + self.sampleTree = initVars['sampleTree'] + self.isData = initVars['sample'].isData() + self.sample = initVars['sample'] + + self.config = initVars['config'] + self.xbbConfig = XbbConfigTools(self.config) + self.jetSystematicsResolved = self.xbbConfig.getJECuncertainties() + self.jetSystematics = self.jetSystematicsResolved + ['jmr','jms'] + self.jetSystematics = [e for e in self.jetSystematics if e not in {'jer', 'jerReg'}] + #print(self.jetSystematics) + + if self.sample.isMC(): + # resolutions used in post-processor smearing + self.maxnFatJet = 256 + for jec in self.jetSystematics: + setattr(self, "FatJet_msoftdrop_"+jec+"Up",array.array('f', [0.0]*self.maxnFatJet)) + setattr(self, "FatJet_msoftdrop_"+jec+"Down",array.array('f', [0.0]*self.maxnFatJet)) + + self.sampleTree.tree.SetBranchAddress("FatJet_msoftdrop_"+jec+"Up", getattr(self,"FatJet_msoftdrop_"+jec+"Up")) + self.sampleTree.tree.SetBranchAddress("FatJet_msoftdrop_"+jec+"Down", getattr(self,"FatJet_msoftdrop_"+jec+"Down")) + + self.FatJet_Msoftdrop = array.array('f', [0.0]*self.maxnFatJet) + self.sampleTree.tree.SetBranchAddress("FatJet_Msoftdrop", self.FatJet_Msoftdrop) + self.FatJet_msoftdrop_nom = array.array('f', [0.0]*self.maxnFatJet) + self.sampleTree.tree.SetBranchAddress("FatJet_msoftdrop_nom", self.FatJet_msoftdrop_nom) + + + if self.backupPreviousCorrection: + + for jec in self.jetSystematics: + self.addVectorBranch("FatJet_msoftdrop_"+jec+"Up"+"Old", default=0.0, branchType='f', length=self.maxnFatJet, leaflist="FatJet_msoftdrop_"+jec+"Up[nJet]/F") + self.addVectorBranch("FatJet_msoftdrop_"+jec+"Down"+"Old", default=0.0, branchType='f', length=self.maxnFatJet, leaflist="FatJet_msoftdrop_"+jec+"Down[nJet]/F") + + self.addVectorBranch("FatJet_MsoftdropOld", default=0.0, branchType='f', length=self.maxnFatJet, leaflist="FatJet_MsoftdropOld[nJet]/F") + self.addVectorBranch("FatJet_msoftdrop_nomOld", default=0.0, branchType='f', length=self.maxnFatJet, leaflist="FatJet_msoftdrop_nomOld[nJet]/F") + + def processEvent(self, tree): + if not self.hasBeenProcessed(tree) and self.sample.isMC(): + self.markProcessed(tree) + + nJet = tree.nFatJet + + # backup the Jet_PtReg branches with the old smearing + if self.backupPreviousCorrection: + for i in range(nJet): + for jec in self.jetSystematics: + self._b("FatJet_msoftdrop_"+jec+"Up"+"Old")[i] = getattr(self,"FatJet_msoftdrop_"+jec+"Up")[i] + self._b("FatJet_msoftdrop_"+jec+"Down"+"Old")[i] = getattr(self,"FatJet_msoftdrop_"+jec+"Down")[i] + self._b("FatJet_MsoftdropOld")[i] = self.FatJet_Msoftdrop[i] + self._b("FatJet_msoftdrop_nomOld")[i] = self.FatJet_msoftdrop_nom[i] + + # apply new smearing + for i in range(nJet): + scale_up = self.scale + self.scale_err + scale_down = self.scale - self.scale_err + res_up = self.res + self.res_err + res_down = self.res - self.res_err + + self.FatJet_Msoftdrop[i] = self.FatJet_Msoftdrop[i]*self.scale + self.FatJet_msoftdrop_nom[i] = self.FatJet_msoftdrop_nom[i]*self.scale + + self.FatJet_msoftdrop_jmrUp[i] = self.FatJet_msoftdrop_jmrUp[i]*self.scale + self.FatJet_msoftdrop_jmrDown[i] = self.FatJet_msoftdrop_jmrDown[i]*self.scale + self.FatJet_msoftdrop_jmsUp[i] = self.FatJet_msoftdrop_jmsUp[i]*scale_up + self.FatJet_msoftdrop_jmsDown[i] = self.FatJet_msoftdrop_jmsDown[i]*scale_down + + for jec in self.jetSystematics: + if ((jec != "jmr") or (jec != "jms")): + getattr(self, "FatJet_msoftdrop_"+jec+"Up")[i] = getattr(self, "FatJet_msoftdrop_"+jec+"Up")[i]*self.scale + getattr(self, "FatJet_msoftdrop_"+jec+"Down")[i] = getattr(self, "FatJet_msoftdrop_"+jec+"Down")[i]*self.scale + + #print("next jet") + #print("FatJet_MsoftdropiOld ",self._b("FatJet_MsoftdropOld")[i]) + #print("FatJet_Msoftdrop ",self.FatJet_Msoftdrop[i]) + #print("FatJet_msoftdrop_nom ",self.FatJet_msoftdrop_nom[i]) + #print("FatJet_msoftdrop_jmrUp ",self.FatJet_msoftdrop_jmrUp[i]) + #print("FatJet_msoftdrop_jmrUpOld ",self._b("FatJet_msoftdrop_jmrUpOld")[i]) + #print("FatJet_msoftdrop_jmsUp ",self.FatJet_msoftdrop_jmsUp[i]) + #print("FatJet_msoftdrop_jmsDown ",self.FatJet_msoftdrop_jmsDown[i]) + #print("---------------------------------------") diff --git a/python/myutils/readKinFitFriendTree.py b/python/myutils/readKinFitFriendTree.py index 0a34b5d8f..9c0d628d6 100644 --- a/python/myutils/readKinFitFriendTree.py +++ b/python/myutils/readKinFitFriendTree.py @@ -36,7 +36,7 @@ def customInit(self, initVars): # unfortunately friend trees are not copied by CloneTree and getattr() also doesn't work in pyROOT :-( # pretty ugly hack - self.kinFitter = kinFitterXbb(year=2016, jetIdCut=2, puIdCut=6) + self.kinFitter = kinFitterXbb(year=2016, jetIdCut=4, puIdCut=6) self.kinFitter.systematics = self.systematics self.kinFitter.customInit(initVars) self.branches = self.kinFitter.branches diff --git a/python/myutils/sampleTree.py b/python/myutils/sampleTree.py index df55cb6a8..02b7f800c 100644 --- a/python/myutils/sampleTree.py +++ b/python/myutils/sampleTree.py @@ -1182,7 +1182,10 @@ def getScale(self, sample, countHistogram=None): if self.verbose: print("DEBUG: XS = ", sample.xsec, sample, type(sample)) - countHistogram = self.config.get('Configuration', 'countTreeName') if self.config.has_option('Configuration', 'countTreeName') else None + if "genWtHist" in self.histograms: + countHistogram = "genWtHist" + else: + countHistogram = self.config.get('Configuration', 'countTreeName') if self.config.has_option('Configuration', 'countTreeName') else None count = None try: diff --git a/samples/VHbbPostNano2016_V11/samples.txt b/samples/VHbbPostNano2016_V11/samples.txt new file mode 100644 index 000000000..1fb7a5582 --- /dev/null +++ b/samples/VHbbPostNano2016_V11/samples.txt @@ -0,0 +1,88 @@ +DoubleEG +DoubleMuon +DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +DY2JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +DY3JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +DY4JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +DYJetsToLL_BGenFilter_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8 +DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +ggZH_HToBB_ZToLL_M120_13TeV_powheg_pythia8 +ggZH_HToBB_ZToLL_M125_13TeV_amcatnlo_pythia +ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8 +ggZH_HToBB_ZToLL_M130_13TeV_powheg_pythia8 +ggZH_HToBB_ZToNuNu_M120_13TeV_powheg_pythia8 +ggZH_HToBB_ZToNuNu_M125_13TeV_amcatnlo_pythia8 +ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8 +ggZH_HToBB_ZToNuNu_M130_13TeV_powheg_pythia8 +MET +QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +QCD_HT50to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +SingleElectron +SingleMuon +ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8 +ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1 +ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1 +ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1 +ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1 +TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +TT_TuneCUETP8M2T4_13TeV-powheg-pythia8 +WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8 +WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8 +WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8_CUETP8M1Up +WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8 +WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8 +WW_TuneCUETP8M1_13TeV-pythia8 +WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8 +WZ_TuneCUETP8M1_13TeV-pythia8 +ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +ZH_HToBB_ZToLL_M125_13TeV_amcatnloFXFX_madspin_pythia8 +ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8 +ZH_HToBB_ZToLL_M130_13TeV_amcatnloFXFX_madspin_pythia8 +ZH_HToBB_ZToNuNu_M125_13TeV_amcatnloFXFX_madspin_pythia8 +ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8_CUETP8M1Up +ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8 +ZH_HToBB_ZToNuNu_M130_13TeV_amcatnloFXFX_madspin_pythia8 +ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8 +ZJetsToNuNu_HT-100To200_13TeV-madgraph +ZJetsToNuNu_HT-1200To2500_13TeV-madgraph +ZJetsToNuNu_HT-200To400_13TeV-madgraph +ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph +ZJetsToNuNu_HT-400To600_13TeV-madgraph +ZJetsToNuNu_HT-600To800_13TeV-madgraph +ZJetsToNuNu_HT-800To1200_13TeV-madgraph +ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8 +ZZTo2L2Q_13TeV_powheg_pythia8 +ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8 +ZZTo2Q2Nu_13TeV_powheg_pythia8 +ZZ_TuneCUETP8M1_13TeV-pythia8 diff --git a/samples/VHbbPostNano2016_V11_v2/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..9f355c6ff --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,105 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202154/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY1JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205746/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/DY2JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/DY2JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..ae09ce5de --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/DY2JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,22 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY2JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202232/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY2JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202232/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY2JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202232/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY2JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202232/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY2JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202232/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY2JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202232/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY2JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202232/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY2JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202232/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY2JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202232/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY2JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202232/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY2JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202232/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY2JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205825/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY2JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205825/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY2JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205825/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY2JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205825/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY2JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205825/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY2JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205825/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY2JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205825/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY2JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205825/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY2JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205825/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY2JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205825/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY2JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205825/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/DY3JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/DY3JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..158ea92e1 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/DY3JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY3JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202309/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY3JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202309/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY3JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202309/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY3JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205904/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY3JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205904/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY3JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205904/0000/tree_4.root diff --git a/samples/VHbbPostNano2016_V11_v2/DY4JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/DY4JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..8937fc902 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/DY4JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY4JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202346/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY4JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202346/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY4JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202346/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY4JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205944/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY4JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205944/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DY4JetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_205944/0000/tree_4.root diff --git a/samples/VHbbPostNano2016_V11_v2/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..f06cd7003 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,12 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_210103/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_210103/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_210103/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_210103/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202422/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202422/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202422/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_202422/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_210023/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_210023/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_210023/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_210023/0000/tree_5.root diff --git a/samples/VHbbPostNano2016_V11_v2/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..143e6e3cb --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_210225/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_210225/0000/tree_2.root diff --git a/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_BGenFilter_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_BGenFilter_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..6a78f6ab9 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_BGenFilter_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_210305/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_210305/0000/tree_3.root diff --git a/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..28cce76de --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,10 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_210424/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_210424/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_210424/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_210424/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_210424/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_210424/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_210344/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_210344/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_210344/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_210344/0000/tree_6.root diff --git a/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..89242ddb1 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,5 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_210545/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_210545/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_210505/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_210505/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_210505/0000/tree_5.root diff --git a/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..abf8ad6db --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,13 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_210705/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_210705/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_210705/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_210705/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_210705/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_210705/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_210705/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_210705/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_210705/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_210624/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_210624/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_210624/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_210624/0000/tree_4.root diff --git a/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..299eb9cd4 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio1/200928_124703/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..81d75e4b1 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,18 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio2/201019_084604/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio2/201019_084604/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio2/201019_084604/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio2/201019_084604/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio2/201019_084604/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio2/201019_084604/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio2/201019_084604/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio2/201019_084604/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio2/201019_084604/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio2/201019_084604/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio2/201019_084604/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio2/201019_084604/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio2/201019_084604/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio2/201019_084604/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio2/201019_084604/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio2/201019_084604/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio2/201019_084604/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio2/201019_084604/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..bcd1dcfc6 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio2/200928_124738/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..7fb7543ec --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,15 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio1/201019_084532/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio1/201019_084532/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio1/201019_084532/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio1/201019_084532/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio1/201019_084532/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio1/201019_084532/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio1/201019_084532/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio1/201019_084532/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio1/201019_084532/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio1/201019_084532/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio1/201019_084532/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio1/201019_084532/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio1/201019_084532/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio1/201019_084532/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio1/201019_084532/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..3638cbfcd --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,14 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201019_084636/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201019_084636/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201019_084636/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201019_084636/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201019_084636/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201019_084636/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201019_084636/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201019_084636/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201019_084636/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201019_084636/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201019_084636/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201019_084636/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201019_084636/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201019_084636/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..4eaba6ef7 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,8 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211219/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211219/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211219/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211219/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211219/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211219/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211219/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211219/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..ffe19ea1c --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio4/201019_084707/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio4/201019_084707/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio4/201019_084707/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio4/201019_084707/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio4/201019_084707/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio4/201019_084707/0000/tree_6.root diff --git a/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..05afddd3d --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1,81 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_211347/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..f937c69f4 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,102 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211426/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211506/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..d89c179ab --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,12 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/200928_124814/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/200928_124814/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/200928_124814/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio4/200928_124849/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio4/200928_124849/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio4/200928_124849/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio4/200928_124849/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio4/200928_124849/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio4/200928_124849/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio4/200928_124849/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio4/200928_124849/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio4/200928_124849/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..e5a2b72b1 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,7 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio5/200928_124923/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio5/200928_124923/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio5/200928_124923/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio6/200928_124955/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio6/200928_124955/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio6/200928_124955/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio6/200928_124955/0000/tree_4.root diff --git a/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..87431f68a --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio7/200928_125029/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio7/200928_125029/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio7/200928_125029/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio7/200928_125029/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio8/200928_125105/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio8/200928_125105/0000/tree_2.root diff --git a/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..ceb714eb2 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,5 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio10/200928_125214/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio10/200928_125214/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio9/200928_125139/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio9/200928_125139/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio9/200928_125139/0000/tree_3.root diff --git a/samples/VHbbPostNano2016_V11_v2/DoubleEG.txt b/samples/VHbbPostNano2016_V11_v2/DoubleEG.txt new file mode 100644 index 000000000..c74a193e0 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/DoubleEG.txt @@ -0,0 +1,235 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016B_ver2-Nano14Dec2018_ve81/190426_093314/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016C-Nano14Dec2018-v182/190426_093356/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016C-Nano14Dec2018-v182/190426_093356/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016C-Nano14Dec2018-v182/190426_093356/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016C-Nano14Dec2018-v182/190426_093356/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016C-Nano14Dec2018-v182/190426_093356/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016C-Nano14Dec2018-v182/190426_093356/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016C-Nano14Dec2018-v182/190426_093356/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016C-Nano14Dec2018-v182/190426_093356/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016C-Nano14Dec2018-v182/190426_093356/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016C-Nano14Dec2018-v182/190426_093356/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016C-Nano14Dec2018-v182/190426_093356/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016C-Nano14Dec2018-v182/190426_093356/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016C-Nano14Dec2018-v182/190426_093356/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016C-Nano14Dec2018-v182/190426_093356/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016C-Nano14Dec2018-v182/190426_093356/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016C-Nano14Dec2018-v182/190426_093356/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016C-Nano14Dec2018-v182/190426_093356/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016C-Nano14Dec2018-v182/190426_093356/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016C-Nano14Dec2018-v182/190426_093356/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016C-Nano14Dec2018-v182/190426_093356/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016C-Nano14Dec2018-v182/190426_093356/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016C-Nano14Dec2018-v182/190426_093356/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016C-Nano14Dec2018-v182/190426_093356/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016D-Nano14Dec2018-v183/190426_093445/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016D-Nano14Dec2018-v183/190426_093445/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016D-Nano14Dec2018-v183/190426_093445/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016D-Nano14Dec2018-v183/190426_093445/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016D-Nano14Dec2018-v183/190426_093445/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016D-Nano14Dec2018-v183/190426_093445/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016D-Nano14Dec2018-v183/190426_093445/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016D-Nano14Dec2018-v183/190426_093445/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016D-Nano14Dec2018-v183/190426_093445/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016D-Nano14Dec2018-v183/190426_093445/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016D-Nano14Dec2018-v183/190426_093445/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016D-Nano14Dec2018-v183/190426_093445/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016D-Nano14Dec2018-v183/190426_093445/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016D-Nano14Dec2018-v183/190426_093445/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016D-Nano14Dec2018-v183/190426_093445/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016D-Nano14Dec2018-v183/190426_093445/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016D-Nano14Dec2018-v183/190426_093445/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016D-Nano14Dec2018-v183/190426_093445/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016D-Nano14Dec2018-v183/190426_093445/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016D-Nano14Dec2018-v183/190426_093445/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016D-Nano14Dec2018-v183/190426_093445/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016D-Nano14Dec2018-v183/190426_093445/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016D-Nano14Dec2018-v183/190426_093445/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016D-Nano14Dec2018-v183/190426_093445/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016D-Nano14Dec2018-v183/190426_093445/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016D-Nano14Dec2018-v183/190426_093445/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016D-Nano14Dec2018-v183/190426_093445/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016D-Nano14Dec2018-v183/190426_093445/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016E-Nano14Dec2018-v184/190426_093526/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016E-Nano14Dec2018-v184/190426_093526/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016E-Nano14Dec2018-v184/190426_093526/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016E-Nano14Dec2018-v184/190426_093526/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016E-Nano14Dec2018-v184/190426_093526/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016E-Nano14Dec2018-v184/190426_093526/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016E-Nano14Dec2018-v184/190426_093526/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016E-Nano14Dec2018-v184/190426_093526/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016E-Nano14Dec2018-v184/190426_093526/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016E-Nano14Dec2018-v184/190426_093526/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016E-Nano14Dec2018-v184/190426_093526/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016E-Nano14Dec2018-v184/190426_093526/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016E-Nano14Dec2018-v184/190426_093526/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016E-Nano14Dec2018-v184/190426_093526/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016E-Nano14Dec2018-v184/190426_093526/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016E-Nano14Dec2018-v184/190426_093526/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016E-Nano14Dec2018-v184/190426_093526/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016E-Nano14Dec2018-v184/190426_093526/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016E-Nano14Dec2018-v184/190426_093526/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016E-Nano14Dec2018-v184/190426_093526/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016E-Nano14Dec2018-v184/190426_093526/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016E-Nano14Dec2018-v184/190426_093526/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016E-Nano14Dec2018-v184/190426_093526/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016E-Nano14Dec2018-v184/190426_093526/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016F-Nano14Dec2018-v185/190426_093607/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016F-Nano14Dec2018-v185/190426_093607/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016F-Nano14Dec2018-v185/190426_093607/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016F-Nano14Dec2018-v185/190426_093607/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016F-Nano14Dec2018-v185/190426_093607/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016F-Nano14Dec2018-v185/190426_093607/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016F-Nano14Dec2018-v185/190426_093607/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016F-Nano14Dec2018-v185/190426_093607/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016F-Nano14Dec2018-v185/190426_093607/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016F-Nano14Dec2018-v185/190426_093607/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016F-Nano14Dec2018-v185/190426_093607/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016F-Nano14Dec2018-v185/190426_093607/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016F-Nano14Dec2018-v185/190426_093607/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016F-Nano14Dec2018-v185/190426_093607/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016F-Nano14Dec2018-v185/190426_093607/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016F-Nano14Dec2018-v185/190426_093607/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016F-Nano14Dec2018-v185/190426_093607/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016G-Nano14Dec2018-v186/190426_093647/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//Run2016H-Nano14Dec2018-v187/190426_093739/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/DoubleMuon.txt b/samples/VHbbPostNano2016_V11_v2/DoubleMuon.txt new file mode 100644 index 000000000..1ef00f3c5 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/DoubleMuon.txt @@ -0,0 +1,147 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016B_ver2-Nano14Dec2018_ve89/190426_093904/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016C-Nano14Dec2018-v190/190426_093945/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016C-Nano14Dec2018-v190/190426_093945/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016C-Nano14Dec2018-v190/190426_093945/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016C-Nano14Dec2018-v190/190426_093945/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016C-Nano14Dec2018-v190/190426_093945/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016C-Nano14Dec2018-v190/190426_093945/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016C-Nano14Dec2018-v190/190426_093945/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016C-Nano14Dec2018-v190/190426_093945/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016C-Nano14Dec2018-v190/190426_093945/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016C-Nano14Dec2018-v190/190426_093945/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016C-Nano14Dec2018-v190/190426_093945/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016C-Nano14Dec2018-v190/190426_093945/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016C-Nano14Dec2018-v190/190426_093945/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016C-Nano14Dec2018-v190/190426_093945/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016D-Nano14Dec2018-v191/190426_094035/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016D-Nano14Dec2018-v191/190426_094035/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016D-Nano14Dec2018-v191/190426_094035/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016D-Nano14Dec2018-v191/190426_094035/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016D-Nano14Dec2018-v191/190426_094035/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016D-Nano14Dec2018-v191/190426_094035/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016D-Nano14Dec2018-v191/190426_094035/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016D-Nano14Dec2018-v191/190426_094035/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016D-Nano14Dec2018-v191/190426_094035/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016D-Nano14Dec2018-v191/190426_094035/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016D-Nano14Dec2018-v191/190426_094035/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016D-Nano14Dec2018-v191/190426_094035/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016D-Nano14Dec2018-v191/190426_094035/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016D-Nano14Dec2018-v191/190426_094035/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016D-Nano14Dec2018-v191/190426_094035/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016D-Nano14Dec2018-v191/190426_094035/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016D-Nano14Dec2018-v191/190426_094035/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016D-Nano14Dec2018-v191/190426_094035/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016E-Nano14Dec2018-v192/190426_094115/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016E-Nano14Dec2018-v192/190426_094115/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016E-Nano14Dec2018-v192/190426_094115/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016E-Nano14Dec2018-v192/190426_094115/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016E-Nano14Dec2018-v192/190426_094115/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016E-Nano14Dec2018-v192/190426_094115/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016E-Nano14Dec2018-v192/190426_094115/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016E-Nano14Dec2018-v192/190426_094115/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016E-Nano14Dec2018-v192/190426_094115/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016E-Nano14Dec2018-v192/190426_094115/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016E-Nano14Dec2018-v192/190426_094115/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016E-Nano14Dec2018-v192/190426_094115/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016E-Nano14Dec2018-v192/190426_094115/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016E-Nano14Dec2018-v192/190426_094115/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016E-Nano14Dec2018-v192/190426_094115/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016F-Nano14Dec2018-v193/190426_094202/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016F-Nano14Dec2018-v193/190426_094202/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016F-Nano14Dec2018-v193/190426_094202/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016F-Nano14Dec2018-v193/190426_094202/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016F-Nano14Dec2018-v193/190426_094202/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016F-Nano14Dec2018-v193/190426_094202/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016F-Nano14Dec2018-v193/190426_094202/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016F-Nano14Dec2018-v193/190426_094202/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016F-Nano14Dec2018-v193/190426_094202/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016F-Nano14Dec2018-v193/190426_094202/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016F-Nano14Dec2018-v193/190426_094202/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016G-Nano14Dec2018-v194/190426_094249/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016G-Nano14Dec2018-v194/190426_094249/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016G-Nano14Dec2018-v194/190426_094249/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016G-Nano14Dec2018-v194/190426_094249/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016G-Nano14Dec2018-v194/190426_094249/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016G-Nano14Dec2018-v194/190426_094249/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016G-Nano14Dec2018-v194/190426_094249/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016G-Nano14Dec2018-v194/190426_094249/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016G-Nano14Dec2018-v194/190426_094249/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016G-Nano14Dec2018-v194/190426_094249/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016G-Nano14Dec2018-v194/190426_094249/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016G-Nano14Dec2018-v194/190426_094249/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016G-Nano14Dec2018-v194/190426_094249/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016G-Nano14Dec2018-v194/190426_094249/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016G-Nano14Dec2018-v194/190426_094249/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016G-Nano14Dec2018-v194/190426_094249/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016G-Nano14Dec2018-v194/190426_094249/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016G-Nano14Dec2018-v194/190426_094249/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016G-Nano14Dec2018-v194/190426_094249/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016G-Nano14Dec2018-v194/190426_094249/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016G-Nano14Dec2018-v194/190426_094249/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016G-Nano14Dec2018-v194/190426_094249/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016G-Nano14Dec2018-v194/190426_094249/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016G-Nano14Dec2018-v194/190426_094249/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016H-Nano14Dec2018-v195/190426_094335/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016H-Nano14Dec2018-v195/190426_094335/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016H-Nano14Dec2018-v195/190426_094335/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016H-Nano14Dec2018-v195/190426_094335/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016H-Nano14Dec2018-v195/190426_094335/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016H-Nano14Dec2018-v195/190426_094335/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016H-Nano14Dec2018-v195/190426_094335/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016H-Nano14Dec2018-v195/190426_094335/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016H-Nano14Dec2018-v195/190426_094335/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016H-Nano14Dec2018-v195/190426_094335/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016H-Nano14Dec2018-v195/190426_094335/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016H-Nano14Dec2018-v195/190426_094335/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016H-Nano14Dec2018-v195/190426_094335/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016H-Nano14Dec2018-v195/190426_094335/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016H-Nano14Dec2018-v195/190426_094335/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016H-Nano14Dec2018-v195/190426_094335/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016H-Nano14Dec2018-v195/190426_094335/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016H-Nano14Dec2018-v195/190426_094335/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016H-Nano14Dec2018-v195/190426_094335/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016H-Nano14Dec2018-v195/190426_094335/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016H-Nano14Dec2018-v195/190426_094335/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016H-Nano14Dec2018-v195/190426_094335/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016H-Nano14Dec2018-v195/190426_094335/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016H-Nano14Dec2018-v195/190426_094335/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//Run2016H-Nano14Dec2018-v195/190426_094335/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/MET.txt b/samples/VHbbPostNano2016_V11_v2/MET.txt new file mode 100644 index 000000000..824e48c24 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/MET.txt @@ -0,0 +1,89 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016B_ver2-Nano14Dec2018_ve97/190426_094509/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016B_ver2-Nano14Dec2018_ve97/190426_094509/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016B_ver2-Nano14Dec2018_ve97/190426_094509/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016B_ver2-Nano14Dec2018_ve97/190426_094509/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016B_ver2-Nano14Dec2018_ve97/190426_094509/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016B_ver2-Nano14Dec2018_ve97/190426_094509/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016B_ver2-Nano14Dec2018_ve97/190426_094509/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016B_ver2-Nano14Dec2018_ve97/190426_094509/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016B_ver2-Nano14Dec2018_ve97/190426_094509/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016B_ver2-Nano14Dec2018_ve97/190426_094509/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016B_ver2-Nano14Dec2018_ve97/190426_094509/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016B_ver2-Nano14Dec2018_ve97/190426_094509/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016B_ver2-Nano14Dec2018_ve97/190426_094509/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016B_ver2-Nano14Dec2018_ve97/190426_094509/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016B_ver2-Nano14Dec2018_ve97/190426_094509/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016B_ver2-Nano14Dec2018_ve97/190426_094509/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016B_ver2-Nano14Dec2018_ve97/190426_094509/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016B_ver2-Nano14Dec2018_ve97/190426_094509/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016B_ver2-Nano14Dec2018_ve97/190426_094509/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016C-Nano14Dec2018-v198/190426_094557/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016C-Nano14Dec2018-v198/190426_094557/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016C-Nano14Dec2018-v198/190426_094557/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016C-Nano14Dec2018-v198/190426_094557/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016C-Nano14Dec2018-v198/190426_094557/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016C-Nano14Dec2018-v198/190426_094557/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016C-Nano14Dec2018-v198/190426_094557/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016C-Nano14Dec2018-v198/190426_094557/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016C-Nano14Dec2018-v198/190426_094557/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016D-Nano14Dec2018-v199/190426_094645/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016D-Nano14Dec2018-v199/190426_094645/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016D-Nano14Dec2018-v199/190426_094645/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016D-Nano14Dec2018-v199/190426_094645/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016D-Nano14Dec2018-v199/190426_094645/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016D-Nano14Dec2018-v199/190426_094645/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016D-Nano14Dec2018-v199/190426_094645/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016D-Nano14Dec2018-v199/190426_094645/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016D-Nano14Dec2018-v199/190426_094645/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016D-Nano14Dec2018-v199/190426_094645/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016D-Nano14Dec2018-v199/190426_094645/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016E-Nano14Dec2018-v1100/190426_094730/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016E-Nano14Dec2018-v1100/190426_094730/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016E-Nano14Dec2018-v1100/190426_094730/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016E-Nano14Dec2018-v1100/190426_094730/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016E-Nano14Dec2018-v1100/190426_094730/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016E-Nano14Dec2018-v1100/190426_094730/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016E-Nano14Dec2018-v1100/190426_094730/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016E-Nano14Dec2018-v1100/190426_094730/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016E-Nano14Dec2018-v1100/190426_094730/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016E-Nano14Dec2018-v1100/190426_094730/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016F-Nano14Dec2018-v1101/190426_094815/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016F-Nano14Dec2018-v1101/190426_094815/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016F-Nano14Dec2018-v1101/190426_094815/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016F-Nano14Dec2018-v1101/190426_094815/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016F-Nano14Dec2018-v1101/190426_094815/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016F-Nano14Dec2018-v1101/190426_094815/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016F-Nano14Dec2018-v1101/190426_094815/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016G-Nano14Dec2018-v1102/190426_094903/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016G-Nano14Dec2018-v1102/190426_094903/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016G-Nano14Dec2018-v1102/190426_094903/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016G-Nano14Dec2018-v1102/190426_094903/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016G-Nano14Dec2018-v1102/190426_094903/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016G-Nano14Dec2018-v1102/190426_094903/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016G-Nano14Dec2018-v1102/190426_094903/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016G-Nano14Dec2018-v1102/190426_094903/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016G-Nano14Dec2018-v1102/190426_094903/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016G-Nano14Dec2018-v1102/190426_094903/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016G-Nano14Dec2018-v1102/190426_094903/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016G-Nano14Dec2018-v1102/190426_094903/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016G-Nano14Dec2018-v1102/190426_094903/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016G-Nano14Dec2018-v1102/190426_094903/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016H-Nano14Dec2018-v1103/190426_094951/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016H-Nano14Dec2018-v1103/190426_094951/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016H-Nano14Dec2018-v1103/190426_094951/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016H-Nano14Dec2018-v1103/190426_094951/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016H-Nano14Dec2018-v1103/190426_094951/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016H-Nano14Dec2018-v1103/190426_094951/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016H-Nano14Dec2018-v1103/190426_094951/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016H-Nano14Dec2018-v1103/190426_094951/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016H-Nano14Dec2018-v1103/190426_094951/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016H-Nano14Dec2018-v1103/190426_094951/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016H-Nano14Dec2018-v1103/190426_094951/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016H-Nano14Dec2018-v1103/190426_094951/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016H-Nano14Dec2018-v1103/190426_094951/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016H-Nano14Dec2018-v1103/190426_094951/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016H-Nano14Dec2018-v1103/190426_094951/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016H-Nano14Dec2018-v1103/190426_094951/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016H-Nano14Dec2018-v1103/190426_094951/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016H-Nano14Dec2018-v1103/190426_094951/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//Run2016H-Nano14Dec2018-v1103/190426_094951/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..805930c0b --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,19 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_194702/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_194702/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_194702/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_194702/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_194702/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_194702/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_194702/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_194702/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_194702/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_194702/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_194702/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_194702/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194627/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194627/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194627/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194627/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194627/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194627/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194627/0000/tree_7.root diff --git a/samples/VHbbPostNano2016_V11_v2/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..09135a2f4 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,59 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194738/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..cc9c97963 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,12 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_194848/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_194848/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_194848/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_194848/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_194848/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_194848/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_194848/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_194848/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194813/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194813/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194813/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194813/0000/tree_4.root diff --git a/samples/VHbbPostNano2016_V11_v2/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..95f63f40d --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,11 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_194959/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_194959/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_194959/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_194959/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_194959/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_194959/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_194959/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_194959/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194924/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194924/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_194924/0000/tree_3.root diff --git a/samples/VHbbPostNano2016_V11_v2/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..f74d679cf --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,49 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195112/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195036/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195036/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195036/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195036/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195036/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195036/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195036/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195036/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195036/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195036/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195036/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195036/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195036/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195036/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195036/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..eaba0b95e --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,56 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195228/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195152/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195152/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195152/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195152/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195152/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195152/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195152/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195152/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195152/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195152/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195152/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195152/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195152/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195152/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195152/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195152/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195152/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195152/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..98ce4f5c7 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,65 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195339/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195304/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195304/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195304/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195304/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195304/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195304/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195304/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195304/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195304/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195304/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195304/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195304/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195304/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195304/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195304/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195304/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195304/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/QCD_HT50to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/QCD_HT50to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..837fcda16 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/QCD_HT50to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,4 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT50to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195416/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT50to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195416/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT50to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195416/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT50to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195416/0000/tree_4.root diff --git a/samples/VHbbPostNano2016_V11_v2/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..be1ae908a --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,39 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195528/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195528/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195528/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195528/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195528/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195528/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195528/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195528/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195528/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195528/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195528/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195528/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195528/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195528/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195528/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195528/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195528/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195528/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195528/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195528/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195528/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195528/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195528/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195528/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195528/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195452/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195452/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195452/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195452/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195452/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195452/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195452/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195452/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195452/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195452/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195452/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195452/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195452/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195452/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8.txt new file mode 100644 index 000000000..2854fc67b --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8.txt @@ -0,0 +1,4 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8//-v1/190523_195606/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8//-v1/190523_195606/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8//-v1/190523_195606/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8//-v1/190523_195606/0000/tree_4.root diff --git a/samples/VHbbPostNano2016_V11_v2/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V11_v2/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..f55a3f72b --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt @@ -0,0 +1,27 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195641/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195641/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195641/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195641/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195641/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195641/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195641/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195641/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195641/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195641/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195641/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195641/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195641/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195641/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195641/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195641/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195641/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195641/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195641/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195641/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195641/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195641/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195641/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195641/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195641/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195641/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195641/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V11_v2/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..00e0d8127 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt @@ -0,0 +1,44 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//-v1/190523_195717/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V11_v2/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..0182e9e34 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//_ext1-v1/190523_195758/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//_ext1-v1/190523_195758/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//_ext1-v1/190523_195758/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//_ext1-v1/190523_195758/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//_ext1-v1/190523_195758/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//_ext1-v1/190523_195758/0000/tree_6.root diff --git a/samples/VHbbPostNano2016_V11_v2/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V11_v2/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..f06ef19ea --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt @@ -0,0 +1,8 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//_ext1-v1/190523_195834/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//_ext1-v1/190523_195834/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//_ext1-v1/190523_195834/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//_ext1-v1/190523_195834/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//_ext1-v1/190523_195834/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//_ext1-v1/190523_195834/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//_ext1-v1/190523_195834/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//_ext1-v1/190523_195834/0000/tree_8.root diff --git a/samples/VHbbPostNano2016_V11_v2/SingleElectron.txt b/samples/VHbbPostNano2016_V11_v2/SingleElectron.txt new file mode 100644 index 000000000..babda5d70 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/SingleElectron.txt @@ -0,0 +1,463 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016B_ver2-Nano14Dec2018_ve84/190507_081206/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016C-Nano14Dec2018-v1106/190426_095208/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016D-Nano14Dec2018-v1107/190426_095251/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016E-Nano14Dec2018-v1108/190426_095338/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016F-Nano14Dec2018-v1109/190426_095424/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016G-Nano14Dec2018-v1110/190426_095509/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//Run2016H-Nano14Dec2018-v1111/190426_095558/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/SingleMuon.txt b/samples/VHbbPostNano2016_V11_v2/SingleMuon.txt new file mode 100644 index 000000000..c6f08121d --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/SingleMuon.txt @@ -0,0 +1,393 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016B_ver2-Nano14Dec2018_ve113/190426_095737/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016C-Nano14Dec2018-v1114/190426_095826/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016D-Nano14Dec2018-v1115/190426_095913/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016E-Nano14Dec2018-v1116/190426_100001/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016F-Nano14Dec2018-v1117/190426_100050/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016G-Nano14Dec2018-v1118/190426_100140/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//Run2016H-Nano14Dec2018-v1119/190426_100229/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..ec1881284 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,29 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195947/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195947/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195947/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195947/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195947/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195947/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195947/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195947/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195947/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195947/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195947/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195947/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195947/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195947/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195947/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195947/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195947/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195947/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195947/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195947/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195947/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195947/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195947/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195947/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195947/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_195947/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195910/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195910/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TTJets_DiLept_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_195910/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..17657c868 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8.txt @@ -0,0 +1,72 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//-v1/190523_200023/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..6cb3781c0 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1,123 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv4-Nano14D4/200928_100918/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..75a2e8e50 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,7 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio12/200928_125326/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio12/200928_125326/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio13/200928_125359/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio13/200928_125359/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio13/200928_125359/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio13/200928_125359/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio13/200928_125359/0000/tree_5.root diff --git a/samples/VHbbPostNano2016_V11_v2/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..7eadf3613 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211550/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211550/0000/tree_3.root diff --git a/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..3016fecf5 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,15 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211712/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211712/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211712/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211712/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211712/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211629/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211629/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211629/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211629/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211629/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211629/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211629/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211629/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211629/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211629/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..57becf1aa --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,8 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211751/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211751/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211751/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211751/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211751/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211751/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211751/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211751/0000/tree_8.root diff --git a/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..6476c8d32 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,58 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211914/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211914/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211914/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211914/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211914/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211914/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211914/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211914/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211914/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211914/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211914/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211914/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211914/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211914/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211914/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211914/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211914/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211914/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_211914/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_211952/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211832/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211832/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211832/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211832/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211832/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211832/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211832/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_211832/0000/tree_8.root diff --git a/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..8da5f7df4 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,5 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212113/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212113/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212113/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212113/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_212032/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..cd6f13de3 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,41 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212235/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212235/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212235/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212235/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212235/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212235/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212235/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212235/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212235/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212235/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212235/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212235/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212235/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212235/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212235/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212235/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_212317/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_212317/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_212317/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_212317/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_212317/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_212317/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_212317/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_212317/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_212317/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_212317/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_212317/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_212317/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_212317/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_212317/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_212317/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_212317/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_212317/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_212317/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_212317/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_212317/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_212155/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_212155/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_212155/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_212155/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_212155/0000/tree_5.root diff --git a/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..77914e236 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,5 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212436/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212436/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212436/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212436/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_212356/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..e604a7858 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,8 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212556/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212556/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212556/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212556/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212556/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212556/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212556/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_212516/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..84b662a51 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,23 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212715/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212715/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212715/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212715/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212715/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212715/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212715/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212715/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212715/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212715/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212715/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212715/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212715/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212715/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212715/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212715/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212715/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_212635/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_212635/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_212635/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_212635/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_212635/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_212635/0000/tree_6.root diff --git a/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..7bd604dd8 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,21 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201017_134111/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201017_134111/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201017_134111/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201017_134111/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201017_134111/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201017_134111/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201017_134111/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201017_134111/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201017_134111/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201017_134111/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201017_134111/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201017_134111/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201017_134111/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201017_134111/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201017_134111/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201017_134111/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201017_134111/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201017_134111/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201017_134111/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201017_134111/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio3/201017_134111/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..0cdd861f0 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,9 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212916/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212916/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212916/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212916/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212916/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212916/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212916/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_212916/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_212835/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..009de65b1 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1,171 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//_ext2-v1/190523_213044/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//-v1/190523_213003/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//-v1/190523_213003/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//-v1/190523_213003/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//-v1/190523_213003/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//-v1/190523_213003/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//-v1/190523_213003/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//-v1/190523_213003/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//-v1/190523_213003/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//-v1/190523_213003/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//-v1/190523_213003/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//-v1/190523_213003/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//-v1/190523_213003/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//-v1/190523_213003/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//-v1/190523_213003/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//-v1/190523_213003/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//-v1/190523_213003/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//-v1/190523_213003/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//-v1/190523_213003/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//-v1/190523_213003/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//-v1/190523_213003/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..59ed52519 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,56 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext2-v1/190523_213205/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_213125/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_213125/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_213125/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_213125/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_213125/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_213125/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_213125/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_213125/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_213125/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_213125/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_213125/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_213125/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_213125/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_213125/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_213125/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_213125/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_213125/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_213125/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_213125/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_213125/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..50da6035a --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_200101/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_200101/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_200101/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_200101/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_200101/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_200101/0000/tree_6.root diff --git a/samples/VHbbPostNano2016_V11_v2/WWTo2L2Nu_13TeV-powheg.txt b/samples/VHbbPostNano2016_V11_v2/WWTo2L2Nu_13TeV-powheg.txt new file mode 100644 index 000000000..cd9ada5db --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/WWTo2L2Nu_13TeV-powheg.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WWTo2L2Nu_13TeV-powheg//RunIISummer16NanoAODv4-PUMorio5/200928_100952/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WWTo2L2Nu_13TeV-powheg//RunIISummer16NanoAODv4-PUMorio5/200928_100952/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WWTo2L2Nu_13TeV-powheg//RunIISummer16NanoAODv4-PUMorio5/200928_100952/0000/tree_3.root diff --git a/samples/VHbbPostNano2016_V11_v2/WW_TuneCUETP8M1_13TeV-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/WW_TuneCUETP8M1_13TeV-pythia8.txt new file mode 100644 index 000000000..0be5051d4 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/WW_TuneCUETP8M1_13TeV-pythia8.txt @@ -0,0 +1,8 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WW_TuneCUETP8M1_13TeV-pythia8//_ext1-v1/190523_200211/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WW_TuneCUETP8M1_13TeV-pythia8//_ext1-v1/190523_200211/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WW_TuneCUETP8M1_13TeV-pythia8//_ext1-v1/190523_200211/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WW_TuneCUETP8M1_13TeV-pythia8//_ext1-v1/190523_200211/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WW_TuneCUETP8M1_13TeV-pythia8//_ext1-v1/190523_200211/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WW_TuneCUETP8M1_13TeV-pythia8//_ext1-v1/190523_200211/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WW_TuneCUETP8M1_13TeV-pythia8//_ext1-v1/190523_200211/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WW_TuneCUETP8M1_13TeV-pythia8//-v1/190523_200136/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V11_v2/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..ecc94c7d9 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,17 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_200247/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_200247/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_200247/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_200247/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_200247/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_200247/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_200247/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_200247/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_200247/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_200247/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_200247/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_200247/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_200247/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_200247/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_200247/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_200247/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_200247/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..aa67d9832 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,45 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201019_084310/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/WZ_TuneCUETP8M1_13TeV-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/WZ_TuneCUETP8M1_13TeV-pythia8.txt new file mode 100644 index 000000000..11faa1b6c --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/WZ_TuneCUETP8M1_13TeV-pythia8.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZ_TuneCUETP8M1_13TeV-pythia8//_ext1-v1/190523_200359/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZ_TuneCUETP8M1_13TeV-pythia8//_ext1-v1/190523_200359/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZ_TuneCUETP8M1_13TeV-pythia8//_ext1-v1/190523_200359/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZ_TuneCUETP8M1_13TeV-pythia8//_ext1-v1/190523_200359/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZ_TuneCUETP8M1_13TeV-pythia8//-v1/190523_200322/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZ_TuneCUETP8M1_13TeV-pythia8//-v1/190523_200322/0000/tree_2.root diff --git a/samples/VHbbPostNano2016_V11_v2/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..2fe892456 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,13 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_WminusH_H80/190606_071404/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_WminusH_H80/190606_071404/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_WminusH_H80/190606_071404/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_WminusH_H80/190606_071404/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_WminusH_H80/190606_071404/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_WminusH_H81/190606_071505/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_WminusH_H81/190606_071505/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_WminusH_H81/190606_071505/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_WminusH_H81/190606_071505/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_WminusH_H81/190606_071505/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_WminusH_H81/190606_071505/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_WminusH_H81/190606_071505/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_WminusH_H81/190606_071505/0000/tree_8.root diff --git a/samples/VHbbPostNano2016_V11_v2/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..1345e9a39 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,14 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_WplusH_HT82/190606_071559/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_WplusH_HT82/190606_071559/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_WplusH_HT82/190606_071559/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_WplusH_HT82/190606_071559/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_WplusH_HT82/190606_071559/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_WplusH_HT82/190606_071559/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_WplusH_HT83/190606_071700/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_WplusH_HT83/190606_071700/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_WplusH_HT83/190606_071700/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_WplusH_HT83/190606_071700/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_WplusH_HT83/190606_071700/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_WplusH_HT83/190606_071700/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_WplusH_HT83/190606_071700/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_WplusH_HT83/190606_071700/0000/tree_8.root diff --git a/samples/VHbbPostNano2016_V11_v2/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8_CUETP8M1Up.txt b/samples/VHbbPostNano2016_V11_v2/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8_CUETP8M1Up.txt new file mode 100644 index 000000000..a4f2533b8 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8_CUETP8M1Up.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8_CUETP8M1Up//-v1/190523_200510/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8_CUETP8M1Up//-v1/190523_200510/0000/tree_2.root diff --git a/samples/VHbbPostNano2016_V11_v2/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..634663ee4 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio11/200928_125250/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio11/200928_125250/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio11/200928_125250/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio11/200928_125250/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio11/200928_125250/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv4-PUMorio11/200928_125250/0000/tree_6.root diff --git a/samples/VHbbPostNano2016_V11_v2/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..ba8857fec --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_214150/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_214150/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_214150/0000/tree_5.root diff --git a/samples/VHbbPostNano2016_V11_v2/ZH_HToBB_ZToLL_M125_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/ZH_HToBB_ZToLL_M125_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..01e966479 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ZH_HToBB_ZToLL_M125_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_200622/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V11_v2/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..3602bf98c --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,15 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ZH_HToBB_80/190607_053612/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ZH_HToBB_80/190607_053612/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ZH_HToBB_80/190607_053612/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ZH_HToBB_80/190607_053612/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ZH_HToBB_80/190607_053612/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ZH_HToBB_80/190607_053612/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ZH_HToBB_80/190607_053612/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ZH_HToBB_80/190607_053612/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ZH_HToBB_80/190607_053612/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ZH_HToBB_80/190607_053612/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ZH_HToBB_80/190607_053612/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ZH_HToBB_80/190607_053612/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ZH_HToBB_80/190607_053612/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ZH_HToBB_80/190607_053612/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ZH_HToBB_80/190607_053612/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/ZH_HToBB_ZToLL_M130_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/ZH_HToBB_ZToLL_M130_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..28b92611f --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ZH_HToBB_ZToLL_M130_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M130_13TeV_amcatnloFXFX_madspin_pythia8//-v2/190523_200735/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V11_v2/ZH_HToBB_ZToNuNu_M125_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/ZH_HToBB_ZToNuNu_M125_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..f5261b7e5 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ZH_HToBB_ZToNuNu_M125_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToNuNu_M125_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_200846/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToNuNu_M125_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_200846/0000/tree_2.root diff --git a/samples/VHbbPostNano2016_V11_v2/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..3a548718d --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,15 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ZH_HToBB_81/190607_053700/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ZH_HToBB_81/190607_053700/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ZH_HToBB_81/190607_053700/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ZH_HToBB_81/190607_053700/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ZH_HToBB_81/190607_053700/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ZH_HToBB_81/190607_053700/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ZH_HToBB_81/190607_053700/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ZH_HToBB_81/190607_053700/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ZH_HToBB_81/190607_053700/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ZH_HToBB_81/190607_053700/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ZH_HToBB_81/190607_053700/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ZH_HToBB_81/190607_053700/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ZH_HToBB_81/190607_053700/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ZH_HToBB_81/190607_053700/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ZH_HToBB_81/190607_053700/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8_CUETP8M1Up.txt b/samples/VHbbPostNano2016_V11_v2/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8_CUETP8M1Up.txt new file mode 100644 index 000000000..ada01d1f7 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8_CUETP8M1Up.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8_CUETP8M1Up//_ext1-v1/190523_200957/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V11_v2/ZH_HToBB_ZToNuNu_M130_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/ZH_HToBB_ZToNuNu_M130_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..6937ced44 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ZH_HToBB_ZToNuNu_M130_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToNuNu_M130_13TeV_amcatnloFXFX_madspin_pythia8//-v2/190523_201033/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V11_v2/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..1ca5aa6bb --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,5 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_213246/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_213246/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_213246/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_213246/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//_ext1-v1/190523_213246/0000/tree_5.root diff --git a/samples/VHbbPostNano2016_V11_v2/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..0c999f1b1 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,4 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_213326/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_213326/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_213326/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//-v1/190523_213326/0000/tree_4.root diff --git a/samples/VHbbPostNano2016_V11_v2/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V11_v2/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt new file mode 100644 index 000000000..a5dbbf469 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt @@ -0,0 +1,17 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-100To200_13TeV-madgraph//_ext1-v1/190523_213448/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-100To200_13TeV-madgraph//_ext1-v1/190523_213448/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-100To200_13TeV-madgraph//_ext1-v1/190523_213448/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-100To200_13TeV-madgraph//_ext1-v1/190523_213448/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-100To200_13TeV-madgraph//_ext1-v1/190523_213448/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-100To200_13TeV-madgraph//_ext1-v1/190523_213448/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-100To200_13TeV-madgraph//_ext1-v1/190523_213448/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-100To200_13TeV-madgraph//_ext1-v1/190523_213448/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-100To200_13TeV-madgraph//_ext1-v1/190523_213448/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-100To200_13TeV-madgraph//_ext1-v1/190523_213448/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-100To200_13TeV-madgraph//_ext1-v1/190523_213448/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-100To200_13TeV-madgraph//_ext1-v1/190523_213448/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-100To200_13TeV-madgraph//-v1/190523_213408/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-100To200_13TeV-madgraph//-v1/190523_213408/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-100To200_13TeV-madgraph//-v1/190523_213408/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-100To200_13TeV-madgraph//-v1/190523_213408/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-100To200_13TeV-madgraph//-v1/190523_213408/0000/tree_5.root diff --git a/samples/VHbbPostNano2016_V11_v2/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V11_v2/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt new file mode 100644 index 000000000..45236e9a8 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph//_ext1-v1/190523_213617/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph//-v1/190523_213536/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph//-v1/190523_213536/0000/tree_2.root diff --git a/samples/VHbbPostNano2016_V11_v2/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V11_v2/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt new file mode 100644 index 000000000..adedb8498 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt @@ -0,0 +1,22 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//_ext1-v1/190523_213745/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//_ext1-v1/190523_213745/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//_ext1-v1/190523_213745/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//_ext1-v1/190523_213745/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//_ext1-v1/190523_213745/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//_ext1-v1/190523_213745/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//_ext1-v1/190523_213745/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//_ext1-v1/190523_213745/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//_ext1-v1/190523_213745/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//_ext1-v1/190523_213745/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//_ext1-v1/190523_213745/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//_ext1-v1/190523_213745/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//_ext1-v1/190523_213745/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//_ext1-v1/190523_213745/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//_ext1-v1/190523_213745/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//_ext1-v1/190523_213745/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//-v1/190523_213657/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//-v1/190523_213657/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//-v1/190523_213657/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//-v1/190523_213657/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//-v1/190523_213657/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//-v1/190523_213657/0000/tree_6.root diff --git a/samples/VHbbPostNano2016_V11_v2/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V11_v2/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt new file mode 100644 index 000000000..880bdeeed --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph//-v1/190523_213825/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph//-v1/190523_213825/0000/tree_2.root diff --git a/samples/VHbbPostNano2016_V11_v2/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V11_v2/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt new file mode 100644 index 000000000..4af2fc984 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt @@ -0,0 +1,12 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph//_ext1-v1/190523_213947/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph//_ext1-v1/190523_213947/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph//_ext1-v1/190523_213947/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph//_ext1-v1/190523_213947/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph//_ext1-v1/190523_213947/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph//_ext1-v1/190523_213947/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph//_ext1-v1/190523_213947/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph//_ext1-v1/190523_213947/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph//_ext1-v1/190523_213947/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph//_ext1-v1/190523_213947/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph//_ext1-v1/190523_213947/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph//-v1/190523_213905/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V11_v2/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V11_v2/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt new file mode 100644 index 000000000..9d0135189 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-600To800_13TeV-madgraph//-v1/190523_214028/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-600To800_13TeV-madgraph//-v1/190523_214028/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-600To800_13TeV-madgraph//-v1/190523_214028/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-600To800_13TeV-madgraph//-v1/190523_214028/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-600To800_13TeV-madgraph//-v1/190523_214028/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-600To800_13TeV-madgraph//-v1/190523_214028/0000/tree_6.root diff --git a/samples/VHbbPostNano2016_V11_v2/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V11_v2/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt new file mode 100644 index 000000000..df6c44534 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt @@ -0,0 +1,4 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//-v1/190523_214109/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//-v1/190523_214109/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//-v1/190523_214109/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//-v1/190523_214109/0000/tree_4.root diff --git a/samples/VHbbPostNano2016_V11_v2/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..e3dde86d3 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,29 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201017_133422/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201017_133422/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201017_133422/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201017_133422/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201017_133422/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201017_133422/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201017_133422/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201017_133422/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201017_133422/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201017_133422/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201017_133422/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201017_133422/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201017_133422/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201017_133422/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201017_133422/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201017_133422/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201017_133422/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201017_133422/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201017_133422/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201017_133422/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201017_133422/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201017_133422/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201017_133422/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201017_133422/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201017_133422/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201017_133422/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201017_133422/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201017_133422/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv4-PUMorio9/201017_133422/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/ZZTo2L2Q_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/ZZTo2L2Q_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..0e0fabe69 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ZZTo2L2Q_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_powheg_pythia8//-v1/190523_201148/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V11_v2/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..2f5ef38f9 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,27 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_201225/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_201225/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_201225/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_201225/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_201225/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_201225/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_201225/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_201225/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_201225/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_201225/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_201225/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_201225/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_201225/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_201225/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_201225/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_201225/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_201225/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_201225/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_201225/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_201225/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_201225/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_201225/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_201225/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_201225/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_201225/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_201225/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//-v1/190523_201225/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/ZZTo2Q2Nu_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/ZZTo2Q2Nu_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..7d7b9f5f3 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ZZTo2Q2Nu_13TeV_powheg_pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_powheg_pythia8//-v1/190523_201259/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_powheg_pythia8//-v1/190523_201259/0000/tree_2.root diff --git a/samples/VHbbPostNano2016_V11_v2/ZZ_TuneCUETP8M1_13TeV-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/ZZ_TuneCUETP8M1_13TeV-pythia8.txt new file mode 100644 index 000000000..f54f9d60d --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ZZ_TuneCUETP8M1_13TeV-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZ_TuneCUETP8M1_13TeV-pythia8//_ext1-v1/190523_201411/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZ_TuneCUETP8M1_13TeV-pythia8//-v1/190523_201334/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V11_v2/ggZH_HToBB_ZToLL_M120_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/ggZH_HToBB_ZToLL_M120_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..7b557d3a0 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ggZH_HToBB_ZToLL_M120_13TeV_powheg_pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M120_13TeV_powheg_pythia8//-v1/190523_201445/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M120_13TeV_powheg_pythia8//-v1/190523_201445/0000/tree_2.root diff --git a/samples/VHbbPostNano2016_V11_v2/ggZH_HToBB_ZToLL_M125_13TeV_amcatnlo_pythia.txt b/samples/VHbbPostNano2016_V11_v2/ggZH_HToBB_ZToLL_M125_13TeV_amcatnlo_pythia.txt new file mode 100644 index 000000000..72d65f74a --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ggZH_HToBB_ZToLL_M125_13TeV_amcatnlo_pythia.txt @@ -0,0 +1,4 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_amcatnlo_pythia//-v2/190523_201520/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_amcatnlo_pythia//-v2/190523_201520/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_amcatnlo_pythia//-v2/190523_201520/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_amcatnlo_pythia//-v2/190523_201520/0000/tree_4.root diff --git a/samples/VHbbPostNano2016_V11_v2/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..80de9149f --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,17 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB82/190607_053748/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB82/190607_053748/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB82/190607_053748/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB82/190607_053748/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB82/190607_053748/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB82/190607_053748/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB82/190607_053748/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB82/190607_053748/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB82/190607_053748/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB82/190607_053748/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB82/190607_053748/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB83/190607_053836/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB83/190607_053836/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB84/190607_053924/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB84/190607_053924/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB84/190607_053924/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB84/190607_053924/0000/tree_4.root diff --git a/samples/VHbbPostNano2016_V11_v2/ggZH_HToBB_ZToLL_M130_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/ggZH_HToBB_ZToLL_M130_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..0c560cae6 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ggZH_HToBB_ZToLL_M130_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M130_13TeV_powheg_pythia8//-v1/190523_201556/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V11_v2/ggZH_HToBB_ZToNuNu_M120_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/ggZH_HToBB_ZToNuNu_M120_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..ff2eec243 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ggZH_HToBB_ZToNuNu_M120_13TeV_powheg_pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M120_13TeV_powheg_pythia8//-v1/190523_201632/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M120_13TeV_powheg_pythia8//-v1/190523_201632/0000/tree_2.root diff --git a/samples/VHbbPostNano2016_V11_v2/ggZH_HToBB_ZToNuNu_M125_13TeV_amcatnlo_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/ggZH_HToBB_ZToNuNu_M125_13TeV_amcatnlo_pythia8.txt new file mode 100644 index 000000000..4dbd92671 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ggZH_HToBB_ZToNuNu_M125_13TeV_amcatnlo_pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_amcatnlo_pythia8//-v1/190523_201710/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_amcatnlo_pythia8//-v1/190523_201710/0000/tree_2.root diff --git a/samples/VHbbPostNano2016_V11_v2/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..6496858c5 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,17 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB85/190607_054014/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB85/190607_054014/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB86/190607_054105/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB86/190607_054105/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB86/190607_054105/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB86/190607_054105/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB87/190607_054153/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB87/190607_054153/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB87/190607_054153/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB87/190607_054153/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB87/190607_054153/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB87/190607_054153/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB87/190607_054153/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB87/190607_054153/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB87/190607_054153/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB87/190607_054153/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//adewit-crab_nano2016_ggZH_HToB87/190607_054153/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V11_v2/ggZH_HToBB_ZToNuNu_M130_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/ggZH_HToBB_ZToNuNu_M130_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..fc1a15d74 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/ggZH_HToBB_ZToNuNu_M130_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M130_13TeV_powheg_pythia8//-v1/190523_201745/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..1d97c9637 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,12 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6615493c24c7c992521b6dea9230414c8bc19a304d77b1ab5f342d11/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3238266e22dd4b51b158fec7da69bd849345f9b17e97d386a2c118a7/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//128b9827dd643b49f47b2087040896f1cb52c3a4ac27d70c6cfdc07f/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fbc59653ada253b765abbb7bd2144165b8fce81dac4b5e9baeb5e56a/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ccc5623e069ec647989bd497090e301a1c110ab4c0e10f269812d255/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4d4d08fae7ee0461d500ef143f3254752300cbe7ae8bfccb87ef52ea/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a0d5b46e1569a644482d3bb012949e04b33b203a97e511c27034dcbd/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c398b9110460c6588dd21843040c7163942c01bd2bef7b3cb2b89825/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d3577c92a24f23653ca7c42dc233582044ec997ca849e1f462ac4e0b/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//43fefca32aae6dffeade4ab268fc2171396c9daf4a37e94fcb2805da/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e5de5b8826ca3d9caffa335ff753414a2eac36c58db1635d6f17fae8/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7d4b3f28de9411cc90b138b265be18d24e90bdbd37155cc6b0697642/000000_000000/0000/tree_11.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..54226fa00 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7bcc2fafaa26e7e28e9dbf8314b34368e5b626f14c9e8dd300691875/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8b753e024b2abec29f48f6b29cc06f9e3de54ae6e13c4019f35bd8f0/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..526814d95 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,5 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//af5397069f465cabaa00baa0542099f9505030c209051c8e5eddcc24/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//86648431f1d543d5c28c5913e2345b4f02ac91182b4aaa192a65c372/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c81df8756bcfd1c03fecb320aeabdd99aa9689ba74287ca6e09f4dd8/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8f1ad1718def496183f1bfabfe99a922fbd67af7dfe7897451ed6328/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//83713cf3800eed07b43b09300a058e834ff9453aacd11e6c3b5d9332/000000_000000/0000/tree_4.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..f02ef37b7 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,5 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//817d6dc64d99b4d259cce977126a3dd0b16120b5bf2219b777f65c9d/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//07a5abf8395c8f0b9a43748868ab23eef09cfc462305144308dc8ec8/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e4ee2936ea3e05ed4552ac5ef04e0b55856c09ccb78d46df22378920/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d1c9499416ed364bda6aa6894a64d77edd7b68cc466f73208ea6a348/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8733322d2fe51ac0f788c9ff1bf408b195e746f3bf1d13398ac4c51a/000000_000000/0000/tree_4.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..944a37265 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//56b84890afecb6dac127225c58869e95bfcbef79754cfe6aaf8e312e/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6cad8a8a2528276d662ade976733e254ac61b86e5a4e8db44e7d118a/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..4b35eb7f4 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//56f805ace38699519b40ea8c8207c69911e7b6b861054c11fc4ca5b6/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..6a24245e9 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,9 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c5e76a8b3389d4b48f977557a8441a8cc4f1ce6ee55ba2da6a3e7418/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c05130b37bb9daebeaa4090081ef6c3b4878b4c390b575310cc37014/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//aa1d2e6939eea61f8aeba7529b405fee20d235c90a17d2472d7890b8/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//07819c05dfe6b81462a60b81bb99c4579989eb6f68087d3b292d93f1/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a40a297fac0fab4cd315f4b072a5d9e6409bf66177e50921661e9f65/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b39968615b2e9bc2bd51984c66068d85de579ee6cefcf238710acdf4/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1e09ca92af730a256b595535fad2350396e4a763b9e344dca3fd1fab/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9b9c9f7211acc7f65414cb348b0bf137207db411a723187a3f01e2a9/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c0e7e66d7cf1de006e351afef4a2b267a85b6bbc3fc78792849910c9/000000_000000/0000/tree_8.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..5d57a31e6 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3a4fd4337ccef7a7c057838e20a32f73c3f57e5df0236cd276cd4cea/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..dc43fa516 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,15 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//923e000beece01ff231d861eb3245e6b836d0610106b7a22a2616a4a/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8cafd310ea2d04b181c2387d887a6f33012ca0f5c3f4edc5f8363bd5/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//13ac76dd04dd3201582159cdab7bfc43439a9c1deca3a10c877259a2/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//66aa03af4c7a1c94329cafd7b561111ec76f952cfd6533ac909830df/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7e7110f82170711795865f072b9d9a8491c3b963efd92df5cbe9eaed/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d613da6d84c82b836a4e51f90400f825628a83404b233ed804c2a166/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3531f8b89786756957c045b53641db0008352078bcb1ee19cf334b74/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//512eb7fe7989aa809049da06408dc03c7e28e0abff2a935d3b55368f/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2c29582e48983f8ed430ffe3b20861785b502dd61280cc5adea14d17/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//70e2eb16d97076ec77f0144abcd868f5b2b34cd3539ac7d6b7857726/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1a573ca47e25172c94ae1d22cf90f941babb33ae45b78574df238a41/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ee9a270119b684be15c7dfec48d646c11ae19cd5332db203cfcb4514/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2a5163e7e7649aaa4d095e7319146915d415d9b5a64e39b3683d6eb7/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7fa8506556010308a28a1b591f2a844bf08033ceaf91e92114f9a861/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//19430d57d8e0e8646b0d7d894939fba8efcbe48765b5f16e4c99b824/000000_000000/0000/tree_14.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..d94fc6b23 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,14 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//997ea48581884e3d3acbe7a58461148eea9ae1256b57e3641b47b327/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ed678b4d24a254749fc9f0cfd1765c7de7a90ddbe44a88e147019dd6/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//49c0c587cdfdff68ba9467fcbdd6dfb6bd0bed6970bf1961110c127f/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6ffd563c9baf91d133f990d1dd58f44ee24d892a6763eb7fdc6bfe68/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a55667f394510e43f6c8a4e73ddfa58d7b160ed8fb678d5128bcd64d/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8db0d10a1fa0221e2fc9437526fcc39e1f948501415cc0498cbc20f8/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//64975bb3adcba8a210fbf61dd892d2677811aa002f5e23fe37e26d04/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f3b14822a40b01f96f89d77d94c3d8210c77c1626733ad3c3d1d2113/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3161cab044cefef7853f86027cf4ab35af121d8fc205dee5275e5d51/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8caaa1ec83025f2880cdebf0f16d13e9b7ddb6ccfb8e6fddef94e967/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f4bcd8eeadf43e1615285e3299dbd566e2d5ad3bec8a707c089839ed/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//877c2812b5be0d8715abedabcbb615b7906d563cff1105d1d409671f/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//940862af3ca8d4e3e8481c5e0765db59074d1f337b2ceb86af45a6fe/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//740ea9db26cd848aaab264903912853816f08f6c5b25d02a89f77be8/000000_000000/0000/tree_13.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..e2dc21c3f --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7dd9cead9fa4cc82c1cd82c1cd6cce0da4c562805fcd6e0f5664fe0e/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..037c092bd --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1953940a1b9971df03b9d9e555854639cb8181415d91d07a7ea149b3/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c75c111db486652137f276e8b6a8e4755a8b442c2963e555dc3ebc9e/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f71142ef554e05b82c7a93cbbf341ef7fd1d1f989f6c8d07f6fac3e9/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//19e58b0a9be94f97d03659a0150bba1f01c235eac66cc3d07fa72cc9/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f6c951c2fed4972e804c825fa2a5eeacec378c33009b6e3eb2e658f0/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9356248cfa16165d640b9c07d830286f4230c105a3b5496828dc0b27/000000_000000/0000/tree_5.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..85740d1a5 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,4 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fe90caa785951039bb252a1d08c105238b739798d3881f64ba8eab3d/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//03b4307dc870d87f1273218c2a099869a4fb8f0cc27a3c944805ceca/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//23aacda8d21e69ecd700743681362f289baaa8e8d2c45a0491d95b8c/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//151f6d2f6abe1b5d3fece9af0c9b823af18afe3ee58cb8ee2a4d71ff/000000_000000/0000/tree_3.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..a49139748 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d924913ef2546d775634f24ebd9741172c47c88728cd0f3d89532552/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..102f42b0b --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//884df027337f1bd0def178ad8a317fea35d8088e57098f5be4607f1c/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..99209375d --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c33a8759048ed073e1beb575144018d73661aaabfc3d4cde76155068/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..a15037c04 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e4a72179f6c3f9aecaf188ab41d2c185dd9ade35a78257e329a88be8/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fc288884381323868d3ebdc22d1bc76fa63b04597fc37650f6ca1a08/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..81bfbc3f5 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//dc4c78e070ada687d19f62e6111877388f2a9f87d34c1c8bffbbfb66/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..bf4557f31 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6fce97893b418cdbbadf19cc9f52ba03c3299f2a32483e593b4a31ef/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..5a02cd530 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e7cdd6d3b87a7ce363a465e7d1ec4b86242f4c6535c2d28bb58f01dd/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..a648d829f --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4275253eb132e739da74bb5bdb6a62092544764fb2bbb11952666639/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..121a1b194 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ec72ef6d6ae2d8cd555fe2e9cff798f7c5d89d5d4929e70ddd4d5257/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..9e472e76e --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6bfce988931af0f6de1fbeed06d7d92161823825dfd26df94a4efd58/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..2b03d6114 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9dff21a1e0e5d29eb50c0db0c898f3e8e623baaa3aedcf300c249aa6/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..4cb26ddc3 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//adf28295df81c88cd495e13d3dc58f35e030e1b610698e97f4a88837/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8.txt new file mode 100644 index 000000000..fe942fcd0 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8//ce9ebbe2dd1aa821d1357c5af4ca12c8b73989c98f1e5667ebb59002/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..04229b815 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt @@ -0,0 +1,9 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//346ac0822a622383bb74ab70d84cfff4625b219a88ac1582b944e8c9/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//f291a9d2d9b49fcc0c0178907d242060afed3a358411c1619c9e95d3/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//0aa732f6a0b8acf5277379f026e83d039573bd15d861c2f843e334fe/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//8e932c03d2f40c7959f696b9522d065e24a847668d6fe0ced7b341ef/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//d52548da23548253170051c4a4d05ee3e12888cfff8726f7c3377288/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//bede01cc05fb143b7ad715b189e13a715000629c376c8552bf2d6f3c/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//8c8f952b867a16531df9a965685315e98efb249f6937cbdfb8ab040a/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//65ff90d0a3edeaa1bee2f0cf026892bebf1f68a8e317cb9aed1c96b2/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//b4221ff7eacebd82860c6db69c47ab19ddccca86da03d27e808705da/000000_000000/0000/tree_8.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..a9c7dc427 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt @@ -0,0 +1,15 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//633a5fabd06a6b15eb1834819cfac766c30c60672239c5e141cb8c81/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//290642d7a466701ce8e151e3fbd6eb2fb1a272528989d972ad91a5ab/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//1b35f4e3cc6ff77d9ea1a260b07989eb4d8d6bc8a9d653b9222572c3/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//be9295f1bc8fb05b55e32b2fc889b6234a827a65150a4b441fb81e1c/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//aeb9f5c6514e58d12db5459216499f765ddff3d0a7818c665477e36d/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//263ee74690a5298827a4328c8c9fb1648b7bdfbab2220324c99ca0cb/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//38f1f4797fdd1aedd1939dc8733bcdb8aaa5227d15722bb0d3ab7c38/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//a0b35a2e898158520ff33e720779c6f0fad7dd2deb67467d31e14824/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//7b31a7e8155562b6953a3260c286c431115cdfc524722e71113fa4b5/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//a91f8e4e30fe75828f12fda39c6de2be8953231b8f0b7a6fbb29a9bf/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//2c22b36d81d52473fd1188edb19f462cee40d0ab047d3827d4be1292/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//b8e09df0a6ca5fe38b0461ee7a6f6e93e4483d82d42fea206fdbf285/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//2e8309871f4dd32c3670ebc6d989aa45b682de5d977047bde0b00021/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//042a8cd02781f65de0b6051abdcc0463ff2378a9c646aae5140bb770/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//f3c7aefb6223f96d14f9cc5123124fc060d977f9ec288ab5e252925f/000000_000000/0000/tree_14.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..f4ec2a354 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//70f2a345d0d0bbd42a86f279de0df73ba835b8c75b4af06a8b8cba6d/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//9bfa4708032f1a06a50b2996a0fecf3265363c47609159a917ad4fa9/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//0375a20991b730285bb7fdd8a0effc10e94271d300ef1c629dbad85e/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//b34a181254efa88f74a17b71ece7bb779d344b8cd47bb15973603d5e/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//c1b999849ea053294e71bdad560bc50bec38d71136a19dd6a6299e46/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//d911b4f090822f0c3f4ae4e6a2fb231c88641abaaa1bfb46bf3233a2/000000_000000/0000/tree_5.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..0bf28ff81 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt @@ -0,0 +1,8 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//de2f5c620e8da2e83bf833ea0c85c6f6fd58fedb5a1d767ed15bb147/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//67b800fa9e4aea3bda68257b804ad3094426963fc7a6dc5b5e9edef3/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//9d99657b3a30aa7767cd0afe19fe2519253465180a6343e503020580/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//f15c0804210d1dbf85272d48c380081b759179275b7bc1b6da79829c/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//54632fb712b01bc8a6540f9200b24aacb0d224c75e28a5826afb302b/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//48bbe2a1e6a1b61773157370177e76f271104163e942df6445d99ff7/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//d74b3e07129a7da1768c9a2105e8487c85bf04cea18c5d628b83674f/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//300c84b94359b6e2676761b7cfee8d103a2420c06f04a8e6f178ec4e/000000_000000/0000/tree_7.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/SingleElectron.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/SingleElectron.txt new file mode 100644 index 000000000..c41e7da3b --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/SingleElectron.txt @@ -0,0 +1,47 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//ec5f6beb0854d9325eedb30b6274b66bec30b2af49f6fa02bed23c54/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//e00c439c204963f8255834d6e98c0aad5bd5d8bc99c1802a1f8bdbc4/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//69bd1450fb8e994a861ef21b9cf4ab663d6ea7aeb699fa7aab582fff/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//12d0b51361da25ba32fdec196bac7ce77d1fdbdfa0045e96e0d19138/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//f6ae164a2ea7f1ff2ed159cd19afe305b28026fb3fdae73fc825ac5a/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//0a7bffb063652801ddde1e91349baef757d7cb1e369038eb19f9bd24/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//e4804f818580c6102748404e85c1528fa6a9f278e9588d7ac399857e/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//b6937d94e406e410dcfc513363adda8b66da8ad7dca83c379ad059e9/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//5b120954feb77c87b703dbacfd6941975ffee632f06c3abbd2f53bee/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//027c69e693b2da73f71a898a8d33c7d815bc62ce67b3aa87c114dabc/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//f364a6cea5fdb5b23f583b5a128bb2dda2df2fe234e7bfc6c1695fdd/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//f83453aef2a2a7b0bf4cc00524c2307de5fca4c5778e559d4e6ef98b/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//a3137ec0bbea441060e0fe2b414ae4ef317197e53634008bdde896d8/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//a41773aaab76a178c47ea240d371cb804aaeceb933abdba883eb66ac/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//cca4bf51cc42e399c6838aaab6715061324902ea1956f75ddd8c11a7/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//6a131bef6f5f65147d5a641316c7b8ebf7554561a1c19a547460959a/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//bd18bb906363ab4aba281e1845639ba13ceafbd0cd805f3a5c9578ad/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//69c1724463451de8cb7f4ef4bebebd734803866916cb7dc2b2329373/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//9da91dba59db3e77b7e21aa2226417bc05370286f0d5496f497fdc11/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//9d3122bf3e28d0fbd3240a2ef64b712db5084dc6bec10ad51b2fbca0/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//5929396ad238fb5e08a59ba4309aec399a7d52c15eff7cc5a9647a79/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//e8ce51436d668506a9d55b22c5e2dfcdb5fbb942bc225cee79b155c4/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//0d790a5e4130bb56adf1809c27df28223384d353162e1706468ddce2/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//2663854b3f45f9dcf58462a7054164131a7f3b3e4baa1f4cb90f4a12/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//6a88a7eb612b2e2d7508efd1be37527b2600fcf552a56fbda93f5fc3/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//bd29f8e34419007897f36878f3f04e20b41570f03a929bfe42c7c36a/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//dd6881ea30dba2361891ee295dc5f886a04fbf152c0dadef1494f1a9/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//74fca7b22a0d9b092071cc0757ed65ebda3acdf4bd88107cbd3168e2/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//7d80d5ac316a2385b52563f003ce2a51c266d747ce73db955c0a9618/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//9e3fa22ae5de00ad371282b3cf2760058edb82fe39cd85c10988d788/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//068356104343b2d8028cd387031866e27f03123a0a2a3e29fe07b9b8/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//d53911047fcdba07364b7bea7300670b9c45cf472dca0b3d521dbeb3/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//fe19f514a267e0f74c8b45854d36735a22dedf508cf5283f5982a49b/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//5105aff9c160d954e186bc826b695ae69572d3973bc065d6fa5b7f49/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//310ac632b5278d8ccf339c9b801ac76978bc1a4c3277bc6c16b5c8e3/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//87485ad7ba562985162e7ee33888c39ced29f2cfe6af2d74ba4c92b1/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//947fe987798280c05ef9d45049d4a6f7a925dfd49c20a1d2f8c2f89b/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//2e10f65cdc45bdc2f3c5c7643aa56e6467326f2a5f69691b6c5b20b4/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//d472e2598c3f4bad1997fce4ec4cbab8429fa5aac9603ea438b9670d/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//a17d63295fbd2c9313f766d4d5cb136ce2ac44a68b662787c38bed7a/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//a257725a666a095d2c26b7a1393e87ad5f3d0063af8a3dce3a0e9f94/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//9a7441321e4bf088bae20dd7567ea29c29f26f73f44cf27b9bbe979b/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//2a1976bcefff5bbd8bd9d4e19b303ef0def725f2bed4d0ca57eb0b0b/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//404e53fedb75f413c53f485ddfb48e0ea8b4531875f939741edc8113/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//e5fc2ebe86fd84f84f3f59a7e4053f9e24beecba9ea22c51cb738387/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//e36fbcf86e668033f66ebd0109f13cc3305119d7bdd087ed5115c084/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleElectron//ddf7a2177a689fea289ba254208f53d52b4dc7cccbe4210ce4f14821/000000_000000/0000/tree_46.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/SingleMuon.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/SingleMuon.txt new file mode 100644 index 000000000..ffefb5130 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/SingleMuon.txt @@ -0,0 +1,57 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//a1079430d343dfb94b9278ae202f831ff4ce5a57d8c0cd8bb4c3370f/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//9fc4cf4205333e19f8b4a937a0e20fcb89507cb257fb5cb6b775fd25/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//e87321e8bbe4daf9cccf9e9c0b76cb7ac73c8e34f74cde21bc1444d2/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//b623eed5c33fa1526daee68edc5e160456c3856e4617243d131454b0/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//512ceca08a16698f3ab22b811dd722bc6aa8c69166759d4a008cb159/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//c119e8015a4446e5fe4fa417e930bfa41e9bb7f79e952642f32d8b85/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//016d7d1e84d52956597b9b16da44129c27deb113e5054910d6989828/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//7463e458d73c81d86cac10ef8c8eecbfef3967fe78626b6abd9dd676/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//69b0992e6c3dc0093582e587cf7fe8743fb5ebd52df9e8dbc03bb7b9/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//39e798644802d4183433bb1e2a8bd42f3d61dc6b65229b47a44593fd/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//db22201f20a47a07d35eea800f148c10452f0dc4635909bede1d491b/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//a38198419cfec4a2d3a2bda8ce3f20d5df180b2d6401da2025dafeb7/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//add5ce3bc7534a6723afe98bcd98c072572cbdcd6c105bc6681091c4/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//935226c4b1a4cff02135c5c01c1a44ec55e4212b42afd4fd6abb8308/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//ee0a6a41ea2b63f3ca39404834989ab2215e03dd973db6757d2c3c53/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//a2637352bc904c9666e6c9b9e78d8173a33b931e956ebb7e2d838f07/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//ad4379e704b21cb4ec3079e5b68850ae08a7bf0425cf51a0e6522281/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//374ef6f19e9934948667a0cc08f0c235b5d05ee728be819485fd75fa/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//fd039a7cf8575fd9ea51355b744307c4563bf7f5643337204386b7f5/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//f59f4f2619a781b4ea016384bf6f75707ad25abbaf16871da393f039/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//769aecc899b4261610f966673f9cbff6e6e3a534899fc6d9b07c3e02/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//e1f65faa115b699eebc82d713a92292b0802ff0a54bb589a1a79558b/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//1b5df987546b5b74bbe7603b6d4679e9b1ecf0ddf724e840f6aaea5a/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//4027b33bb5f3b974db5b08041fd8c58cba3e2dc0d498e3e662103095/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//d52963b92054122ed2a8a76d0e76eeb22d4d3b0e1bec0c98dbb7d5aa/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//84f3e2f6720f2a5f8086a2fc4a1eab8895e44c2ec5e34867c04e4d4d/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//a74c8382ed44b77bddbd4634f2a3371c4bf393c95d47f5347ae48aa4/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//141090639dedb68707f55dc07dd170d08b713ed78ae724cd2a0466b4/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//b9026740ff555ac35d8923f07ed2cc2c3eaed35de9289209dead0c42/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//a5e503e3a8149e1a6c2b2ec94fe059aa0ea31ccb192e80580741506f/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//c0f2790c2d89f64fa1f0be4447c0d1e6048c9d12674960b9c91fcf01/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//1707f5aaf9b1c7e0c50af3f7348fb83b5bb889b351dd94f249f62fc3/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//15cdd6259232a75ccd2604d5eb3da85cc108de86dd76f2c674184fd2/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//00f654907c429b085b7f78bc2db590c6da878fa9a350b5b6d3b80e46/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//d528e647997fac8a19db7479380ffc8034dd6e0ae1c0af98d581a246/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//8a476cd87d408e04d67662c71368ee5b4174682d31b0596077bcffd1/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//4ffb2a4b1023fb90d194f2f0e2a89415db8eb3f3d5a8cbbb437eb98e/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//b017e344a7db7c020e5780ec9e05f2e4444a1fed4e024aab63c17cd5/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//5985c73bf09ef547e646df0b5bff50de4c93351afcdc4d2ec72bbced/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//f10f84e3b73efa4f70fa527d9dbd1df0660ebd15dbc3cd7d5f1dbd28/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//aa46db910860f10d08c07cd634155b706af234c4d1e35ff22d55393d/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//bdd638bb8504da717887b178426ee7023f5c82c66a13d5a63548dacf/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//4e94d4862d261bdd442ae07ba1928ee4bc42463751c1c45ca85e6bf9/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//f8c5dc8a08fdc7a6c8fb55362a3ee51a4d4306ab32c3e1e5f1e7b03a/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//e94f3df46175fe709f091f963e052d40c3e4db70d754b3cd0ebd8f0c/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//9aeda68d2d245f0d5074c73c47b0703f327b32307bb399d73d62a24a/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//3bba17be218addf4336c073c97a45aee4b5874d30b127cc809918ca2/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//d1fa2352aafc26460ce2acb7b93fff7a0346f4bcb1a4840c37c697a4/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//3a016993e4dc17fe454ef484ba635c3d273395904fdf80f1017a00e7/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//296f8f44233f12ce4a6fa80abdc7785263df33fed41eb52ca80106eb/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//2620e3cc1ea20a4cdab20e460b030336818297e8cc90218e1088db52/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//24bbf5eda99557a73de691e0c557904af25940b4e9b3c1d5570d0fc5/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//398ddec64c4323fcf477c03162b4c2d10c701aeedfacd2ec9020f536/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//60eaefeb4b5796ecb790068105fe8270cfa8d7849d94018487e4f764/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//75817d9d75daf0261b9331415cfe0d16d876e8dd86737add6f3ce100/000000_000000/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//348df52c5d9d869a83e1b4b902c82d8908e7b0dcaa501bee7cfa50dd/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/SingleMuon//e4494927f1ada5a6ced9f14118d84f58097d1480ce922a2f0e8e70e3/000000_000000/0000/tree_56.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..ed5ef67f2 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1,122 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//011bebc2eac5ef597043d4930f45ac41dc53e9c77ef4383b10d91dfa/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//3cc1d63f22244188299c891519c86ae96fcdce5d1b977c540a3fe24e/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//1181ea21aa1402aff0b993a84cbd090b2d9baff0e23df107dfe9aa0e/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//d0a1527f766388c5236a73d19d7b11a6ddef4d9248275a65f8fd4dbf/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//9e5ad441033eb236d677d88819eaf7bcef1c832ecf4ffe9c61762fcd/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//b494e80fbd61e99988222c42e5f761329e36f1396854e234fcdf8803/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//e101b3d359adeec3a79a4695dbcc63d95279d5f76fd825d619fa001b/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//28c28fdea399c5e57b8e183dd814dfb13ce218c41a9de64d14c59b60/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//2fddaa1e7d72443b9a4812de240d6cfc2d2ddd531180ca754338ea0e/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//4626ed4f639b47cb539888cccd6fb28273d50d6999c68a1a66307b55/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//757413edf406daecabedaaa341d517a6499ff879580079861a7de3fc/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//ec67881304ac32dbd2461363fcdb1ca257eb21ff0a32ba09cfeb6082/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//b48eef553eee0e11875071ed3833404db8d89be10a6d6c0a6e3e3602/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//c3f7cf5d338780c419f7c58eb3fb924d9b764b61131f99f33b24aece/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//48bec3f387330495ce2c4735e07660363cccb489c976a73951e2a542/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//85fc0fd0c0a3277f3ad22734d254592bdd1273a95fea372f3460e46c/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//57450839a8c6aed89b779ecae353c96244358c4ec82c2749ebfd0d34/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//bf387f4d38b1e4927dd3e0b473dc04c439660b728504a174785db83f/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//c67ffa23e14a9cd01962dba3bcfd83fc138d62b8f131b9b12c64fd0b/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//39bfc54d60444630ed9cc2aa9cc82ed1714342ac37b0a35178b21000/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//fc790eb682e86c03a1690f08d961d698f1e3ebdd7f16437b9f0f84f9/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//0412506c74e6c9c758b4e3987e586fe4e2047d4fa8b7021b4583f915/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//b66aec7d0cd72801e7b4987b7a40b9a0e471c2bbadc6c9f727b94da9/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//c9785ed0a7aa5ea7b930bdb4ac739ab47439388549042b5c2039d739/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//96131f34add2cb89d78665fc03f89028e01e5d02baef68ddcf90357c/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//ded785f86f3e47649c676eb3123512729f83545be064dc35983c5379/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//e986cae73f96fd11d6ad509b49c9df0a4de29b4899b95df1d15cf45f/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//5e0f994a1a97afc6965160bee5d88f6b4a79c6df69de4e6216ee98f6/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//0d93a6491bacb85c4907aafb07b4159e599f2fe595a3179cd19abc6b/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//95e9bb839eab114f8197675f7913bbd7618cad56cfe142f4459c4a69/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//c7b23e3b66a9953118453eed981ec0a786ed9e05d9738546d963509b/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//5eadd324e48c0d7b37851689a8b20bc1694da23807064da4fcf318a7/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//02808c84adf1d54fa06e0dbb1349eb7c6697c91950dbc8ef1ee1d100/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//ba4f1bc5d1b4fab9037f0caf93bda6566b6088886a2f89cd1eefa34b/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//e8afd937df943b41801941a3c3dc2006a6834dd3a47214c1c17f84c4/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//df88ee04692e84b8802b4fa2fe704e40e3023246e2ffdf51f7fc49af/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//8795320a48af9580e8df47ae41d9b4b71a8b3b5c9c341368cebd3861/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//4189cb55b9db5014bebd49ef568921562e84bd6031d577f705fb56b6/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//620fc56d1615492e6d5ee62b13fc14fdc2501469ae6b660266ac1eb0/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//80809aa5369f794f3e4bcf02f50deb07cab96de0d7c1b314689cde57/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//f6ec21e3f7f2d64f5fc3e3561e7800f21c2633db06a06b5ced1234ef/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//3a565ba4b2e0cd8ed72d5d749183b5128674486444721a96c3ce2068/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//ae59c3cbb1fc7e50982c01ae2f5ba854e3127480e2e3ab63e9cca583/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//6a208966c413dd002454c28ec7c59c1f9755265504a5195e05b74ca2/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//af3d2501e7fb025d9c11a7aaa785ad2c7ff94c264bbd424d1fdc7f34/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//f6dfaa02fe1e55daee128f8d795cdc412121acd05666fed6d8c18c75/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//79aee6e907cd6a187b4889efe30cdb4be5152b9638f8df2f0ad58db2/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//ce309353bbd5a30befd7ba1e7bbd5311c09a7874fed299ff3ec31274/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//1004bdc66b64a39a91bf1567cbda5555036cf7738079dcd9fcc7f798/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//2418ba864a966097feccab68ff6732710be2984b881ab86d67355658/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//73d2261556d6f5d35e97f95367c2e8dc4324412e1668dc8611304e1c/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//689a31919a18a871b96a56c95865974dda6b1db11822d4b4e0bdd9ca/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//5adbcd3dc7cfc86c065925d47431e97d9e1e2a48780124af11b60a37/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//321d99ff7ee35fdc8576bd44e13713a46ed626d88fe920e47d64870a/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//1e63c513e2808bbcac3b7e3e88b65a5bf750458a31df156a518be9df/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//a8ad7f77b13653b4f2033c18b0130a10e34c4f1e26af7941722599ec/000000_000000/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//4d8662ebc696512515e5f2e1ba049f6126b2b6c645de589f28c87d2d/000000_000000/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//5383b984696f9f12f1ff1bdb56bf8d13d50b87c91d9e7c0a97624b43/000000_000000/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//c70a91361ac03681845f9471d0e9034077c431dbc5c59748d553bc46/000000_000000/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//55ed9e56b84a8ed2fb7880ede1af20c27835233214fc9ad9aa7b1d72/000000_000000/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//0dae7f1460f0cd940359d48969910bb2d41802edc58c82ad881661f0/000000_000000/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//81414a8ea1ac5180ead2538c3b65dda63638ea8098fc0a10fef9f43c/000000_000000/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//4691370f1b608bd3d62345b214582d811151aa870dcba363f4773e0c/000000_000000/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//2b03b7280ee6c818658878ac36bb863a2de6e2e1b18f583f481e1da2/000000_000000/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//b001ba854acfc0fa1bd55af1001b2a1e1ccfa77b80c6d648b1370a02/000000_000000/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//5f0479b586bd61cd577e9cc2cf65a0fd187af9684bacee13804204e0/000000_000000/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//3b196f4b86ae1a4bd145bb4fba4bed032e0031cfce9be5a98dd8047d/000000_000000/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//10441fd7402de0f4bfb31693fe1c56e32428342737bb7f3c6da27443/000000_000000/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//553257cd4cf4b915ec92e0da904b8bf9bfa79084664202f1f18433dc/000000_000000/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//8613e6b04b4a0c331fb9e2470bd8d80ddbcee1bcca17b8510aa6b4b5/000000_000000/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//14f973e74b677510ad5618a9359ab45e065b525aa0a01058e762ba5e/000000_000000/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//a5da285f268a75a3cb25b622c68164c107b9971f92e7e500a4382a93/000000_000000/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//f7570fd533ed36051a41b0c795281ae95a68393a7399f58961ed1061/000000_000000/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//2dfeabed80e4f27518102a20378b30f8254956f77f1d4f20dd1d296f/000000_000000/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//608bb5af625d4885318baffd3d95a6c73c6626c225c9626be83c0636/000000_000000/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//5f93cb8c4a6eb58c9c50ea3d250ac86c516d6a6f58fe88911042419f/000000_000000/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//9304532ebef04d2f4f0c3c3ba6213327d51d2ba8d3ec84abd83e8939/000000_000000/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//fc3e1660e2afe11899c95f2fe12758b025229c1db29f56e4e84a697b/000000_000000/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//28c1357837644a9acde59f8e48ac82042afc8cf3cd36320c1d9824a6/000000_000000/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//08960817e89672000193b013b64bd8acd63ca261c2c4f37ac47481d3/000000_000000/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//b6281b2a0f4939d98ca648f2e687e9e1cc61b78ce7f5400834df2d7c/000000_000000/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//b1b0f31c6594873950e552ff41be13cfc425cb0f2591a92db66afc47/000000_000000/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//bd477e6ee0ec7fc8cedd9139ff3cd6506609a2f4f1b642b96eb7acf3/000000_000000/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//6a409401274c37f3fc6334fdcc043aa3306ae037a35a768d422b6791/000000_000000/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//283165bf1e1a444c53692837ad476f8b0f2339884aa1a0fbef8fa065/000000_000000/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//e2f1b712790ebc36269b3517bb9e7a76802e07666d6781ae1afb7397/000000_000000/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//c640a9ab3af6c2d33e206f79544a3a40dd55a486e06c632fd6a96525/000000_000000/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//58aac15c325a1b047df664bee7b18cae1b41ced3701bf822d36d2c5d/000000_000000/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//be17bd88e2936a8e6de5936cc85cc57573e0683eac3db1ff0f663d9c/000000_000000/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//2e6cbd4a9681446a3ee4ae88ed2218ef0f981e62203108d9460a0131/000000_000000/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//abb0baa30a6cc87f63ec19aa3bbbeb5c9f6d0cfbab4193c5d3a3e7db/000000_000000/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//0877640bd6037fae416af93f0b6cd170df316a24464d81aacbf42db4/000000_000000/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//36abc3554d41bd08c578b30432728c3d1dc4dd3478ec5a860ecb8432/000000_000000/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//ad86473bb8b8d44106ea6a2135795382b362945d6f76176fe68e59e5/000000_000000/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//76e5e36e64f97c79c931315d47b2e89261e613f8163da774d9ec70fe/000000_000000/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//fe74525577e3acf6eb405b4e7e7f103faa80ff6b28aac036bca69c09/000000_000000/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//a5d08d3e9b9f160b8121fc15a6d1be0f292edffd522b5b1ead68ddb1/000000_000000/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//52108b2aad490e868d137649500715b45ca90acc7486d36cb1a297b0/000000_000000/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//4ca98932461863fe38b74e8de92137c10e9221e92bc50278ab721429/000000_000000/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//e14854ad28ce535f1b2e39dbff89474ab159a7d7ce9d52902e841111/000000_000000/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//efa2215439b437ec4220f3322a8527d19450d3ce523bc270fbade6de/000000_000000/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//42ceb5ef00c1cd844be2a6ce4bc038889a574f134f26f009039ef0e9/000000_000000/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//5954af8828b4bb9227d2f8a896bdd24808cf5d3a7e42385fb6c46544/000000_000000/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//76e5611f566e77df53dbf7979c12fd9e73a66c60fc86866e6313b681/000000_000000/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//d0363c728f23d917e5d43f23ec8069fdad81a9795e6c391e78137f3c/000000_000000/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//ae50400c1bb97ff1be437032e1da1285414f589876d1c40be5204207/000000_000000/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//294c0b938eebcf4554f992866a9c380bd6201436fcafc81e7e871b5d/000000_000000/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//207eda5772c7fc63c5a86150d7308eaef3a88e898d8fbda04c414aac/000000_000000/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//2629b108ca4e2fb64e938988dbd1eeddd1fa45401b61bf3d2ad98f89/000000_000000/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//1ff966ed42609b68e0b9ab820fe58b964d085061aa72a0dafc66694f/000000_000000/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//abbac5ddd1372dafbef8fb190e14302876509edb3892de0916549b5d/000000_000000/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//8288e9828e74a022945c0c98676360d578bf9a5f1a1277ccebf8c928/000000_000000/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//dd507e2d9a8f087a19ab513903f503cefc5a9f73ebb35d260c89fe42/000000_000000/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//4aaac32c18df24b136a130420dc4f329e425aeb58ca1b3057199e37c/000000_000000/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//7d15fc5fe58987e7d9dd6fd4425d76ab66e9a45dd2a3f2f011f4020f/000000_000000/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//7e46cc37bec8f9c250dbf62f6a8eb61cfedf6a49c8237c15b40ddc69/000000_000000/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//e48908810a58bb5b44276314f1d6228757b5d15dc2f128b1f4f68297/000000_000000/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//a6213ad2a79d239cbbe2156d269a69ac3124913a6b806c851dcf460f/000000_000000/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//9c362c6059f144766bba4904471cd8e95e469f0d4d5bef1668e91152/000000_000000/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//58c35cb363ac3895e26b7838edad9f2c8a9038da35fbcadc966e933f/000000_000000/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//0d413672fc7db1b060d3d5efd69ae5e123b45b9cabcf7537679b7400/000000_000000/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//cc1814a76d631c643609bbe84fb94646613d275e07e19ae63d9f8b63/000000_000000/0000/tree_122.root diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..4c1d677cf --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,7 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4ec6baaaa6045bf767cc726ccbc79c7cda21f4518f0af0472c0de03e/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8734c22aee11e6e54d189254c734b354f36a204cc6bfd13685e84c27/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c8507488e0f62738929e52828d23ae3fec8cc472783b764d3ba23432/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//99cd155cc5a8b8677b921e413b06d9106f6ba886b93d3233b0048865/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//afbf9e845e19621ced58a80566740f1d873f54c56334e7432adec338/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//817a6e4ac986c7665a77d380963f2761e6414990f9bcdc9ccd4757b3/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//588c37c3cf4a6803fee20428b9206041ac61f7c5cdbc351b2f93aa5e/000000_000000/0000/tree_6.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..ee556506a --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//39d2671ff036b36492162a3027531df0267573652f5fa676554aed05/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//33cb7abefe23139abde4e63eef0cbe08c06418c5d25939dd5d71944b/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..d883ec5d4 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,15 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d906fcda351d62f6c68f319ee92b18fd08b5b111404427712fd9228f/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//cab788b9ad5ca44a88308259e60f604e9ab7c5107ff7f19c1cebf33a/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//823bc45b1677993f8403b130df3324e2c1d89d344ae4c105f022cd73/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//efcd686c3305355c94d5af524fac0535d0a05b2a1b0fa2b38c39ec6f/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fea308e772fc013c6de36da27635859cbed0f44a0058419e782b6486/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a2ebc2e8174fc52bcf0549a60f499dd3aa48f40ad312c08747a606ca/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b7a79e95c09db3dd023cd5f3a69687b34ad46c376d3a44067f685a51/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ed95085aa3b82bc169485340fe523f0a88036e701daa927bbd22884a/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//df5bebd9bcddc465a87b91c4ef211803e702c3cd82552b2656754d9e/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a20a63fedc53c7f9f6c9ce7247a9ce2bd2974a5f15f48e3feed4d461/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1d8d4babd52856d834aa47c5d82a79c340dd53a4cfdff44b5df9186c/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e2eb62e9c50c07ae6f52f6f398b1ba4b2eabf95e01aa8a1736e17255/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2fb3309d0db3d011c8bce0884a06405a8d33cadae6156a10b406df0d/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//99110dfed6cdfb8400a0d7f4a1db6b660394b9650fad5071fc026c7f/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a3764b8b3281656fb85b7e252b1a5d7b1c1c698b40cdb09fd24cd236/000000_000000/0000/tree_14.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..3eae61452 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,8 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//64036ea9f61b9d574951ea5ec1b71f1078d03833cc7e6fffc502feda/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c122fe5c525a87e2ce28d7bf154d584dce2bf086fb351484c5f1d61a/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d524a5922ce0324e880b2004b0c24e977f752cbe90056587ff4fb079/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7bb7a58a0d670d7a5831a19f6dda64b9654922631dad52d22b8ccd7d/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bba36d8dce55b677a2cf73d5126e4f392ed7e842f20549923cd6dd03/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f77a3b8520be79f02e530289998f83fe3d0e2c09a3a82705c51d23d0/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fb186a78a7ecaac41bb66017f3ec322834fc4700e8f2b7b17b6fcf5c/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9dbb21a8dca276f1e4dfea02e356a99e8ab108850eef2e79415979e8/000000_000000/0000/tree_7.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..e6878ee88 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,12 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2470eb18d24ed7c8bc971db04a199f65007acbb59bfbf023d5390db1/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f414c0d34fd882fdfc1fa6c9affe2138d0c91d331243ade59300f1d4/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0a7b83d146584e9d024cc72d619680732585d2db01e8f701bee963d5/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d2cf52d2d39d3e0fbe4bfec5150304cdedd1bd2e5c84ccf35afee31b/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bc66586fdb5756852e5010562c568e4f94bbfd77db00a93d85ddaed1/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//33c168a102bd25f9916b09d93eea8aeac0bbc9c5eb5c656593f4e023/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4bcfb60b9bf4e63f65dc7c24d96d50cfb665f54f69c6a77ae31f26b7/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6a7f4f38887be992bf21993f33c119ddc846703ad4ea40a7ea4870be/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5a7b52f130f9c12c8591462feb7c250b987dd7c53d13f55de260dab0/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//90ca8c198b5a7e4d692c769003bcfd49e5fc7f29c86375d0b31c6cbb/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d4c649411b97febd79b840b490059d795dcaa02cfe88ba45b7d730a1/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//08902e9c44caf21fbbcd12df6158ad7963cfe947c8fcd0cd9b5a8259/000000_000000/0000/tree_11.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..0b3cad875 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,5 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c96e4a17c7111fa69e7d9b054d3cf50ce8cb91bdc04ce580a59ee9aa/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//18d9cec58437f952b7a0221eb1c63eec5f1545d8449142cf257ac49b/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2cc2c13d694126206b93cdcc3cc910ef865804c5dbe2fe421a8f82b8/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2b31b1baff91d15cad7607cad892cef6614db0b5ab6a837f80a0ab75/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//59fad3d0978d9e948456816ffadcdc775dca34adad1bdba4e104c528/000000_000000/0000/tree_4.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..3f77b0183 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,41 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1f70634eb89faa8ff18e809accc9ecf5aabe10a0f1bd6a311ddf1ed9/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3eceecd4e7ca7b59fd20c9bb658c429300f99cdd23d6755c99764319/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5adcdfb5542b8bb6b1e3075f05f8f75ab2ee029fd921f7bef81f1d4f/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0b9c05026492d41597e7a041ac691e37b7e938a7a036093b1671b825/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//50b46ddffe94bfa410d27e0e3fa37bdb0b75504b7cc7886df16c89a0/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//cbcaf007598cde0aa89784e62dfd87770854f458d672a1ad98b86e33/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fb672605f31f12cee9b77d2a05e215426543ed213e8db6b6165de02b/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b3b543f15d0d3ba828a5eef8f54b134223a760362b942718158e6eb3/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d6a6fb83bb1f8e61ef1800ad9957eafb0e92f2cf5a68ab70fd2b74a5/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//cf807717f7dc4449a4086bffd2c7f077a0ac3e42f98a63d140f5d3c5/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//93fe9445e0a15b28c510203bffe59229404cdc9a47437f33cd858fb8/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8e1a5e67a43e72432eb1c97a1be8e9244ac3417d74adc1fded302458/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//03623be3688550f1742fb730227329c8e52491190a96d6e26fe729f4/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4027f72a63e483a978d046258478f048067296ab5683e2a2258ea106/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8a8e5176ec91bc56541a5e6306a6bb597f63c6e90a8ebf1a0cc87713/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//148441b5608f739b7e3cd602c9d4f86fe2c2598b83f41496ff5b91d6/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0658c8c784aee80c297ffe225fda6f3ee5012213b31400036c1354bb/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f90c8583b999c06bc4bb7e15398916e75078af4d2a0089d0278e5f71/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//58bf26db162763eb3da4a1d3cb5294c2c7ae8f000e3615d0e9c5065f/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a0daa80b692cea62da0bc3092cf530cecfd9380f00662268ae910ec8/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//70d9cbcac5d12547499e6b2ade46bd89525d08508761e527ce10482f/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//64127ee7fb0536334115a1f641fcf040cc26935ab6496ca0e8b6957b/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e08c4fc1256f62dccd09950095e8f92a9aba0fd3f8e5740d395aa782/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//36c9a9e3a3bb3505ed8647005c28d61f5bdc43f9d5762af7b0825828/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//26b5d96e441e54e3e6372866545fc7bf283d84e60dc48da8906d6066/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2a6ad50a04fb2e02afda51b4f8af2c0d94fe287d06c730fd73e652ea/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4a0803cdb0ab09e4ab3aa003e60c4717e4e9d7d3232d646a8a563bd6/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5318719fbb1a4eef1e1a73871c1b5f12079d8fa25cfff7500016adc6/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1d7cf0636f7940bc584422421f75d78a4799f4c3dab6360ad2a57870/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//82e44fde61b5e9c27efdc9567345d6cee258329b54817aed6fd1f335/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//81d4cb8a3195f5641b3ebde7fd2b77ade70ea942e5750486ce27b025/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//50a9ce89ab0bff58c54cf8f967d304d58c6de2ef4b0dd21a03cb0827/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//98c281c3e20d74d12aced6648acb1e0bc18f540e6dac151be3b71587/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//23845e42f29ce4e8a54512017d29ad26bfb1b1e4598d604809ed7646/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e946afff1d0f485577f97149568077b9587872e0964061b5b7f6de26/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//df6ef90761bedf165fe2520962fe4453e1b893d548d967d598372147/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//58059d6c3dfdbad67c25bbf0c4da73c0c52b420c51193ff1e924f9fb/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b253999b97881c15999fbfd8843af38abb0888083a9494aa784d21d3/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5933ee17566cb1262900ee81075eaafde3ecd111a2a4b16c89e3ceba/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d8a97c1b7548c658393f4f03b9fba1ffc54da1d387edc8c64ccd32d4/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8fe4d14fc8d1ae7832df0c534820321fa8bf9fa9053c0effa49e1d51/000000_000000/0000/tree_40.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..70cb73baf --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,5 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//37b51cad03f2402cd7a5a83475efa18c1019306d2fc122e73684e087/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//417a572a185bb8704dd6f3ce8c4802ebca1c71afccf20eac530714b0/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8ca9feb3d57e3ce447315a0367ed5c2dc3c60a639344b2874392f406/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3a60041f3c026b146eb50ac78644e4dfb9d51e7e79a071c6692fe0c8/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e8f0d62b1721d09630e73d00c59c18a0c8fde594c02b018a9e770536/000000_000000/0000/tree_4.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..1967bb3ee --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,8 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//eedd452c01179b1d0b3d0f325dfa19f9ae3f0493697eac01b60c8b5b/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7cdc9dc0a6aa131fb661da88dbe8b826b5c12174b492b5855dcdbd05/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ffbe365e54706035289cd3f18278114c018bd5958b83c6799e30ebb6/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c5a1e88bb74b86373f791dc3967a03db6e155bb3859549a2aaf45de3/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2cfa4758cc61ab83f940b443c8739cf568adab2cf00e1ed7dd9dabfe/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//32f43a495f20d43cbac57782cb7a22ccf94505dbaf7fc57c922ed87e/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e2030b48da9d785487226f5992fdb04ba022b8d09ad2d1f3c86737a9/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//28f7894747428ca3f3e2ccd2ead8b5c1c5c0bde43fff839c64d78cbf/000000_000000/0000/tree_7.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..ee714bea1 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,23 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//56b38cb5ce42bca89e980c6d594ecdcce8d6f615bd4d7b83dd9a3bc0/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5a43d2cd4a975f86ee6d1c9ec8abe02272d93f75cb9493304366fad8/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//225a0563bce4f22b8588c12d45045f885a61029418891c61e556e16a/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9d6cae3a3bec00fd675eef8e8b3395785e26b35051763222a233b0cd/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7e80f663bcb923545ef421962d2129f16f2d118ed3e78ef88d33fa5c/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bbfad2ff92c215d73ac5b5bb594488eda76cd8ed8567834ed134f645/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5c777dbfaf0d3c5d358938301ec5b631d34027158aa26edc4ec28f7b/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//319977ed8f27cc4af921e8961f1fd4343e7904e60c8fd86671767afe/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b58d3b910ddbf1c49e2f7d5159eef547c23f907877d6590682622e5c/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//414f601180b30e7babfc3a0453fba77cc382c234f0caf4c89b23a9a5/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d14b9cdc1dcecbaa1664103f988f9a01ca97a0afa1eba1724b0f9d00/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e1e0173ebe8a13403651b1339117410e57df0f1163417eeca21e7231/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1f565c2c84b5c7f82b32b8f2fa6cba9fa16d7d51df53967ba2e05dba/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a09bada543bbe3fc350a1e74b988f2efd118307604910eb527c5e25c/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//cd80b466c6776fcb7e263e2ea75fa3b061543c2b0eb1f9f5fc0bef4a/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//49f29eee70271e4ec50b68e938389715531a8737bf16b6acb6111ea6/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//93afc9f8e770ecae93473be5017e1cbe1bd56b9a6501a3cef88c7fc3/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b2c965d69ba0c8e825d298f96bc2bc8d4650dcd6ca9a826a860e136d/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//767c0a108eac5aa4fce822bca454a81f572d31c7bf6f47e9fb55f68e/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//100e09e23e46703d2b209c45bae595de83f8bb51fdd3279b0ee98a93/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//102ec298e2f591b3d6ff15c35bd43f931659cb1fd3b98ab7f17fffc7/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6ccdc7900066c0644e987b7b9b0c2f472f074eae2d0e1d82f5055fbc/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9f1718272f0f1d81907a3ed0c4b41bc45126ac624e806555589eafae/000000_000000/0000/tree_22.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..7372dd5f8 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6ae8326e564c5bde5b00dba3207249b4be66fe3e2fc80da4e90ad907/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..89111bbcf --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,9 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b9d6a3362db9d70a4055b9b08e669eb46f4d28a97e130703a80ecfb1/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5db8947fff341646905bbed73a9891565348d50e276dba16377ad095/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fb5f2090afdf9193138fa5df9413bdb9c5a8196c2b309e87efe5f0c4/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8055123c506bc42847ebdff20cb2ceda3b97d639ae7fe6f9759ecafb/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7c8097632629bf14fbc761d22e3b2657968b23ab29c6171570ce9238/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fb4e96afd8ed65cdeb8a72c961697879bcc25886eb088b8c7573f41e/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//610a0e52435fca1c1d08123740b98fde9d6682435941de9f995c0627/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7bfd83ab504ace2e57476d46e893c82c6a34dbacd4bfd7d6231395c2/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4ff86fe7fbe18c89877365e3c4ceb705164f0e12ad297a17f31810ec/000000_000000/0000/tree_8.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..d29f2883c --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ff88b305ce4e61ed0bb85622604d7965ae5455599229ff948498c267/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//671368b8f70220b62b3c0932dd9f1f95a2a45592f5874d7f419a8152/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8e36ef7889e61604c5792dd7ae789605531878cf3e595a3b5d0215d5/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..29ce309dc --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//8e3d0e0cc0087d8ab2c76b6bbd6e433c38c9b9b37466c26ae93b128b/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//927b36e2f54f6ffd500888771e20b435b8bd0d4761d4803c2c1dbaf2/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//3b452849910f1642573bed57eeb32fbf4c6826e31ed1d2510168a98a/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WWTo2L2Nu_13TeV-powheg.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WWTo2L2Nu_13TeV-powheg.txt new file mode 100644 index 000000000..2e598e0c1 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WWTo2L2Nu_13TeV-powheg.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WWTo2L2Nu_13TeV-powheg//61cd737eeacb5e2688d58d2a8acf5e383e26b1ab39f96e78f913fd2a/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..e593710f7 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,17 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//68db787ab32d3ba902dfa9a06187a0e3461d850fa59c7bafc954cdb2/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//9235f1c06ac19f84ec4484f9daf21c6943ca6ff50973dbcc8b8255c5/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//491bbf5fb92160c62ef67a409a0c047271b56044a15cdcbc3b6f1900/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//6e548164c4af0bbde4c2d6f1c5bbbbea1d12efd9b3f1cfa8e7618964/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//d98465ff3e5b1446f10792ac617dd96b3026bdd32b2842db6729ce86/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//c6d804e4efb931fec33b4e98a3c029183a00aefc95e5c825231e0fcc/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//94382f65744d6e66ac85aa74e13f6ccf2d4e0dddbd3b2b21ffa2943b/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//0d9736ddd624e2c8d7071c190d2bfdca2306891e27ac0fed30d1c686/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//1049045287a4d8a3544d063d3d3a7e71e2425badd76998a60c1142af/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//247e78ccbea9666324a75c503f5f26c8b950ff08f155c545cb1f1bd3/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//3ad3a6ce68b5fbcb731fe1beccb34fac3cc140b7e9a164796a0da493/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//7357209d98bb9a6114069c17b03422ac2620f3cc7a3f7a9949a944b6/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//f28694790f88c1b0472e18e52adee69d7d0c49ca3ad5a1014e94ba48/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//c76a2f0b5a02b9c8d6f4408fc0ec85a4fb14ff567a04d2abe9d853e4/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//23105236f70a910e15013fedad20fe1fd2551bc3bc59be1597032b1c/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//a01a4971898174e187941c950883ba9e4136baf53e128a6033f44682/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//c3a45bbbd36f2e42cd3b11fcfcc365e4a9f98aad77f060e917e6db72/000000_000000/0000/tree_16.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..f257a76dd --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,9 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//2e8b9a89daa6a3c36f29065af304eab84898f9af342857d6d7c0cb35/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//1f75e7c642e5a70b8537ec9622de210c26afb24b8e162b263b2f435c/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//e2987963f106b068ad5e551b1b8a84094700a1b2d25e853faabba6be/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//fa9cbca25de4f2c91659d04d67befd1c8568f5b729296440e6198ed1/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//de341e692e97693a49e37844791516012d332a271cb8cbea31e34faa/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//6cf459a5541d081cd96a94a2ffd960355aca9232ffdbca34889d852d/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//15f3e33a3c12175c48eb7ee272619df850e5b332cfd5fccb418f6c82/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//a03c62ed1761fde126928e54918b6ddafa0b781a95e4c359b8f24cd1/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//e5be4e3bf7ce1c5d43fd3eb833fe47fb3044ed622f12fc3562bbd0bc/000000_000000/0000/tree_8.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..89cf11752 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,7 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//ceb5bb433e47147b6123cbfb0df05801965da0cada5f91ba1ffa8d41/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//bcf9d06558ecf66a7d0375d4466ba2d783c33e3f777a55b9cab0b771/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//d9881ed7bf53747a76e0775e3d6ad690dd75ba6e72f44c4d31aae0c7/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//efeba378ecdea61e9aabf976f8ba7eca4cbb89906459fc8d653017ec/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//d9b31f664f22f2401eada82aa0ce4c9455cc7d7dea3b8b5ccbc992fe/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//3ec6010d4d1de1464798c182f382cf4df7efb5cd41495e06a5313503/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//b17c24827bd21e91939e3ef3f0fa589bf5822a3eae700fd97dd0bb46/000000_000000/0000/tree_6.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..3278989c3 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,7 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//8fcde4ff8a6cf222b186c6d45eb9ebf52f7ab93466b655867fecd579/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//1ad705dcc6e09b234523f235741ddb44d4396acb89cc1c30a1f73e05/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//2dbe38b3889a8d1df3ed6c25d5eb692e2dd4cdb1ff533888f36b6eea/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//50c52153710604e69a976170c0070aecc81ad331ef7d94bd68ac380c/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//5c9c8902708481b5baa1a1b9a28ee2a5a90becb654657ebfaa0c9021/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//cb62989d1adf99e82901616c0c8696580149764194b7ca06cd449825/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//b4e8bd1968da193578b2d9a7e4f744e3a21c20d7833a7b6f201b1ef9/000000_000000/0000/tree_6.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..9f6adf8c6 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//288db64098fe2ce9449465e977913611b64ced039d4973fc539b2486/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..d8654e049 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//abde5f3ab0781bc6af119ad72753ae8f9feb4489cdc5d49a316bc3cd/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..9f98fcd7b --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//07e8b593375b24379d21a333b4b4169bfe590e3b405e7690f6c48fe0/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//99532407ef119b16504df4422eac3eb83012ffc5b86ef2ec8ff15412/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//e60fe203fd410cf0896c8e7e6a05fd4411292f0d6abdd82243dfa84b/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..e0c314ba0 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//509d72308446fae86eb5d25c568287eb3f70fe7b4f056d32c2fe5bcf/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..b1267c2f7 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//432e0cd6476e2ebe8a62c6a620ccca0a031ea9fa3462db4b1bf6f938/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..63640abb5 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bf3e285f0e981e4960595d2afe78778638442b7fca9bf7acd482cc19/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt new file mode 100644 index 000000000..74f9999e3 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-100To200_13TeV-madgraph//a697d6234dead88d68c41ac934384e8e3cd5f78184ad43424104e8f4/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt new file mode 100644 index 000000000..c1e91ba85 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph//e364bc546bce951dd8019e37c979727527b588677a2516b240e9c24d/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt new file mode 100644 index 000000000..0cce84842 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//784b7c78e87982ffef91cbd0c6419b25038da895322eeb4ed4071c7f/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt new file mode 100644 index 000000000..5a6cb74bd --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph//4ea5647aa1899b276f00281594696eec09b61e0fb2df3e88fdd21355/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt new file mode 100644 index 000000000..2c93f165a --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph//fc2c9bc81af169d6b6f5e91387ac6018a74b7e53dd1ccbbdf86894b2/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt new file mode 100644 index 000000000..1f5cb9709 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-600To800_13TeV-madgraph//4dd19e9fbdbfbfd40108d6c46680b25bc52d9c09c831ae103faf41d8/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt new file mode 100644 index 000000000..97ac8bee9 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//177524c531048c593cc46f5029c3aeae5ec759a3bdf8de93181d73ed/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..c1ef188a0 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//f146c3f172781d998e3f1bbde7e87ca99ef5ec7c18efd35265268e5f/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//ec28828851104db3c109dd4cd198ccd7e889ef0c3abcf243dd97c621/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//be827f5a98dce685dec695d8b24a1a9c1764b35580041ba32cc1bd2e/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//b4177e1817253b5d56ba9d285cd6258dc6fc2f263ddae845a90da275/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//bd62088052e4439e2e7312a3269b7425576333cbdd9625d6f229b1d8/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//33340bbb98dd2ac2865574aaa02dfcb9ae46c9144e1877248e7f21e4/000000_000000/0000/tree_5.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..0ddb99fb4 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//74535c1f238c3a343119ef72b599c7e8299ba6de313a5a94cc64e6d1/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..152eb9761 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,9 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//283a731f4a8338e11b3e1632031036c34b66cf6c4416278fc76ca823/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//0bbdcb43a23c25ad6d0bd7f5d7c613e2bcc0929e1bb4a9db14817e7d/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//660b8ab1774d1add8c39b515da39ea6ca2d362b6a75d47f32bfea28f/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//c5c25be70d246b454a582fe6e1df4951ea166f222a0856f2518fea6f/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//07dad72d4ac2138931fd66fc74633ceed88db1a88d2c1328b38c9280/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//c19d81811297fff5ece1c4c7c5c473985e60074a45c5a0c10742235c/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//689e908c5958007cf4063f2d2debb04c853a977b0b7039100ad33837/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//c452bb7936459c601e15e289e03fe4d2eb759449d79147708e465937/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//334a65751d0e49019cf6e9a192ba1ea2f7df4752a30258b2708dfe46/000000_000000/0000/tree_8.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..cb5d3d05a --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Wlv2016/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//11c179193b6126ac47f7971194f3f7995e90220fa0d6824d1abb425c/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..1d97c9637 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,12 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6615493c24c7c992521b6dea9230414c8bc19a304d77b1ab5f342d11/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3238266e22dd4b51b158fec7da69bd849345f9b17e97d386a2c118a7/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//128b9827dd643b49f47b2087040896f1cb52c3a4ac27d70c6cfdc07f/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fbc59653ada253b765abbb7bd2144165b8fce81dac4b5e9baeb5e56a/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ccc5623e069ec647989bd497090e301a1c110ab4c0e10f269812d255/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4d4d08fae7ee0461d500ef143f3254752300cbe7ae8bfccb87ef52ea/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a0d5b46e1569a644482d3bb012949e04b33b203a97e511c27034dcbd/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c398b9110460c6588dd21843040c7163942c01bd2bef7b3cb2b89825/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d3577c92a24f23653ca7c42dc233582044ec997ca849e1f462ac4e0b/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//43fefca32aae6dffeade4ab268fc2171396c9daf4a37e94fcb2805da/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e5de5b8826ca3d9caffa335ff753414a2eac36c58db1635d6f17fae8/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7d4b3f28de9411cc90b138b265be18d24e90bdbd37155cc6b0697642/000000_000000/0000/tree_11.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..54226fa00 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7bcc2fafaa26e7e28e9dbf8314b34368e5b626f14c9e8dd300691875/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8b753e024b2abec29f48f6b29cc06f9e3de54ae6e13c4019f35bd8f0/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..e914e349c --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,10 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fd358f7d8b35237bf38f21bf8d2de0aa4cb8f9982ef725a748be69c9/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2c0f6996851e620991e97613ba2c84c32573781d615eb59b6e09b66d/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e40be5280b0b2e7603289892e58ec0b21b338d6a1ba8eb7ce0e1b2a0/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bbfae9bbda7d711817092d37f7e6778c306b650735c19faed277f5ef/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0b68e21a1e75a8693a2a51d215774e5564bb10d6b06e7355c4aab285/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a90a3e82db243048a01102fb9433187f7743fabfa6d728054cc44670/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//25ccb612603214c04b7e1fe28b51964e06366b643c9cf753285ab995/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//65a57299e5786c1be4e988691f9c8deb30848dfdae1cf5f61dda5009/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a8ed741fd3d1955b8267cdbc68d28ba7e4e8392a2373cfbf9a66fe1a/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3da1de3eeeab59762d53853f627e9c421ec04d4d81073a56483f0e2b/000000_000000/0000/tree_9.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..f02ef37b7 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,5 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//817d6dc64d99b4d259cce977126a3dd0b16120b5bf2219b777f65c9d/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//07a5abf8395c8f0b9a43748868ab23eef09cfc462305144308dc8ec8/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e4ee2936ea3e05ed4552ac5ef04e0b55856c09ccb78d46df22378920/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d1c9499416ed364bda6aa6894a64d77edd7b68cc466f73208ea6a348/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8733322d2fe51ac0f788c9ff1bf408b195e746f3bf1d13398ac4c51a/000000_000000/0000/tree_4.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..67d64c571 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,13 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8edaf9459fb3a0be1dd736e549cc377d43cb57b0b3ff7ec0d08033d5/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//537d6b97bcb5502328546efee695b41ac9848eb65bf88b1a12cb5ca0/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e1ef567672619be222bb149a67f299a01eaa8853c32534b96adcedce/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5a02b01cf90f65014663cd23504b62cd030035781faa12005c852a7f/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//77626372a82a2a68548901d1c13ec2af386bb96a2ca06cff76d2170a/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//46806dcdbca6039a996af7ed65635202e5036affad2b7218426e1d8e/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a437b26fc3c13104c87c25da8ed0792b3ccc6ac409ba6c47b82213b9/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a1bf8fd43ddc0a42a830475fd6438caf988eacf22373f52adc1f1c72/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d8fe2146ce41863b3c28201eb28879ab9d5af9e8a176427f1af0e004/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c65807b70b5630dbb8c5fbe46062443c28701ab0b7c0b7b6a2250883/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b533c88e6ce59fe681015917a61bc8cafac459dfc2a928e3e3b5afb7/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//40c7495d3ee37a4da93ddadf0173d0d8cf01b6a102c9217c0e6ed57c/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//93b1170018ee472c901099ba19ff4c514f8d5a3a1ec3a9d10794d0b0/000000_000000/0000/tree_12.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..4b35eb7f4 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//56f805ace38699519b40ea8c8207c69911e7b6b861054c11fc4ca5b6/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..7d67e119c --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,18 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7dc785ee745f6808a8993f2596346f3211843550becc267f29dd70aa/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//241a7b461bafa6d3614c0d89e4371c6ca2ede754f378eeccc8bd3518/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4987d483e12de894cd05f6eea3d22e42c6d2a0602db30e00b6d77302/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//49c70e86b9830c4de0030abde184d7772c6ecf37e608476e405da0cf/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b862495c27595c1ee1178676dea665664e9fba4becdbee3d35046402/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//52f306411cd5616c56193ba047bbf53b99493bd374e6fa2644d21628/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4691b81f52d66250d844d4595be990928a6c6a10420148c201a523d6/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//93db30213b8af06d318326ce806b2e8cf3e518342234836c1dc494cb/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5291c20578a873a45bce189f57c52eddc5492f0285ec0a7025905435/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//364ea35d93967511aab8c346a24fed442cac4d5d81ef725577641d0c/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//45fcf5e4a89a2478e3aa1e35597d3e6daa2c934731e505b409779916/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ae5d43272ce2b5c47ea1c5cdb0b813f13ab18d8002660838e14aae08/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8e830c9c3a83f0ed1b327f300810e42859f2cb9f9f2b85fe877f3519/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//62245c00ec654f14c6e798c795b4b753a735ba63cc432fb1ef3bb108/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3485daa5c5dcb548e8230b802ecb5180c86211c543e3f1743a443694/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6e7d4a6aac5387d8643140b576a34b615b528e1c7fdac15a544d099e/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9802240e2d3104de913328b3dfc788c1cf2bbe73e1e79fa4ba6c006d/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//47817411015086bb700fc4f1655e4e72586acd172eb6d226cbd63dda/000000_000000/0000/tree_17.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..5d57a31e6 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3a4fd4337ccef7a7c057838e20a32f73c3f57e5df0236cd276cd4cea/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..dc43fa516 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,15 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//923e000beece01ff231d861eb3245e6b836d0610106b7a22a2616a4a/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8cafd310ea2d04b181c2387d887a6f33012ca0f5c3f4edc5f8363bd5/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//13ac76dd04dd3201582159cdab7bfc43439a9c1deca3a10c877259a2/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//66aa03af4c7a1c94329cafd7b561111ec76f952cfd6533ac909830df/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7e7110f82170711795865f072b9d9a8491c3b963efd92df5cbe9eaed/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d613da6d84c82b836a4e51f90400f825628a83404b233ed804c2a166/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3531f8b89786756957c045b53641db0008352078bcb1ee19cf334b74/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//512eb7fe7989aa809049da06408dc03c7e28e0abff2a935d3b55368f/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2c29582e48983f8ed430ffe3b20861785b502dd61280cc5adea14d17/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//70e2eb16d97076ec77f0144abcd868f5b2b34cd3539ac7d6b7857726/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1a573ca47e25172c94ae1d22cf90f941babb33ae45b78574df238a41/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ee9a270119b684be15c7dfec48d646c11ae19cd5332db203cfcb4514/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2a5163e7e7649aaa4d095e7319146915d415d9b5a64e39b3683d6eb7/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7fa8506556010308a28a1b591f2a844bf08033ceaf91e92114f9a861/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//19430d57d8e0e8646b0d7d894939fba8efcbe48765b5f16e4c99b824/000000_000000/0000/tree_14.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..d94fc6b23 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,14 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//997ea48581884e3d3acbe7a58461148eea9ae1256b57e3641b47b327/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ed678b4d24a254749fc9f0cfd1765c7de7a90ddbe44a88e147019dd6/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//49c0c587cdfdff68ba9467fcbdd6dfb6bd0bed6970bf1961110c127f/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6ffd563c9baf91d133f990d1dd58f44ee24d892a6763eb7fdc6bfe68/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a55667f394510e43f6c8a4e73ddfa58d7b160ed8fb678d5128bcd64d/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8db0d10a1fa0221e2fc9437526fcc39e1f948501415cc0498cbc20f8/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//64975bb3adcba8a210fbf61dd892d2677811aa002f5e23fe37e26d04/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f3b14822a40b01f96f89d77d94c3d8210c77c1626733ad3c3d1d2113/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3161cab044cefef7853f86027cf4ab35af121d8fc205dee5275e5d51/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8caaa1ec83025f2880cdebf0f16d13e9b7ddb6ccfb8e6fddef94e967/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f4bcd8eeadf43e1615285e3299dbd566e2d5ad3bec8a707c089839ed/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//877c2812b5be0d8715abedabcbb615b7906d563cff1105d1d409671f/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//940862af3ca8d4e3e8481c5e0765db59074d1f337b2ceb86af45a6fe/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//740ea9db26cd848aaab264903912853816f08f6c5b25d02a89f77be8/000000_000000/0000/tree_13.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..8d9bbb0fd --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,8 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//23cb757355f0cead659dea9f990c5229c3828de5c46039c91ab1a4a5/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e655e4917c924e7eb9353f7da409dafb91ab2d7eb0743df69b55d9a2/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//aa8e81fb6c711b3c0592e62b21f27d31407759690f8f13a68bba5243/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7da988758b85a98647d43eb5d8a3ab801674569e2b1e974896cf95f7/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//cc4d48052bae304046258894588dfe610061592696001600b0a597cb/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a99384e2cc21ecf25d9b5b77bf8ee74607575415f6f3e922f7a3fbdb/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//35d1d2ae65691590bff4b08d4ce94f1b873cad5c540a95271dcd04ba/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5aa6cae8ec349a41e77bdf7c2adebb5d0daa64ae0725bdcf69807ab8/000000_000000/0000/tree_7.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..037c092bd --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1953940a1b9971df03b9d9e555854639cb8181415d91d07a7ea149b3/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c75c111db486652137f276e8b6a8e4755a8b442c2963e555dc3ebc9e/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f71142ef554e05b82c7a93cbbf341ef7fd1d1f989f6c8d07f6fac3e9/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//19e58b0a9be94f97d03659a0150bba1f01c235eac66cc3d07fa72cc9/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f6c951c2fed4972e804c825fa2a5eeacec378c33009b6e3eb2e658f0/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9356248cfa16165d640b9c07d830286f4230c105a3b5496828dc0b27/000000_000000/0000/tree_5.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..c621814a3 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,26 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//22551d1ee482040c0d7404100d7dfb5398d1b4a3b5ec49eb0b7e946b/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8bd8ff1a8150badfd432862a4a4f3c051df19e14a7883d50efd321ec/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0947faef108d34df4010ea449d4646dea729a121562638119eec6852/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2deb18553833e04de7eca3c3053e4224815b3650001dfe9d229f2326/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c5ae9cc28eec6613a8c6fb3c691418a668d8865a7725abf34e77f4b9/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3b1e3362e2eed757ea12a85991269a21e4632a460ec919a9779b0260/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4a475989c030d265f36bce4cd82c5b9a480c5a2326ae132c3078c3e0/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//69454ddb34a15f787d9afdc2f77c42589b4ce71c341d4962e4880118/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ad0773f5b97de8a9e57155e1902afe862dafd1ecdfa919bea88e036e/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3b6a715d9f9e1d3ea98797a55f763100dd8a00a037959d39fbae3779/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b55d061692fc2ce2a1a6b45b5612c2a574ee843d08696925e022f6fd/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f36139be04d7ffea9eb5dd22babb30199e16392e8c8f51a3f822ef8e/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c7ed909d9b806c82617545954cb3c42639eb8ad1e40e053da3c0d980/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9f5333185f082e9ccaffef96fd7ff6393a73b836b1ca6a30527f9608/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fa033cc786ed1add0a172399385fda867b3ccd8430d1a12054c282ed/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4d6b1626ccc690b87bcf49ce2f8aed57e03a0cadee071790291909e5/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9e7d21f220d62d0e67ad5b0acfbe125f999c953529ff37b0ae1e5f39/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//dec22da97dbbcd4b477b9c47eba569ccb81ea60e62e5e8fbb6f252fd/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7fbdd9ec9f5f0c1274d6cb8c082064f884adb1f3299dbb6a7315a720/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6af475375b95a400d9522e551befbb0ec6dd2ea0dd59d9946cbcf856/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9143b806df2e4277bc900fada4c4bad45401fcd518d5e40d884a4516/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//344981dc495ccba23c8ed8c7e0f0f707adcc454270ce4935dc455fd6/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3d1d52be64ab6dab7b4574356cca495bd4dc98cf3eff1bcf70f654e5/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6d64575425b79d2e7d877266134cd65ace5679a01a22c9d76e6d40b1/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//975a781554438e47bb2e2687929dcac8d4d8b2971e589c191bf50a6b/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2d1b6aa139eced1990e38e91b1fb9d18459ceacf6a68990e9f1e9ea9/000000_000000/0000/tree_25.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..60f38e9f6 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9d2a2f9d6e00fcd71c86174a8d8f9f541e423c61eb3c888476f3978d/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7c5c9ec3dd30cca954dcd8b476c5b622e633561859aae427ae7cc24c/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..219f48caa --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//53c87580d6b93634af86a93aab945bdf0af64db3548c9a2fb4e2a6ce/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e2d114478dd459c66fc9d5e2f8fad4c8697c228e9a9c64d739411ea1/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..55fc48b68 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c8e55a5fefcd3a45aa094bdc37304a41c54559f6ea019ee97613bb59/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ddfbd7ed728398e79c5cdbc5d7a1201b4002d844966ad79166fe5363/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8e3bb0f756f86bd529b0bb813f551ca45183a8506be6cae195c0b5c9/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..2cb734f44 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f26edad4304d106eac0c77ad7631c6ba5e66acf2b67837dc83d360a7/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d2dbaf74ddaaa396b604fed3a5f74ef75c565c62c8a96c9071a3983e/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fc288884381323868d3ebdc22d1bc76fa63b04597fc37650f6ca1a08/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DoubleEG.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DoubleEG.txt new file mode 100644 index 000000000..c3d191460 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DoubleEG.txt @@ -0,0 +1,24 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//d1bc2805ca588b864be84747d2ccfeafea784b32ba076d2bf2348756/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//e1a2d323b3c96b55ce983ab96c9fe9d17c14a1d7a26258bb4d4953d4/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//75695c156e974811a37a0e49c90f4949ef1274cc47db56a3b1ea26e2/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//60d6ebb2ddd60de6081813da89eaf69373a268fc2c7ef47e99ed3dba/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//2c901c6302055cb0c8051487b6c4f67e001bcbe46cec2ec359ecd866/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//a95555f25ccb235d1e78e1f04652fccf86a22704eba67a8dcc9c01fe/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//487547e5eac3302e7c9927c115c3c36660e7f177637ff3bb2e244fb4/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//aea256a02f8f331ad2e1aeb423fe9fa9d3ab6157f9f4bbbc9b8c08c1/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//d640b06781a0cc88b1d4a2d04f13cf4c0e418040c79d68fe240705ed/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//a3c1645f7e17310395576326e8d7cfb21b5153792a431a13e30faf14/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//fe8dd43881c35e22a0b86e4e13f387e17dcaecf21582494a33cb18df/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//daeb1f5c46afa05d373f1a91972908e8b938007ff540765b008b0c95/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//9bed7f91c2ee50318c4be73ff00eaae07bcaa1d392a4ca36b0ac6315/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//54895b13dbde48d72d490de4900941279a7ce01eb4b21a47e0385768/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//5c892653e0c60b632cc9ed33ba64994fc791c08644c30ba761334db3/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//93678bd59933a01b834ad3fd32a6d64d4feb75a1c5fe0148fd94a64d/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//36317bb3eafdc727dc0ce8d0e22f7c54200e3d8b8849d93639af98f5/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//01dfda265923a8aab0503554431835f724a7f55a24cf3fbf2cdcb08f/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//ef8c915a18aa9807d9f4af169e46bd047f5cc90aec55419b9506c3a4/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//5c53e70c401a9b85622998bcdaaf11de53d61c9ff27711469cc69ac4/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//526f1f0fcf15cbfa88d79375be21467d786606a2731944c3b6970d2c/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//61543e2576c30b240ffbceafdfd85826a57a9a14041bbec45144c57b/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//e4fd0cee1f07f0e993718e29d9fda908fd66098d4aae5a44c3983e03/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleEG//3376edb64b2995282821afe05d108a2ddfea38612660b8f879edf25e/000000_000000/0000/tree_23.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DoubleMuon.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DoubleMuon.txt new file mode 100644 index 000000000..d3f9a5014 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/DoubleMuon.txt @@ -0,0 +1,37 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//3ef096d3ca2a056e27a10b64ca8cd5b9c61c662a62ac677b67fc2dcb/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//51aadf479166a8b6650cc52431abc2b8f87e12357e1161387bafef82/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//102019bd9b5b3f1654e1e49e0489d0da445e7083e6e6cc2106358f48/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//06eae4ab1aa76e70ed093ca15b5061ff9ff3baa734f73a92767af322/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//127efd36dd8db53c01c40d7922355e13b42d53ef1d2ea6c8c86e2ffe/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//e11e95abdee22222726f258efb33035d40a6c8a6d003b632966d1382/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//da1905a8ad6f9f65dfd155eca9c3bda89b0feb6f02281260a384160b/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//78234331c7670dad61ee8cf2f0bb6cc18c7258e16cf7d04ec7686d3a/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//59a52572a9767add4bd89170a81eb3a669c02e62ffbb7e3dec075a00/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//7f7e3a18f6bbb6c1a33439fad0218f519af58362129a7f9d94703271/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//631a25217c7e64b7e22094a0dc47667be526074213e2ce51a31616db/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//2ccdeca51836a8cf8441fa8b56cd8a781603e84bb92f7f0cc8610d4e/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//7b43531c1c2c0b82139f2aa6644c96bed5b2da4664bcb091494b2b66/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//b90c6115248a9f1c79798a34f458359a242295bb9f7ed5ae88896bde/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//37fe4d72ca4872c09eed4c45033c0f91269e8fbc6b084145433cf544/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//d11d5b79438e35450e780b3859a87cf690f8d90f42dc6b968ca4ec1b/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//0e4177c5f951c2c715e56e4b48a39b8093426ff98829d43b929fad2a/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//6f1ddcb1f6bf8de556e2fceb0f21e935f39b09e4b2e12cfb955fcbb8/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//711bb81d56c2c8cb23a4eb90bf19bb1eaf63f62ab497bbb62c18344d/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//5f0b320cfaadc051b2ea2c64f6fdbcab76e596793ddc94c427669667/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//56950d1971144a4f9559fc7daaeede8907dc9709dd2f6deaeb9473d8/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//6703b47cea9935d37737b5bb7f6ba7bf489577acf9c45549f359f29f/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//60e7aca4598abd2b5c012a3f8c41d75d1b2c78802894cdd287ccdaef/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//715dd6f4f131794830e46f315f748d165a393781e84509aa624886e2/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//fa751cea7db58284211784b4dc46667d0cebeb9e737fc9513b5412a4/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//a84f60e4bee9161706becb252965ed2ca6267a6572fd8029cbda4ca4/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//531691b74817ffaf6ea04ccf1271efffab00671284b09a93d55fc196/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//3b93b02bb7ad1ebb18ad8e971812ecc67091459fd0a6d30f6dc91c4b/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//1740cb0b6b1e353cf9550888dbc6d35ace9131639e8f5f42ace9fa63/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//4ea6b2706b805f4127729de1f851fcdc65f3992d05298bbea51b3fae/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//5516bd73be29acf9c7b7ece2ae4d9d3a4a869cfddc5b133601af68d9/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//01fbd904bba4cd7fd4dc4a9cd76ce9961fe765f42465c914a8339625/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//b73ddca1e16cb5c4f9c8044e0d6058902e87b66d255634337f725ea7/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//886d80e439f23b9b35021c1ff7a46cd9ff6d38dd191cd053e51982e4/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//1673983562d59d2ff2827897d536afebc8a794710106a4850f4b56d4/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//dbacae7ea1dd3574c80b0ea8bd978e61b13a65b52a191906ff29e0b4/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DoubleMuon//59a27b25244867ae6fdd40830d4015936e99e207719276a1241430be/000000_000000/0000/tree_36.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..81bfbc3f5 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//dc4c78e070ada687d19f62e6111877388f2a9f87d34c1c8bffbbfb66/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..bf4557f31 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6fce97893b418cdbbadf19cc9f52ba03c3299f2a32483e593b4a31ef/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..5a02cd530 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e7cdd6d3b87a7ce363a465e7d1ec4b86242f4c6535c2d28bb58f01dd/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..a648d829f --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4275253eb132e739da74bb5bdb6a62092544764fb2bbb11952666639/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..121a1b194 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ec72ef6d6ae2d8cd555fe2e9cff798f7c5d89d5d4929e70ddd4d5257/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..9e472e76e --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6bfce988931af0f6de1fbeed06d7d92161823825dfd26df94a4efd58/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..2b03d6114 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9dff21a1e0e5d29eb50c0db0c898f3e8e623baaa3aedcf300c249aa6/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..4cb26ddc3 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//adf28295df81c88cd495e13d3dc58f35e030e1b610698e97f4a88837/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8.txt new file mode 100644 index 000000000..fe942fcd0 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8//ce9ebbe2dd1aa821d1357c5af4ca12c8b73989c98f1e5667ebb59002/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..b44c0f532 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//246bcc39d8799ec7f69603cac810eccf3b41aa5248ad9a74537db489/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..c2ddfd1d7 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//5986a4f8d8ad3100146a1c6707b24fc3704dd4dd4b8ba101570bd37e/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..34ff22782 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//d6310ea67a981fa2594987aa6b0097b30099673c70df57a8e79b279a/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//d911b4f090822f0c3f4ae4e6a2fb231c88641abaaa1bfb46bf3233a2/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..ee8a5bd03 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//99840cd1b490d97c9e1a7f6a6a71df50dfbf338b482b598c06f10be4/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//da96621f24a5254ea371248830c5dd32794caeaea3586ded07d3971e/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..b9beb353c --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1,18 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//e3d285376f2ab59cb4c589a4788e72e28682b70e023a3aa893507fc3/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//1dba95a21f7995632c1e2291f41abc80cf0e65779d5cc163226d2efe/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//b1dfef1cdd38c9eb7b1f6e09c4fc0024200332660d9f2eb1336e3fd8/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//899a56ca71178cc167f354d8e9efcf265945ca5961e3d07b85a7a99b/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//4bfa4af596a3fa8532508814eec8f48c97fdecd9ac2307b188e642a2/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//4b0acc40c27c0131336cf9ca41a4b9fa5660d005b7cb1826e9b341d2/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//a36d72c331f315966c84e7038d55fa352339590b68e6b47a0da3a7d8/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//d358275d76f8d0dd43f5e0c59b7fea1788f4f7f221c32b7bc964360f/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//4e91b560464c530c6dbf5fd526b5359636db72d841d9defd2d3011a2/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//3e787391d7990d5e14a726e652d5e5d130b60805c65b8e7d44c1581e/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//6512ac67859cce61a7b8bdbfafb6802c42ce9bb3053feb7ec54d4bff/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//326c4a055f9509edfb502d6788e2793ab3b98494ca47bbc4b64bf1a5/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//69661e712f7e084db215b9c3981249679a94d9a6ff2aa99cb30039ad/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//6ac70341b81aeacbdd5f93db4a13b9145cec524149286bbb5094a933/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//63bec7159b87baa55a529cfbb1359a95f0940dbef8e43216152b27b3/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//4e949b14a5d44146f4176b5bf54793b80b57ec0e8c934ae2e130efa6/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//2341e2780b27ba7015bcd90407d3201a587c26007158b5faed3f0d87/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//dd5bd37d1fb5184af7445a51c07502fdb81f04ed425a5ab1f4f3245b/000000_000000/0000/tree_17.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..310c0a4dd --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9d013854ba33ae584366c3c41ad5ff289c9053ae905054806d4451ec/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..0fa53543a --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c37ca45b7c6253a6baab9b0b4f5aea2d16256b75676a1f58f04c8a08/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..1a12ad836 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c9a57273d9305a8280328ca9f744957442281856ad3613dc9469ac84/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..ba92d932c --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//48feeba4b915acbfc043ce3c5f1fc9670f1a79fa960adf49861d4755/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..9a41a3be4 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b84762a8c7036c4d18b028585a635c20d0422a30cee50838b10a94b7/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..d835b5676 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7210d525798cfcdd03f7c198c53f07a56b590b02e941805d062fcea7/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..c3d580ad2 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//db33d5f603e8781fef936a7d319fc8a346413c52c5700044af800928/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..09172a66f --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e5e366c0690645d233876b518f206c816bdbcb3494645e1e4ed5bc56/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..7d2c52634 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fd6209b4b30dfea28d9cfdcebe5d46dd63cf1185f672e0b2ff5a6db3/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..6db8bde22 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//326a4f18430d3fa744ce5ef7e446739b55dd8b73c8c330e08a594bed/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..7372dd5f8 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6ae8326e564c5bde5b00dba3207249b4be66fe3e2fc80da4e90ad907/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..edad72d13 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//942cb093407f7d379981b5e4af3c65087527fa9e5f27dd59da8a5b0f/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..f3987484b --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f0bd4ff6ce1045431fbdc05970ed52ab52a00eb75a0cd5741a6f5011/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..28f83caa4 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//be8cbc8bb221267687e8e72be6cb7525c180381f46ce14d6bde79da4/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WWTo2L2Nu_13TeV-powheg.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WWTo2L2Nu_13TeV-powheg.txt new file mode 100644 index 000000000..2e598e0c1 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WWTo2L2Nu_13TeV-powheg.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WWTo2L2Nu_13TeV-powheg//61cd737eeacb5e2688d58d2a8acf5e383e26b1ab39f96e78f913fd2a/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..b47104cfc --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//4c77ddefc4da11b537be54f72c7a58a40ab4fc226282977ced6afed5/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..db474f2e2 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,45 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//4d036ed25129ec4a5ce9c0c70047175fb7a5cc6ecc34c90e5ce5d0cb/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//3cf0141fbe6cb3aef37a27268588d00750bcde67dbe288a93f7fd037/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//94a73c30b641b215ef0c1cd73e123d526b06fc103d5622f336bf498c/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//377bf780747e88aecf800a7939c62503b7d58b4fadbb6ea0b351503e/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//3fd939c316117cd35c2083d3fcf370eb35b520ad2dfde83f17ac2414/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//1f1e276d4d0bd9275650495fd7c5e678c01a2c800fdaebc2c9b07104/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//be447017e73990f3769b4b4542fdd97c2033a95975bcc48be8908ead/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//9e5cf2e962e8759c84135d7d16ce012f63d86e70596d003b14c1262a/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//98875436fb12970dd9ec9f9aeea7e06d2d15e761645b46d0c30f411e/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//01f65163f898a5ba82a275bd7e9406b7379caf290c59c9f11e5065fc/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//0101b5fc4359bb8bb86c06162c66b02dcc74a4b79d155d0fa25f8a95/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//abbeef04b62c730dcdc157db247566bc1d9c63d1e60a8db7bf1f71d0/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//665069d3c1884833812f7acd78fa1f3b0ea8e3a1cf3f955dfaabf069/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//34cdbfda0a6ca77544ffcf443eb077f4c1b8fac9c2632d69f2d551f2/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//45e36d01ca6ddeca6ed90ec198f15cfb63e898a5e2de95c1ed8d2aea/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//65b5a6617ecdf87f23b8ea3bf9df48c0020802540dc8e853015dd287/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//cf65d27638a4d8adedbcacfe9b2106f81e54a38ea74e7ad11feaa20b/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//26102c1c621fff66aa44b4fd19dc5a0ac5dd74dd1b279aa019049e8e/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//66dbb4955252c0030da66f34f88981fc8439316a61d2fb78092ac74d/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//366f93d4143393d40f291121663117b298f81f4fb5612166b3905b59/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//495f147f94ec374c438e094c88bf8454580d8c1fd6176945be15cca1/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//c86472140b82cba69fd613a22d8157934e95ffaa9fbaa709bed5336c/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//867a25530e12cb4126126c3876f46005101907c57d00bb3b40f03331/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//ccb99050fb92a9c18165fb9413e11e0749961eca944865084328f007/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//2294eef0ae87546629558bd0234e704d5b7a02e20656f2dc49000046/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//d533a064544ad7c618a16940c96afd408932e764558da1a381869863/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//b703f54825a6cae68cd3c50215f094860620e342583e8fe872b118bf/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//7e3716c11e062206d04cc2abdf2bd2a0faeecaa0df5f0a909cdca44e/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//5a73f4e1428e35d99575d89659465fe361b81c004e61933c819c7120/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//954e732e6f57e7038b2cb3352713f17e01f2f42cd7a79b53f5b4ffce/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//c059f5a7465c73a90c12e0313460e0e74cf028db7cc68e66f1cc86af/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//88f6037e1b937c7762dae5247bf07cea9ffe137be4b242ff8dae0c3c/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//992de3098aab85ac0cab444c07e9e369480e5b202bc576ab371c8967/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//45f432d9c82a70fa94aa6e70652b881b61a1f45cb63ed2c6025ddef7/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//3c5442676b828235058296cac4e6fd94417919798a43b972d4f6532a/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//1eccb0487e25b6cdecf78541a4c7df3cbf9606856970fdd301e1d5eb/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//03eac89edfcfef941c1df5b0fdafd705218ed0fa9616a3718a31cf47/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//f7553687f925ec697a87f14c6ad9a6eb1a4905a4843e152edd6efd50/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//da09ca3176dae3a6d33bb5aae7b8952dcfeb326936ae13de79f7dc5f/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//a9c8e7547e2b7ac29fd16e89f4ac5b6de300861003feef7fcbe370c9/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//98c800c91c3e120aac53ce908ade2a1af77f1bbc39ae867dd3f9f9e3/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//55c5b79615b312c101c0dc382c0ec6584693ae4e80ceb601b609f93c/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//e5ecd2ab9e1efb1d51a664ea41ebf07b25e724e66bed9a87a75051e4/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//9343175cd68114a6d52108a35022b82d50d920729c8be8c584fd0aeb/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//ab6ee6c8934f8afa76d23e79077f610405c7204dc44b62f90e08fa7b/000000_000000/0000/tree_44.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..03309eefb --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//f82bfa089312bc7b24a1b66d75ea453aff78e5cb664280ed2f236d9b/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..90657c7a3 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//14d94b6c2c1f69ea9575506f6b14ca4e63f65469ad4ebaa2e413580b/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..9f6adf8c6 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//288db64098fe2ce9449465e977913611b64ced039d4973fc539b2486/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..d8654e049 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//abde5f3ab0781bc6af119ad72753ae8f9feb4489cdc5d49a316bc3cd/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..8bc99fc6c --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,15 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//f7f37723440d04ca4741ca84d926508d092acb09ec7a1ebd887651c0/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//9ffd770b0d9a8c72bf68d48269c6184fe6a518c91e789970116fd2b2/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//5fcfd697271ba43173cbb38022be4944e02f9579db2eed317c869461/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//0b5fb15a4714d79211b72542de7c538847c476767ba2319e66e440e6/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//4f8071d4618cbcdada5f87a5ff8478207bbf4d0bbd14f816c481363b/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//89c20b7c5cdbf6d05eb629653329bf0cda2f825c17c25c50e0670496/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//e5b580029a26ba9d5126f7c647a6af5bfa1bef91a9e10c247fa68d7a/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//fc9741bd94e390d888166037b4b4775696747c5d693bb2bd38b82a3f/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//3802838501fa4940e8852600ba4e2cc3ca33591bbf7f6ba6d8707756/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//7d4cfb82212f9dc6681f462a7e26209a60ab2208f51464895bf2add8/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//4b0482f2db82bc376dd20419107ccaaab1d70ef972c074e8d07a2f37/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//0e25eeffd933adf4265ec014a518b445277851db2099ce6698d99ac8/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//2c215299abbc8fd72a927de2c18e2b90186a92fb701bd48471232ae0/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//a68c3a2351c439e1228ac28884be0d430f3518eb016913da7246b792/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//cf97085e5151553ffc54153fedf217e960959f4e105b263712d6a05c/000000_000000/0000/tree_14.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..e0c314ba0 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//509d72308446fae86eb5d25c568287eb3f70fe7b4f056d32c2fe5bcf/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..b1267c2f7 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//432e0cd6476e2ebe8a62c6a620ccca0a031ea9fa3462db4b1bf6f938/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..63640abb5 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bf3e285f0e981e4960595d2afe78778638442b7fca9bf7acd482cc19/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt new file mode 100644 index 000000000..74f9999e3 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-100To200_13TeV-madgraph//a697d6234dead88d68c41ac934384e8e3cd5f78184ad43424104e8f4/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt new file mode 100644 index 000000000..c1e91ba85 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph//e364bc546bce951dd8019e37c979727527b588677a2516b240e9c24d/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt new file mode 100644 index 000000000..0cce84842 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//784b7c78e87982ffef91cbd0c6419b25038da895322eeb4ed4071c7f/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt new file mode 100644 index 000000000..5a6cb74bd --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph//4ea5647aa1899b276f00281594696eec09b61e0fb2df3e88fdd21355/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt new file mode 100644 index 000000000..2c93f165a --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph//fc2c9bc81af169d6b6f5e91387ac6018a74b7e53dd1ccbbdf86894b2/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt new file mode 100644 index 000000000..1f5cb9709 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-600To800_13TeV-madgraph//4dd19e9fbdbfbfd40108d6c46680b25bc52d9c09c831ae103faf41d8/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt new file mode 100644 index 000000000..97ac8bee9 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//177524c531048c593cc46f5029c3aeae5ec759a3bdf8de93181d73ed/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..a2d5e62cd --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,29 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//65679c166d7df10b9cedff4f509e747d8ef8c185b2221a96ea9e3c46/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//d2470a2340c6b8c434fe3cae8b61d38f504537e56e453fe0759cffa4/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//385047e970c586003e533c0fef22bd12f10c5fa07042be57d97c7194/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//30298bafc36f1e84dd3d8e338ae7e56284f5f8d7abc9094623d67575/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//2f5edddd409cb0e129a01ba947bcd9a496b92945dd6e0feea0de1009/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//23cc7a7d78dd9b74baca1cc05d2f4fff0d6464f21e9eb32f354c6396/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//d46a4398841866ba95823a483c376dcdb14d459ac0065613438bf60a/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//35dd460a82d095b5ab764d3ec2a366b95e3a892590d5ba6516e4ed53/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//1ce05c3619283da2af23911bd82b74b7beca8b810035e62597246040/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//ebac37471763b67d892f76bd15bebca503966d6f069306921314f543/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//4b172032b02530e758843d5b6521febb2fa7919067cad749f27e5f4a/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//3364843b8356df6a9bd796947d0302637df6ea34e60bb2519f8a08a4/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//c3f7d826c39ca6758d2a1be1127da20581b2b4301da15e282fdd3666/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//2cfe2a600b2e8ca677928b72eac49a396ad435ce4c9b3cc9de1ff784/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//0ae3d29022b023fce162e9a191308f4b69347f149d9d636e2bcffba2/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//31a892f655885e766d708bcdea4c5df86deae88240bda6f49c8bce88/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//abe482922471eed9ab0a431d3fb4678351b8ee9a919b4cccc7523dbc/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//4f4fcd8b6711c8989945a2d3e51decbf679863030a49a74bf45e4733/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//84a69d4a0b16e338d5a8cd16d317ae938435a298ffcc79f703816c0f/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//8084937dc584b3af18b8c4943d00cfd5c678557d9d573c2c161afec8/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//b3bc65342a08d65f92c626e0bb4ed4bfc603b2cb81b3077dec67ca8a/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//09a1d2db10cda4f5129e7532888f39b74903cf3519d8b49e71bf3211/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//16119e80e3958c321a47b0e4312ff0f4c3c90acbbe5f6907ea2011ec/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//8184d019ed1349e38a1c8c33290465e08b8f9d2a1b1e91b8b88db77a/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//36f583447a4e5069a1378990e04a8be634a891802cb3794fecec7840/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//f3a0e7ff5184138110c517b0b6f7c49824190687ac5bed6eac4dbb71/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//03fba243bc0a85eeeae76b280ac7d336d8d59285a18cd743ad7fca45/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//7f5ad1efd28bfca28110179063a84271a1b1e74570fca5cbe43233a9/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//82a554add477da3e16cb14e1bd6d8fc1b6408c38b01e07d3165b8cfe/000000_000000/0000/tree_28.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..0ddb99fb4 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//74535c1f238c3a343119ef72b599c7e8299ba6de313a5a94cc64e6d1/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..b2b7e344e --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,17 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//fb4178b5eb8ce218ba5f4655c13c154884ecabcd8f6a8c590479bea5/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//5551d5b77b552bfe6c39d896c1df631be30962bd3d5914ba3277001a/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//9238c7af04ed5539731cf19f56a5dafcbe647b878d3d520e7c38d844/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//fb3b26d8b1b54b23ba3b5c8e9e8681e25f7f30c71dd3d483b79218e2/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//8cda8aaeada8406d0f958ae1a0999d90677516ecfae43ae8348aa836/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//66cf337879b739636c2d157ed7bcff8bb963950c7e3e885bb3baaa5c/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//1522b4cc05ab210677bd125d57e858d4e40744d9691c1d193f02db74/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//4a51396914e7f8a18d90f9dc9bd0a940e43a6b2c96f8b03c4f3b119f/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//129009d8ce7390431ac9584fe79d3502e78a3e1bb5b302c994a8d494/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//51bee7529cdf1aac76bb8f6530fbc4b25c11a7f3b2084f1f0d588a11/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//b5b9f242d8f782b823005c67dfe72bb221cdc9d5b94c615aa058667a/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//53efcd69effd0c6b3efe17a02fb7a837fda568b36c22dbbdbe4a5243/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//e295f486240a1dd14e5daf215194d445218f27da99dc9e00d1c146c5/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//9b7d793e224a2ee1069f63fd29b36a949e3070ac93132fb8973078d5/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//792fa2102106983cf561dd941e526d932a6846ef629a7c24ab3c54d6/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//47881e84ed1c811b4c79aa7fa1479b6a7238ac046edf32be82d325f7/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//334a65751d0e49019cf6e9a192ba1ea2f7df4752a30258b2708dfe46/000000_000000/0000/tree_16.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..cb5d3d05a --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zll2016/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//11c179193b6126ac47f7971194f3f7995e90220fa0d6824d1abb425c/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..c565e22c4 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ea9199449c9ba99e330d715d78540a83de4e04cd7627be60727701c3/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..54226fa00 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7bcc2fafaa26e7e28e9dbf8314b34368e5b626f14c9e8dd300691875/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8b753e024b2abec29f48f6b29cc06f9e3de54ae6e13c4019f35bd8f0/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..2e4e851d8 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7531933e00b8af312531ab634a108000b7966eaea1e762e36d862ac7/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..f02ef37b7 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,5 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//817d6dc64d99b4d259cce977126a3dd0b16120b5bf2219b777f65c9d/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//07a5abf8395c8f0b9a43748868ab23eef09cfc462305144308dc8ec8/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e4ee2936ea3e05ed4552ac5ef04e0b55856c09ccb78d46df22378920/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d1c9499416ed364bda6aa6894a64d77edd7b68cc466f73208ea6a348/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8733322d2fe51ac0f788c9ff1bf408b195e746f3bf1d13398ac4c51a/000000_000000/0000/tree_4.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..060e0b2e5 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//581503970afcfffe5ba427c8d6726df156aef3d84dde0d2bc717b5d7/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..4b35eb7f4 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//56f805ace38699519b40ea8c8207c69911e7b6b861054c11fc4ca5b6/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..6651d77e0 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7927d1ca1fc46098bf568b2c2428bc00f6d2a056bb30492549c66dd9/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7ff8edfa3bbac60a2ef462ce7b3aeb98b774bfed1cd6b7b294127781/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..5d57a31e6 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3a4fd4337ccef7a7c057838e20a32f73c3f57e5df0236cd276cd4cea/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..29742373d --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,4 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//acd27d5916481678c7597e263ab3dccc3cddde81d2012de6cdcbf110/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5ef8c763e813666ad31ed5233be8af5e0171c3fba2bfb93358fd7397/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c1863f75229a43ca590e03be137f89ff14033960a7fbc04571cfc8d2/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7c6535cd3a7c6602ed88867019efbb2b05704089d0b42b67ba14dc38/000000_000000/0000/tree_3.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..05a62b133 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,7 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7c9b3f31f6149cee607f1289f4dfe21712f3c6eb62bff165866cae96/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//55563f79908bb6eaa15513d86b3b58bf8bd5e60b3c6abdc8ae5f650c/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//027f9915319225111d6243d5d074e54eb3d536b5ec58fb830c6fef40/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//39e9f252021ef5898e108f9a6e9187f573f5f8943f2fb08fc319c19e/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d0aba9788c3b5fb32c780ae485ac1c1b84cfaca9948cf3d78c2a3c50/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b33a9d14282fa5aa96859781464f94c536cbd71be98298e03b579e55/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d00b916c97b13bc47a73fb216414be52eea156e8254815f0746ed85b/000000_000000/0000/tree_6.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..e2dc21c3f --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7dd9cead9fa4cc82c1cd82c1cd6cce0da4c562805fcd6e0f5664fe0e/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..7ac233c60 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//30c454413606d47c98c633046924db0d5f0fe7b59855be3aedc3ae0f/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0434b0b53f1d721ad22c6117b40c809cff9703bf49a53250f6100f4a/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//161ff2c48c4860b8a4f23abe38b8474ffc37487177d364bdc13d6ab2/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..93cf85b0f --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c051a0170781d12259654e101a4f10557af467f411450432416f018a/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..a49139748 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d924913ef2546d775634f24ebd9741172c47c88728cd0f3d89532552/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..102f42b0b --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//884df027337f1bd0def178ad8a317fea35d8088e57098f5be4607f1c/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..99209375d --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c33a8759048ed073e1beb575144018d73661aaabfc3d4cde76155068/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..a15037c04 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e4a72179f6c3f9aecaf188ab41d2c185dd9ade35a78257e329a88be8/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fc288884381323868d3ebdc22d1bc76fa63b04597fc37650f6ca1a08/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/MET.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/MET.txt new file mode 100644 index 000000000..aacfe4fa0 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/MET.txt @@ -0,0 +1,89 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//6e2a3b0573bdc66156071fcb76c12de036d9b6aaea19df46781fd940/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//1439afd9660f35424c7da01fa19a1aa2d1ed9217a9246dccc433272a/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//9e8df70446b6249c610e087ad75ae438d6e7ea5585b89fda1eb2896c/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//65f7de2283ff7dd20956961831540578055ba9cf35ccf27eee01112a/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//cc52fb2b2e6eeace211b299daa9ac12cfa03aadb3321be806783dae1/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//de50ed65d8c27edfb3867613fb9a67e31b5b3ab754d30dd4ba3d9d66/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//68cd9c4e08ab08381b2e3d7b43d59b8e6af32f8df77b1a51885caa3d/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//6f4e77a0d9ece6fded35f029fefa95ec43ffbfe490cda8628c79d28f/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//aeaef658657104a0f098d172e66533084bea52778d7b9480260611a7/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//655ea178e359173e76f350f70c9fbaf4dbcf18f08fda1f571431e4d7/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//3a354c778088680153034e0ea40f31b8a80eedd94fbfc77900d9a582/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//b783f3443dc34d4c5d0090ec833081f504f07ebff383690e3988ec09/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//87a22e9903ecccfb89a1209cfc865ea43488c8f5ae3b9e88547bc33a/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//647bd9e44c0d8a471098e22ea22715114c3b94489577b2d6e6ea376e/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//0b9e5eb400245c3327bbf8168ff979e38d3a7424c7b87e8ef2ebc79a/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//1487be101384116280549753bf0f57150ecfb0d4a9f827e4b379d43c/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//8c9c874e3eecde3bdbc65bd23440e71b10bb4fd1593d58e7e910ea41/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//92af1392f450f68fec44ade12c1078e84cc9d35b1fd0f550acc3f8c3/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//d28d24574d61e72009ee4b4472ad0c32f0309066441cfa5283b30242/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//b1a71d5c5b1936c3ae38c35c2be18c10bf0a74916ff6612944b0890e/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//ba5481d04ffc26c725e1021a1ad80de81b86453e307eb54fc1abf05f/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//0778e14aa091f41437e35bf897c20ddfba80b00d1a6dd0a6deb10334/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//e540ffefe82c87c77aea639a605428973989f3b5571441eb32ba6085/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//ec8cbb6a99fd0208dbab02dbc878fce7428f7344e7b750983ed1b3da/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//56a429d3bcf755777e0392a5986fe61c3db34fdfb4a32857ebfa892f/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//9ecb9e29ddf7159af57e8534b86654e05e84ad907847cb51334a5462/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//9595df669ddceb1d5093b71d3595763ef307a259bedd292b9aafc31b/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//380242445b92f0985b0de23d7f0639b1241ef161ea2c88c50b6bcb89/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//06f5568d99bacb86936409fa6b7dcf4d3e6125a594aaf3fb19ea2022/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//c46526366db4588650d2ac00a9e60621d3224fc3a17f91767e4d3a1a/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//3fca1601139ce7b25aebb5580416759d4e82fe1d7a2752317538c8d7/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//6de92d621630665e1f2af3440d1e3939a73c9444f16b6ba04fb1ee97/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//be8631b6849976855de628d54ac3268542b1a63b56cf3537b9a94093/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//c73118e0af940fce3692dff978f91d2ca7b3ce17848c222b6305862d/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//a1a7a5c08da7138600f2e9cb4204271e96ba4802fb01f2b70704de09/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//884d1b1305713afd20dee93448d8454fef9c2e2b024f6050a774e065/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//15d57ebb71baca8f23b32e12ada5fd96433b5a44627e14b45f7a19cd/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//6a37e3b5c074467899bcf9b7d48478e5b5e425d6390fd1025d21beab/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//c9f9c74ee2326ea48703eced1ceeccf9dc84bd06129522344c08b16f/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//c00b7279681830868d9d70397ae7c35b73c859acd898a362c585d0b0/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//257357175fe0f96b2d578b3df60f8bb691a0ed442e83f9222ac239de/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//d260ea5d3a740731edaf020ae1f7cd104c1cacee3f0491d5672c43d0/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//4bb91be53937a4a43a2e9a22283778fbafd7f9a998579084a81a9870/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//ac88bd25af52676f4ed8880d8d35e7f7e3ce0b2eca4d2471000f7a98/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//15b4af02fbc2bcbc5a586edca65e27130238bf616d08ec12520801d4/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//358a6c2ec6f0412dba1935aa24314d1e1c127cb6d879989719e323fc/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//486a024e866f7d9848e8d08287e7fe70280560e0379da452d35b7c26/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//47e07049c1808c73458cb2b851de62a8a78031a2b83b7aab8ad85608/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//568f72092aa2427cb714cb5fd111a2aa658382882ee8c1765896be84/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//7ff5660d40d7863f2d7fd61aef52feac3d095f7da26bf8c7a4407733/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//278b3a1201ef3da15f9ad7ff24e9343bb765bf80711121197abed1c4/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//eb0d6c8c75132f44d64ffd9ea7b8c6ce12cadcb65385ce2df71aa45b/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//ff08d0b99c36df047780d7d303179ffa1d6d317512c92b098b1b4ba9/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//4496c2827863a372ef4cf6526e73c236dd0c9d6b82f9b52aad0d74ec/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//83fe6d8a1696bc0d6235b5bfe7af2de02ea51071c9b5a058629f29cc/000000_000000/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//6493e5b21183f6b19e7812d2bf0b072118fdd8e1087f00cfcd6af820/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//52f0501831dc40bc4b1a173853d19aed0cadcfa73ad4bd29b410d905/000000_000000/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//f7ea02eb5fe11e44fb38c45fc09f19485a4bac9906ca4ffa6d19abbe/000000_000000/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//367b40241beb84b9e1332ac8ca9f8fb76f030cc806f137dea5d0e97a/000000_000000/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//01b2940055533a6d63d42c2ba4cb276c0648a447e3ab0c3ae02f4fa5/000000_000000/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//f67ee5e322dbf3ebfc7cafb205027bd4548abad3523c22b86576755d/000000_000000/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//4699d582c2899d0f81954d76f5e5c08abbba4f5d8759f60e3c1e4741/000000_000000/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//b591934d9f7211937f94bf9a6639634e5ce37b70cdd5ff425c45795a/000000_000000/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//32218176f313d59ef0780698dc54d2167b2186fa80cdec2090200b9b/000000_000000/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//fdc902b29dc94e3e5090c9894a4e127eed3957d8d3a61502d649a2c2/000000_000000/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//187acacc119c48c02bf4b117a2e0a40caeed7f386d5cda7b1384e868/000000_000000/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//e41f50ef26390670c32df777917da266e235470f8f8cc2787bf7fa77/000000_000000/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//2d5b854761f5e927083c6aebb1069d425613bce9eebf3b2ab130d609/000000_000000/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//5d496706e4837169e217a075e14a157145c1661da7f7873d18e2d380/000000_000000/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//a07f5db5ac24815ec64ec976dcb8386dc3642be85afd48d81295fcdc/000000_000000/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//7aa896d12718ed68bc686bd0686f4cc9dabdf57f80d3dc088cdca7eb/000000_000000/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//43b9f65bf8fa786b0926de6be84655b8187f5f70f0120b1539b94dea/000000_000000/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//8bc3b98960c41552bd0f426cea787ebb124f3dca211a084b3e0939cf/000000_000000/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//7100b912f2c9cad7c3ffc63d8f276f224e33252ffe6e102313d86f08/000000_000000/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//158834eefd7fee71fe6b0a85df31d81fdf359dfe0e4082826564c149/000000_000000/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//32150a7190aeffcead9df7a51973bce739a35d35aea779e0f9429d6a/000000_000000/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//fb08e85fc2cd77802cf7daf4a53512b6f3ecbe61e8e6a7d0d060449f/000000_000000/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//c1c003e19210cc4c806e76221a48d29f29f8912c4209b166b04bcf51/000000_000000/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//3e3342e360c26acd515a31475710133504d933c3afd43e8c0942235a/000000_000000/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//976b12901c17da1521f8a30b9c156f7a3871ecc18f23cf150787cc1e/000000_000000/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//15cc5920a5d435557f66c1226c4dd5a7383f92e712218324d1dfd5e0/000000_000000/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//8329a98ce06b4793eac3f85865dea65076024a0f5f94939bce7e449e/000000_000000/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//6ebfaeab876450f18a433160d9682f570b54061bde3aaf4dc5a3aa47/000000_000000/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//a55b452135650299d6f27ef5e71e4e7226ab3bc94d14ce24a243a39c/000000_000000/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//858017481b82f9a008e98c87819c3b6c9aec868f32d8d7dcf8c66d53/000000_000000/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//76203b507821bb410b948d17f47c49239614a6618e3ea9c6e546c7d2/000000_000000/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//cc43f684161ef3ee26b185b94c76ba176a4c9da9d070d7b94637deca/000000_000000/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//79244014a2c1d7909ac710077a96c551b442eeb5763b803a7e4eea31/000000_000000/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/MET//d8b88585f3f6f21f2939155d8b5d425f9ea16713d77d6d301fc966a1/000000_000000/0000/tree_88.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..a1889b6f7 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,4 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3c57f47620929ecb9464edc54d2cfcb6f7fbcda15ba20608b3510004/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9082236a78099410b9482c54dfd3aebe4c613e27bfb50cd76cd1e46c/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9e84220edc3e8886b1f1f6ed3f5cc3237eb74f0c0e8e97a8526449cd/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7549512c1dd4f740c4244f6ee266dacffc4d982edfbd1eeaef2d2b31/000000_000000/0000/tree_3.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..bf4557f31 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6fce97893b418cdbbadf19cc9f52ba03c3299f2a32483e593b4a31ef/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..0c7f67764 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4059020acb8a839d21c0f36df070f60a84e8c5d3e3d00feb7cc8caec/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a88a99aff009302bfc04b1b0d526d5451e33aa68481f039e2caa549e/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//91ec4c3078d1f0d75a579795380462a584ac5c5456caa85adff5e9fb/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8d34c88a9fdb760bdc5744587b33cf386eaa4687214d39812b72c624/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//002afe9a97a5b9d1d7b662c2b77d1cf69f3c48704339136f1dbb790f/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f56eb116921fc45f12301f7553b1931c33148769372f24f12151aec7/000000_000000/0000/tree_5.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..be9e60bc8 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c6743f5822ca9fd7a480459f349de3ab31732afe7d12a30ab3d07c39/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//63b2988f56c4a52ed29b9cbb05bf23bb9f0f4635dbc72ee80880ac01/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9b8d3149054fa4b017a325274f75b5087208a0fcecbb1abc0ae25258/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a70c4e264d49eccfa9939439b46ed83bebe5087c3a5c6fda6e2d9c17/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1ecd64220d470295a5e91e2f4d5e87b4ff56df6bfb579996ac2371a9/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3d1dd5c13ea0c55faf776c7a057e31205c1733e381d392efbcd5cb5c/000000_000000/0000/tree_5.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..121a1b194 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ec72ef6d6ae2d8cd555fe2e9cff798f7c5d89d5d4929e70ddd4d5257/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..9e472e76e --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6bfce988931af0f6de1fbeed06d7d92161823825dfd26df94a4efd58/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..2b03d6114 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9dff21a1e0e5d29eb50c0db0c898f3e8e623baaa3aedcf300c249aa6/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..074f1ac9c --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fa679cade87b03c012aed9e11ab1c2c7e4772439de4da0e95ac8a585/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//11e39148a5f7ff47b1650adf5dc6c1339ae8a8956e5c9d7f7208826e/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//77a22c702c1502d2060c337c48bb1a2eec5a85fa16a9e8fef178e129/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8.txt new file mode 100644 index 000000000..fe942fcd0 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8//ce9ebbe2dd1aa821d1357c5af4ca12c8b73989c98f1e5667ebb59002/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..774bb050b --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt @@ -0,0 +1,5 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//2c1b7073e1fdf055c3dbbe110540db99075afba205121a1519e9c99b/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//7cf8cfd91e597e3e356071a61bbb4c7250d7e70b06f962dfea4f2d2e/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//40446abb48f1ae94dc0339a6081442b64e159641e3e85a0db4c7a5ba/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//310b8bfd111e2b8609041c0b7a84afb05d7c049de7c0a83d0df1c927/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//b4221ff7eacebd82860c6db69c47ab19ddccca86da03d27e808705da/000000_000000/0000/tree_4.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..80f7a057d --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt @@ -0,0 +1,9 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//7e6978c5a62a3be515aa62dad93023307f90d0125bf0615d52e58930/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//00b32096d430102f878f0ad0f5dbfcb52ab45e70e0f35ee9fe1eb3bf/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//24a05f1b1273a7b2550a5dceb91ebeeb701adb6e08a372e722f9ce66/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//3fff47b1b242ad0b09f96c3ff12a3389a158dd5815e970b5ecd8c13a/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//3595c9203e89b44cc85ff797d4d16f33d046c79befb5abbeac38a176/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//cf3c22e9e15070f2c1e02b0584c14298df4b401e19b6461ba928ed9a/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//851bf669751bba90d2127a2ac8de0a8702cba62924043f4ee4b426d0/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//860f78ca7616d4098c83c31d409851377c04995190535c23b8d88040/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//1507d3ecd8678bd21db6caf6616774664b9e054dcb53f802158104d1/000000_000000/0000/tree_8.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..90009d1d0 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//d901a4e9365ef5b85aa594a5a85c8429b63c2c784c2b2b7839414c2d/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//285d21d7026e75ed3ca93956305d9b1213a1593cfecd3518a2e3353e/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//405aded548e850016b1e3caf9e35090dc66a5f2ab5ea2a46c30842fc/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..48aaa9d67 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt @@ -0,0 +1,4 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//e36aaa8eb134985a0b72bc19a17dc45011de712521589fec0a0f8d10/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//a131a6c8b54efaf26b309bee674ec4a3757f4d73ae8d3ae33db5aafd/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//c5f96b4aac50662531a04b167254f322c328e36ade87b62fca6ed888/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//da96621f24a5254ea371248830c5dd32794caeaea3586ded07d3971e/000000_000000/0000/tree_3.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..fd27622e1 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1,41 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//f54655081de622f0b24a2bf63c671783a75fda7b989c2044df3ef31a/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//6189932b9b47233ceb614c41474a494e626309de66264faa77f025b4/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//3719c58d436de624bdbdb037014238952aafe3ce8097a20f5d2baaeb/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//5d2a00f27a65b071004dcc813fbb5007577ed0b3e30d7427593410f6/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//b342d1b77ca60f576ae472067e77c4ccae8f7452a9548b216c035548/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//2a10ce24dedabc1a47c70646020a949620d3500b86e31ecbe2811ac7/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//1a00437ab14492f763f7e3b51e5355142e6f20d239d191c1b4ebb772/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//6ec18005df8f0ec1c16abe3627323a406c0df90b208e39c5277bfd1a/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//46cb5bc050de08281c49a90a64f3ca06abb2bba0c0cefa170415ae02/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//04494d08a465eef222a103385aa4589239d609148cc4b5c1b990d7ae/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//af109af9341174aca7f16d93bbf5f257fb59a90d44004621e279d6d7/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//6c4d301b107d7ff6c240d60692752abf240a7306597d4f605fc235f8/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//6426ebae6d15545ed707f90eb239af1b758f17482bdecdc7179bc01b/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//330e225501bc36f03c29177bd38841e04a3d9f06582d6ec85c791941/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//80488563360558356d029ea5b2292ba49ae680b987dc691746f3080b/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//b0b496b2f6abf35a95b9ae065320fbe565db301217455a49f183e713/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//577df0215027499e0b3adc0fa3cca41905e1c243d2addb7af537549b/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//68a90d2ef56daf721e578caca1972a55749f85a4330882c4565540b4/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//23dbdb8f51b62f1c21aa2496f9e1640031db3dcf256a49569182619f/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//1b3ecdfe5561625b1f704a0535728d091eef0ee79fe0342c4240475b/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//36a16af2033b12d16d51fdabec8a4ec36989637b347d0e53418bd679/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//292c41e3e70973ef64f3945318a0814b6e6ee5cec63e8a7acf1517fa/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//f1d2318e5a5f2bb7b52d1195d8b0bc0aaf3a1620726b02a94152b597/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//0819a9479f5a286f9d54f3d8bb8cf04b719d0841b33631e04ada0291/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//46c2017bbf8ae7b643925c8e430afb74bd7ae59b35b342c5311f69f9/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//b39d8a47f450955df50cc50cc0f7547d91d34c16d5ed6f555d2ade78/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//1eb5ae861d380fdab812ee3f0442df6e9cb8be70ae7f20eaff1dcfa9/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//266fba802e1df91c3b21530f5023253f93594ddcc6f8e7855a2ff5b0/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//d51aca4eb97d08f0225fb4c9090c996a6364fc782e618accd2fee578/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//371281b34390a536ff1d2eeda7507e15dbd702ec225a5b3fac846eae/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//f75f4858024f398bd1e3d0bca4be00073dd1a24fdae0af8a2c84cd55/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//605c75b3439502767f6724281f5ca3ed051c7ced315aacb669791694/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//1320f8348fcaf00c2e7e03c97701fc80e0b901212a20fafa2bda9fca/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//6cfaf2821997af8e91d53e763c24f276cb1a2a035cb96440f31d8e9d/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//249aa5f6a7e1bb1ee49df868fff5abb9f34a4684593bd080091b7906/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//b75baebc47caa375a5cb2bfa4b731a91c518b2bd2c659caed9954ec9/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//3e14546a5c29f2cba747fa472d1bb84bd28c6873dad2d04fb1f27cfe/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//b9be62ef0d233b1635d39dba4fce313fbbd06035a61f70b8c1b0b7aa/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//17b00019bff8437c5ba02bca72844963079b5701659b961dd3fbf082/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//d754ce6a73476528bd4a1c0f19c60799c68e51fd0ba3515b26a38459/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//a2cb03590c2d0b2291970470d108115689fd31b45e67acd850bd0c42/000000_000000/0000/tree_40.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..f3c60c2b2 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,4 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//85410c9e7f4a80a353c10fbc5997d9df2f04fc1e770b74f8daf6e2c8/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d5476bc2f0fa75fc3fb559c41362e194f7de5deacfe136bb3ba6b4cf/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//364b6b6ad4fc840f56cbb43db0ffd40e805c50f3a711424ebde7a8f0/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//588c37c3cf4a6803fee20428b9206041ac61f7c5cdbc351b2f93aa5e/000000_000000/0000/tree_3.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..ee556506a --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//39d2671ff036b36492162a3027531df0267573652f5fa676554aed05/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//33cb7abefe23139abde4e63eef0cbe08c06418c5d25939dd5d71944b/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..a83080f08 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,5 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b6f510a06664a5fac9e0bde171026c04968575f742548723f167006a/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//df42b3ed96bcf1f81f0dc5e0e9018d3ff41f56fc604e5a74a91952ee/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7640ed97205c76ecb9b15b5ddd0603272974ad3c62a4727650a6d201/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//20e0323410ac48624c19ad437cde8e846c445ee25a0483a6e74063e0/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//435cf7e3e17b30ad1070578651bdb230403ab347af833e284749097e/000000_000000/0000/tree_4.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..3eae61452 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,8 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//64036ea9f61b9d574951ea5ec1b71f1078d03833cc7e6fffc502feda/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c122fe5c525a87e2ce28d7bf154d584dce2bf086fb351484c5f1d61a/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d524a5922ce0324e880b2004b0c24e977f752cbe90056587ff4fb079/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7bb7a58a0d670d7a5831a19f6dda64b9654922631dad52d22b8ccd7d/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bba36d8dce55b677a2cf73d5126e4f392ed7e842f20549923cd6dd03/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f77a3b8520be79f02e530289998f83fe3d0e2c09a3a82705c51d23d0/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fb186a78a7ecaac41bb66017f3ec322834fc4700e8f2b7b17b6fcf5c/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9dbb21a8dca276f1e4dfea02e356a99e8ab108850eef2e79415979e8/000000_000000/0000/tree_7.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..8758ab167 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//db03ae5c947c563b15066e01a3b747058d2029967d1425ee0bb64c67/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//58d756d4c99eb025a556ddd6e3edce8b31878e7794792ffcfaf2bb82/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a38d638d8e65dc27558d6d059e17af77e81dd1ea74eec78041160c50/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..0b3cad875 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,5 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c96e4a17c7111fa69e7d9b054d3cf50ce8cb91bdc04ce580a59ee9aa/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//18d9cec58437f952b7a0221eb1c63eec5f1545d8449142cf257ac49b/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2cc2c13d694126206b93cdcc3cc910ef865804c5dbe2fe421a8f82b8/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2b31b1baff91d15cad7607cad892cef6614db0b5ab6a837f80a0ab75/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//59fad3d0978d9e948456816ffadcdc775dca34adad1bdba4e104c528/000000_000000/0000/tree_4.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..add638259 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,21 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8a8a06c959f154291728bd32fc862b1eed01a6e1e03c2e1a9dc73abd/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//03c453f6a768bd045e0b8373ea38097ece23f733459ee20767ef7960/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//28eb02326fccfa604fd163f1f87b046c14204b78bc6ac4e32fdf7b23/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//05807599658bedc5a2dec3580ee70cf42bba0710e87d48d58e234e73/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e35d4a6e7961e60d5f8946c86feecad2f0de4d289601592614f234cd/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//06b563d393daa446dcc8e1fcbb6cadfb3e981a4a8863345ba50c81b6/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2890d6dec3d4ee9cb40facd069cd94f44d0932567e4c438c562572d2/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//639fe136b3ac1087773b4129155e978158281eefbbd1b0fc8e11ff19/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//aed5a229041e9b161b3ae868bb0dc20cf09a18a93c763a7a02d3725c/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fb4e4897390530519fd570c6455712cd747a48a2e47db9610999fd1f/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//442b74acde4331868796b04784da6c26814aa41f28bdab261afcd1aa/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//09ef0ba9ac18bada27161d3f2db931e5050c6873ef892a374c4c4ae0/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8c9d2e13fcee393b9ec721887b7a21164866b2228c34cdb48b34ef20/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//712aeb1a34ba219154a3abee11abb0a7db2e70b516eb99efb95e876d/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e9f2d8447d8e5070f9959c8a6ff2c2d548f96fc65605d3252adff997/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//89e3d7eb42af556c4706ba067c9a9509ba1ecc0b0ed49296a36f42f6/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//051981a60b0c14d1c771c81f6e2d0ab828d2cad3c6ab1395c77fe4dd/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d7e06c0acc7d4b2513a1ec317618259a84b3468eff266706177bbb23/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1d0e5f2a2121325809e323bd78f58c33996ef79cc7c99dc15c2befdf/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ee03432c6e284624dbfe8f1139a1ca9126bfe6dc22dea50a809f2bfa/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8fe4d14fc8d1ae7832df0c534820321fa8bf9fa9053c0effa49e1d51/000000_000000/0000/tree_20.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..70cb73baf --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,5 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//37b51cad03f2402cd7a5a83475efa18c1019306d2fc122e73684e087/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//417a572a185bb8704dd6f3ce8c4802ebca1c71afccf20eac530714b0/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8ca9feb3d57e3ce447315a0367ed5c2dc3c60a639344b2874392f406/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3a60041f3c026b146eb50ac78644e4dfb9d51e7e79a071c6692fe0c8/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e8f0d62b1721d09630e73d00c59c18a0c8fde594c02b018a9e770536/000000_000000/0000/tree_4.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..1967bb3ee --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,8 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//eedd452c01179b1d0b3d0f325dfa19f9ae3f0493697eac01b60c8b5b/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7cdc9dc0a6aa131fb661da88dbe8b826b5c12174b492b5855dcdbd05/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ffbe365e54706035289cd3f18278114c018bd5958b83c6799e30ebb6/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c5a1e88bb74b86373f791dc3967a03db6e155bb3859549a2aaf45de3/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2cfa4758cc61ab83f940b443c8739cf568adab2cf00e1ed7dd9dabfe/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//32f43a495f20d43cbac57782cb7a22ccf94505dbaf7fc57c922ed87e/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e2030b48da9d785487226f5992fdb04ba022b8d09ad2d1f3c86737a9/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//28f7894747428ca3f3e2ccd2ead8b5c1c5c0bde43fff839c64d78cbf/000000_000000/0000/tree_7.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..ee714bea1 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,23 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//56b38cb5ce42bca89e980c6d594ecdcce8d6f615bd4d7b83dd9a3bc0/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5a43d2cd4a975f86ee6d1c9ec8abe02272d93f75cb9493304366fad8/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//225a0563bce4f22b8588c12d45045f885a61029418891c61e556e16a/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9d6cae3a3bec00fd675eef8e8b3395785e26b35051763222a233b0cd/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7e80f663bcb923545ef421962d2129f16f2d118ed3e78ef88d33fa5c/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bbfad2ff92c215d73ac5b5bb594488eda76cd8ed8567834ed134f645/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5c777dbfaf0d3c5d358938301ec5b631d34027158aa26edc4ec28f7b/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//319977ed8f27cc4af921e8961f1fd4343e7904e60c8fd86671767afe/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b58d3b910ddbf1c49e2f7d5159eef547c23f907877d6590682622e5c/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//414f601180b30e7babfc3a0453fba77cc382c234f0caf4c89b23a9a5/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d14b9cdc1dcecbaa1664103f988f9a01ca97a0afa1eba1724b0f9d00/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e1e0173ebe8a13403651b1339117410e57df0f1163417eeca21e7231/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1f565c2c84b5c7f82b32b8f2fa6cba9fa16d7d51df53967ba2e05dba/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a09bada543bbe3fc350a1e74b988f2efd118307604910eb527c5e25c/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//cd80b466c6776fcb7e263e2ea75fa3b061543c2b0eb1f9f5fc0bef4a/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//49f29eee70271e4ec50b68e938389715531a8737bf16b6acb6111ea6/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//93afc9f8e770ecae93473be5017e1cbe1bd56b9a6501a3cef88c7fc3/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b2c965d69ba0c8e825d298f96bc2bc8d4650dcd6ca9a826a860e136d/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//767c0a108eac5aa4fce822bca454a81f572d31c7bf6f47e9fb55f68e/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//100e09e23e46703d2b209c45bae595de83f8bb51fdd3279b0ee98a93/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//102ec298e2f591b3d6ff15c35bd43f931659cb1fd3b98ab7f17fffc7/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6ccdc7900066c0644e987b7b9b0c2f472f074eae2d0e1d82f5055fbc/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9f1718272f0f1d81907a3ed0c4b41bc45126ac624e806555589eafae/000000_000000/0000/tree_22.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..7372dd5f8 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6ae8326e564c5bde5b00dba3207249b4be66fe3e2fc80da4e90ad907/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..89111bbcf --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,9 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b9d6a3362db9d70a4055b9b08e669eb46f4d28a97e130703a80ecfb1/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5db8947fff341646905bbed73a9891565348d50e276dba16377ad095/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fb5f2090afdf9193138fa5df9413bdb9c5a8196c2b309e87efe5f0c4/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8055123c506bc42847ebdff20cb2ceda3b97d639ae7fe6f9759ecafb/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7c8097632629bf14fbc761d22e3b2657968b23ab29c6171570ce9238/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fb4e96afd8ed65cdeb8a72c961697879bcc25886eb088b8c7573f41e/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//610a0e52435fca1c1d08123740b98fde9d6682435941de9f995c0627/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7bfd83ab504ace2e57476d46e893c82c6a34dbacd4bfd7d6231395c2/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4ff86fe7fbe18c89877365e3c4ceb705164f0e12ad297a17f31810ec/000000_000000/0000/tree_8.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..f3987484b --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f0bd4ff6ce1045431fbdc05970ed52ab52a00eb75a0cd5741a6f5011/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..c77c5839f --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//0fdbe6c20421dfd564ab8c41826c5406646af804ccac8b1d20a0d027/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//874edf1f95781a97e4446b80a6bb035a7f689ef81f76f51cbdab5ae7/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WWTo2L2Nu_13TeV-powheg.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WWTo2L2Nu_13TeV-powheg.txt new file mode 100644 index 000000000..2e598e0c1 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WWTo2L2Nu_13TeV-powheg.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WWTo2L2Nu_13TeV-powheg//61cd737eeacb5e2688d58d2a8acf5e383e26b1ab39f96e78f913fd2a/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..e593710f7 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,17 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//68db787ab32d3ba902dfa9a06187a0e3461d850fa59c7bafc954cdb2/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//9235f1c06ac19f84ec4484f9daf21c6943ca6ff50973dbcc8b8255c5/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//491bbf5fb92160c62ef67a409a0c047271b56044a15cdcbc3b6f1900/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//6e548164c4af0bbde4c2d6f1c5bbbbea1d12efd9b3f1cfa8e7618964/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//d98465ff3e5b1446f10792ac617dd96b3026bdd32b2842db6729ce86/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//c6d804e4efb931fec33b4e98a3c029183a00aefc95e5c825231e0fcc/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//94382f65744d6e66ac85aa74e13f6ccf2d4e0dddbd3b2b21ffa2943b/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//0d9736ddd624e2c8d7071c190d2bfdca2306891e27ac0fed30d1c686/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//1049045287a4d8a3544d063d3d3a7e71e2425badd76998a60c1142af/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//247e78ccbea9666324a75c503f5f26c8b950ff08f155c545cb1f1bd3/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//3ad3a6ce68b5fbcb731fe1beccb34fac3cc140b7e9a164796a0da493/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//7357209d98bb9a6114069c17b03422ac2620f3cc7a3f7a9949a944b6/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//f28694790f88c1b0472e18e52adee69d7d0c49ca3ad5a1014e94ba48/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//c76a2f0b5a02b9c8d6f4408fc0ec85a4fb14ff567a04d2abe9d853e4/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//23105236f70a910e15013fedad20fe1fd2551bc3bc59be1597032b1c/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//a01a4971898174e187941c950883ba9e4136baf53e128a6033f44682/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//c3a45bbbd36f2e42cd3b11fcfcc365e4a9f98aad77f060e917e6db72/000000_000000/0000/tree_16.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..432d4cd34 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//284b670f14cad7708ff6092c8ad277f3b2fd807ad049f378b1676379/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//b77b1d8339c49b183dec6f54a1f4b900e95fae04d341f5d4fac3cdd5/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11_newOct17_bis/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//ab6ee6c8934f8afa76d23e79077f610405c7204dc44b62f90e08fa7b/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..5a1149562 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//d32ec0aa05a7cfcaf89d06aaeb3269bddd9b910aea697336e26f29b2/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//486672405d5a14966677fd48984bbfb9d1a3f7ad7bc5c88f5de0d2c9/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..88afffbe8 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//49707688d7ab543373fdfbbefd99ef21c492b74e8148d0b0201840ef/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//9868fe5afb753c130647dfb6d58c9cffa406897b912630e0af7b1fc4/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..ef889d538 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c54ce1ebc806d1d36941559e8e56990359bda0828f5ec32bf0ac1358/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//94c6868bddee8d63f9666a83cbb7d7fda84dc709fb333929acf9b66a/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3ddc016481cbc0796e89d9f2421daf22e0a2a345a6cd05208fd7f394/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//32ff91773858feb52784a57b2ef3aecb89c86b529da3ca6ce301ba71/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c0e5e055c20f7501a61c7f3278d3e5d8a7ee7579a7ca0056319d0b46/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//cd2da150221d9bd99a0e55f6698ea0834d9b5dbc8a47699731979e13/000000_000000/0000/tree_5.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..795671296 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a0f6da092c166a59920ec7eb8d20d3d743d7adde6a0bf8249ce1ac77/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//30003dbce47c3c453f098909051987dd48e7562f1796cca7ca71f4e8/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//17eb23bec4b24b343978efbc99b6b7eba129c69c90ec6926f0e868de/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..dfd9452ef --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//49ebec07a933fa5f116bf96f8469ad03245307dde5ee8114684145d7/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..bf39b43fe --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,8 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//3cf3733df27c57a7c40bdea6a7468583e2163215106c38989421e2cf/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//5fee54ff44111dcf34a6c1917cc06e5406875a4344e5c04d4821b4d2/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//f360c6e19ea0624499cc4e583e91d71032bb1e3554625b843a242815/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//5112bcc49c58c178621120d8ca990ea08cc3744a16ea4441917364c4/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//592110d75e80a913d2c692c0e1b0ec3b9d90e0da0910f9fba48d5a0e/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//50424598f62219905af1ca69721abe2c62bd754004ddbcfa04ccae28/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//0daeeaa419203ed1ca7bc5b1abb63105e5eb6c93e2e4032c8d9dbf4f/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//e8bba0202fbedf6e1c49d171223b2d0c9120f2336f470e087d1000b2/000000_000000/0000/tree_7.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..8ffc39ae2 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,5 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0489e4fe1fd02dc23d100161443919321f08a69d4b420c9353b745dd/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//db274cee18835861ed5f327cca42cd6ca0aa6b063c74da8420f2ea2c/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//dee8c0c19f322a179324c265785bba0c1e4654c405abade8bf10c684/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c37e7b68dc3a8cf270d31bb89803864b741995d440aa490528a24b43/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//63b124ce1910a3c10fe8c3ab3becfdb66514316f1c8c7cf67ecabc88/000000_000000/0000/tree_4.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..263c32afb --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,4 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f2a6722170f238489687a96bab98cbf5ef26cbe6dfa958b21e8b89c8/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//06ece475e712c1ff1d0eb8f412177bb0feddda88e0290c80075bd87e/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2648b4fc1765094cf9974a9d86b3b47dd26ef35b5355cd9dd80695f5/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ca47748ffc3787e5bcb415a03fda8340b3f7d3b7b789e5cf8dc8fb1d/000000_000000/0000/tree_3.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt new file mode 100644 index 000000000..3839d6af8 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt @@ -0,0 +1,4 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-100To200_13TeV-madgraph//03765b5b7f385c1038c0efe5b04b8097c9433268ec13cff2933ef291/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-100To200_13TeV-madgraph//71d277d3ec3ea7318e4a8b1cbd6c8c5615e142da35db44a06134a592/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-100To200_13TeV-madgraph//8a81194b378adcfc226cf800f98c6a90dff8a60651b217361089f5b7/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-100To200_13TeV-madgraph//c984ade7279f4162d9bde3873a29c6bbdc115eb90323cf9040bef1f2/000000_000000/0000/tree_3.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt new file mode 100644 index 000000000..a01dd697e --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph//0b38804566be19d3bcfed84de45843d0cafd2b824ad5d49ffca21bae/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph//0daf05d6560ed6eb026cc4e5a8751d1c404f2e8122b0fc544866a1d8/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph//07a42f9716e9fbada645716dc2ae750aab513f29e9a04c661666d883/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt new file mode 100644 index 000000000..5cc2f102a --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt @@ -0,0 +1,22 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//3798c3b23e96a644042789f5d2a714e27cc53a044b5a09a3578e310b/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//73c40ff232210ee3ce0c47c7155aefb86be463b0c85f9658d5d6a1fd/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//1dabdfa83227ff8b83e96738ed37215d02488c6fbf6bc2fce85c86e0/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//198ba65a48783ac6bdcf13d0e7609c9176fc578939ba8d7566f8be46/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//9bb2470282e5efe3213322f4e554d660ad6c894dfc09cc4961584804/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//45ce029b6966313b97982909786160cca9e3606c77dbe43bb10a6adb/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//48fd9add1446f3063a9e35c45e39bfaed035200d8c6884040f4ed5ea/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//133b2f1cedf2b49593744aacc3e2e9b8885d85b8523b01627928ca88/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//dae6803fbfad524559540041154f39803509cbaa1cc678cd01858cbe/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//087e3bc45dc9a55d5519b052d97307744ca17a5f658799e6d7ab2f15/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//d20ee3f2f6ed9fef315b817f6542e95f986a0d2bff3c93ea71ddba04/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//0469358dee0720836c7516124d7db08a490135e77ab7e76ceeae6f14/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//39f066265230ae89ccdba793be8f5e46ff4e52296466dc82c90050b5/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//5d0ae43df938804915ea694731b277f2975526547088e1c912e531aa/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//61d7006b297287c1faa3eb38fa5bbb39431d0bcbabfb5ebf1140a9c7/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//8ca8e4afae7c33827a78a3e81867baec6259943653e75f72f09a4c3e/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//889677fbe07ac2fa8c0c11de78613a225b41caebb88032fc5868bbf1/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//c4f8debf13427fffa013959987c9f9ac0410c20187973ec55299c3de/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//bbd2f51f0acb094cbe42877bfe893f7819499ac1d05d5680cec008e8/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//5431af075a2d50c148ddac0ad39467f27d66f7be366be257e631caec/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//19bbabefbd31a000a8f998e45f2626bfb641ae6cf6b93989f2818fa5/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph//2cc82af864a59501d53363c85522f1cf4aa3a61d7b5b8fea7ef1938c/000000_000000/0000/tree_21.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt new file mode 100644 index 000000000..cf7eea9a9 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph//d782ecf705495d575b21df6f8a572c012fcc9bfcc621e40bf9e919d6/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph//b3227bfc37a7df849db6cdd58c5bd90879baf97b50636bd617de95aa/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt new file mode 100644 index 000000000..d2be11d60 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt @@ -0,0 +1,12 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph//99422fc5cb8004319d4b5ae074de2a11e4c30557bbf9778c855115c7/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph//0c9f5ff671d6a3abeb2d794120722d8c5796b737c1090391c3909ab8/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph//76b4bfcb96090f52d2f8aee75e848adf2248d95a4c666ab306f34021/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph//087aca87db3e09c21d849716fff5710d79f34f1f320d0982b115c911/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph//cf0974615096a83b2825345e1ef251c6f879c51949558e5a1aa579d1/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph//c641ba4d2615170d4ca6c5449c2e08cfc9d9a1b49448718c5c10d7f7/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph//cf22542f7a7d363019f5be33f57823eb687ec07f9460a7b55eadf6e1/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph//8fbce55da35bbe699c658022017f4f5b34d0446629e47ac840805c8d/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph//2c0314a877745f460aaca15f0ce579d8c499414d273a0782a6a20b55/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph//7b326739b9e6d79427da1537778031c4a4980c7246d734630c0d7621/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph//6bab81f06347df33da253e28ab5783d39bb2e8e211cd7d4a20ee784d/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph//4010e252be20d6ad1862b377ebbd28f66ff1a2736527881023659b91/000000_000000/0000/tree_11.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt new file mode 100644 index 000000000..ef08877da --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-600To800_13TeV-madgraph//ba3882b7db0562424ef9e93138433f042c4939fcb9e03eeb6f61e808/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-600To800_13TeV-madgraph//a396ac37b42ff9b3b83c3971f4ea89018a8d477822a8cf659ce13920/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-600To800_13TeV-madgraph//37f4befb1f4d208cd141f20957bdabe3545a05b515299826f24da94e/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-600To800_13TeV-madgraph//0dccef5dec89706173ade00ecda21efd7579daeb779ad042899e9840/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-600To800_13TeV-madgraph//c5b198d6046091c62c5835c361d86466fcf17ff337e08faaf692b1c5/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-600To800_13TeV-madgraph//795eeb32567de160c292a0800abfb5380332f29fb3297c3fb41d9c38/000000_000000/0000/tree_5.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt new file mode 100644 index 000000000..2a9eaafb4 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt @@ -0,0 +1,4 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//240dcd4696e27b1793b18a490958f13c9af838b22b5dec91a7c292d6/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//5bc6a837f964004426e1f0dd5bf1f361769e72a8c9a225a4cd6b4502/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//47207ca175e94b7849f9503e736103e1424b95962126e04960bcecda/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//4f4869802e82fafcca3ed255bbc23e07397a70f8bb830ad24c3a09a4/000000_000000/0000/tree_3.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..9bcac0596 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//b1121e11f6e090a5e5c35c8d9f2087e1be79995bb619cf259b382de1/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//06c9db177a7f89c5ce40024d39b9aad60a18433f5e6de325b9358624/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..711937703 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,27 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//ebb03e5c048b17b523426524792635c2ebb15ce6c30faa1d85714073/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//d321f04208b34ec9e356fef959bfbb5083dd4c43a808caefccde038d/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//abbb56179231023eccdf896018a1d1cc83ef671051d85bf4c625f363/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//c2aca8c1f0997b69dbd8319dad17148143e8ef2931afb75901712f8c/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//5a10a34a551b636c5f7e3a2edf481af5671d16f75f5bb1f2d0ff24c7/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//493f1db91daa8df5e0d45c9b504d40a415f9ce16a44537520d74303f/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//1acf13421b3325683b8eeefab521c2acf130aa2eee23add43619e269/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//b06f8ddfbc5131bde365545156469b9d38502b96d5132775322a3645/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//93cd8c700e012b97affa4cd35e7311f51f3c6395fc48456a8ce0280f/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//f2c8c2b5a1ba389d998c58faa903db11abf6df9d732f8860a10b7667/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//994f9e686c3d32f33c582ff4cd64d93a95c2bbc4da5a161b4d126c15/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//e17011a1dc0768679a5ff53c664dc93ce8d52f7514d92bffeb84eed1/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//c913df26991f3ee72a5ccc921ba9f61b6661d5c629141507524a6c59/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//aec28df825f67b50bcd571a085f32f4827df2e27e2a0b887acb0665b/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//e82e623b0990b4a72c334d6ca17b2646ab25d6a083e2df5bca4be2a2/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//b37b956a3580da36806369bc0096aa9b43b46269bed60d4fd6645fd5/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//45181aac6380b62348b8f817aedf054fa7eb3f5fc7f49766d35aa6e8/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//a767c93a6bbe124689a75ee59fd2db6e2a4ed7c4e303faf92efb10cd/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//01403357f54cfe4a371bd35bb25551ec3c6c43e867cab8e271533ae5/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//94a34f7bb75cc1afa9ee63457b5372a5b52455e993abd77b5abaa923/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//f180907d40b80a921e4edc6cbf6c6ae8d23100b17ca15f132b9851f9/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//741b751c296621db9ab5586269b568fd09907108b7408ffa9ee5dd3e/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//fcf8954e42d2239c30c41798e7c10f113342605ecd7720da20a93103/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//0f64816c80d5551ff4bb2353c6557412a8cccf47d7bf816bb55e9948/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//824a95490db1dbc1a1628e1f5403a2589027dc7f30624ad44d02d0cf/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//e36b86b1ae535a86c9be509e03599120653bd3add8f5d6c7d14039ed/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//61b85c992df56f3c57f8dfa221b31a0daf27745565ec6dc8ff83c65e/000000_000000/0000/tree_26.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..1bad3f11d --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//8fa55ca85aed0a670c73a1e7302b089b4f1dfeb2659c7e654fcc5326/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//ff3dc6dfad109660e4145d43a1245039ff6a131c38548435d556e379/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..c36c37891 --- /dev/null +++ b/samples/VHbbPostNano2016_V11_v2/merged_Zvv2016/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,17 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//6734dacf32112e9b0675acb5c836233c5354eb250778e80c9a4caed7/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//f9df90c0048a3aa50f278663d46a48228a620e1df095841f8a69a3fd/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//b8dd5d4a69d4a026403bef73ce8bc504f566d3b9cae1a182d6a2029f/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//b9f6d8633ec09895da04319535f1c42f79be1bdff5c433ab51a4401a/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//05fe3ad902d21fa389d5f2078799656fb0e0a5f323620e2ee8d88270/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//6babc8684f7dc8e00754643b5297943c62b3a290f069c6c3191fb02b/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//1081667391797680a470ae4247b07e3e776bd4a8822815641e666752/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//bab842113f0e0c714bdb806a28a1de2dc3c9025bf53e2bba02b09ff7/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//61a7e184becf60be8e62c2b44e4fa2eae437ee1476c16b2efc15b503/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//87afab11b442dad31003c26fb937633986e99ec36f2e9b74105c7d2a/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//8fd1b3a03baff880b12feda937e0c63d93f5b645d1748c7749e07168/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//4dac33a599254909bab2e97870bd7720d8653e1698117b0e700faf78/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//918bbb3ce157a62d4921cce011544486e4abb7a407f018714a9ea36a/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//aa183b8fc856b6be275b9fbe04852167febafa4883d9c6fe2ca7e5d0/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//9259deac1c70cc48b3ee9297ee3da51e29154c2bd74cf8aee4af5358/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//ed218c59ff3373bedee4df052421e2133d336603977fc5ad4b4739a9/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//f1909ba9993e4959bf994f2431837e21b635864e95fb076ed19df94a/000000_000000/0000/tree_16.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..299552644 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,17 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_085444/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_085444/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_085444/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_085444/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_085444/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_085444/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_085444/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_085444/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_085444/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_085444/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_085444/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_085444/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_085444/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_085444/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_085444/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_085444/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_085444/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..254a104ad --- /dev/null +++ b/samples/VHbbPostNano2016_V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,9 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200703_085617/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200703_085617/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200703_085617/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200703_085617/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200703_085617/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200703_085617/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200703_085617/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200703_085617/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200703_085617/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..ebdc4db8c --- /dev/null +++ b/samples/VHbbPostNano2016_V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,20 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200703_085748/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200703_085748/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200703_085748/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200703_085748/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200703_085748/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200703_085748/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200703_085748/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200703_085748/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200703_085748/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200703_085748/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200703_085748/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200703_085748/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200703_085748/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200703_085748/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200703_085748/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200703_085748/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200703_085748/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200703_085748/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200703_085748/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200703_085748/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..deeb46eed --- /dev/null +++ b/samples/VHbbPostNano2016_V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,12 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200703_090005/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200703_090005/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200703_090005/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200703_090005/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200703_090005/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200703_090005/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200703_090005/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200703_090005/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200703_090005/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200703_090005/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200703_090005/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200703_090005/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..0e10b4d66 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,12 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_090052/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_090052/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_090052/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_090052/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_090052/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_090052/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_090052/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_090052/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_090052/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_090052/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_090052/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_090052/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..7f0b8e2c0 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_090225/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_090225/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_090225/0000/tree_3.root diff --git a/samples/VHbbPostNano2016_V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..047c126db --- /dev/null +++ b/samples/VHbbPostNano2016_V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,36 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_090311/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..3a3496c70 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200619_120343/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..b905fee82 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,38 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_090357/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..b7824a9b4 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,35 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200703_090442/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..9a8af2fc6 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,39 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200703_090527/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..451b0a578 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,12 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio95/200703_090613/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio95/200703_090613/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio95/200703_090613/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio95/200703_090613/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio95/200703_090613/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio95/200703_090613/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio95/200703_090613/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio95/200703_090613/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio95/200703_090613/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio95/200703_090613/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio95/200703_090613/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio95/200703_090613/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2016_V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..c2c4b44de --- /dev/null +++ b/samples/VHbbPostNano2016_V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1,73 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_105456/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..a69844c70 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,69 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_105641/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..c6dbbec34 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200619_121044/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-5to50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200619_121044/0000/tree_2.root diff --git a/samples/VHbbPostNano2016_V13/DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..22c8f7155 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-5to50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio104/200619_121215/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V13/DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..231ee55d6 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-5to50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio105/200619_121259/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V13/DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..665df897c --- /dev/null +++ b/samples/VHbbPostNano2016_V13/DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio99/200629_105734/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio99/200629_105734/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-5to50_HT-600toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio99/200629_105734/0000/tree_3.root diff --git a/samples/VHbbPostNano2016_V13/DYJetsToLL_M-5to50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/DYJetsToLL_M-5to50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..7425b3e55 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/DYJetsToLL_M-5to50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-5to50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio109/200619_121611/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-5to50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio109/200619_121611/0000/tree_2.root diff --git a/samples/VHbbPostNano2016_V13/DoubleEG.txt b/samples/VHbbPostNano2016_V13/DoubleEG.txt new file mode 100644 index 000000000..d1497e776 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/DoubleEG.txt @@ -0,0 +1,1831 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_202.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_203.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_204.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_205.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_206.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_207.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_208.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_209.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_210.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_211.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_212.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_213.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_214.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_215.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_216.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_217.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_218.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_219.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_220.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_221.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_222.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_223.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_224.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_225.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_226.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_227.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_228.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_229.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_230.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_231.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_232.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_233.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_234.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_235.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_236.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_237.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_238.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_239.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_240.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_241.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_242.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_243.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_244.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_245.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_246.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_247.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_248.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_249.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_250.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_251.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_252.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_253.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_254.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_255.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_256.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_257.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_258.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_259.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_260.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_261.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_262.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_263.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_264.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_265.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_266.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_267.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_268.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_269.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_270.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_271.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_272.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_273.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_274.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_275.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_276.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_277.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_278.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_279.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_280.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_281.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_282.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_283.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_284.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_285.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_286.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_287.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_288.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_289.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_290.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_291.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_292.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_293.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_294.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_295.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_296.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_297.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_298.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_299.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_300.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_301.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_302.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_303.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_304.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_305.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_306.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_307.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_308.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_309.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_310.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_311.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_312.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_313.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_314.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_315.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_316.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_317.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_318.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_319.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_320.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_321.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_322.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_323.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_324.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_325.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_326.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_327.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_328.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_329.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_330.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_331.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_332.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_333.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_334.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_335.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_336.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_337.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_338.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_339.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_340.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_341.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_342.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_343.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_344.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_345.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_346.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_347.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_348.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_349.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_350.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_351.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_352.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_353.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_354.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_355.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_356.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_357.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_358.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_359.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_360.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_361.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_362.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_363.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_364.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_365.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_366.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_367.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_368.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_369.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_370.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_371.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_372.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_373.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_374.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_375.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_376.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_377.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_378.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_379.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_380.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_381.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_382.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_383.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_384.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_385.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_386.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_387.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_388.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_389.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_390.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_391.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_392.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_393.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_394.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_395.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_396.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_397.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_398.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_399.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_400.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_401.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_402.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_403.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_404.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_405.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_406.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_407.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_408.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_409.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_410.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_411.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_412.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_413.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_414.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_415.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_416.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_417.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_418.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_419.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_420.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_421.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_422.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_423.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_424.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_425.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_426.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_427.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_428.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_429.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_430.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_431.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_432.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_433.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_434.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_435.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_436.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_437.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_438.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_439.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_440.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_441.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_442.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_443.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_444.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_445.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_446.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_447.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_448.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_449.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_450.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_451.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_452.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_453.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_454.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_455.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_456.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_457.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_458.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_459.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_460.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_461.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_462.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_463.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_464.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_465.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_466.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_467.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_468.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_469.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_470.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_471.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_472.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_473.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_474.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_475.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_476.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_477.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_478.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_479.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_480.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_481.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_482.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_483.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_484.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_485.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_486.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_487.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_488.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_489.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_490.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_491.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_492.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_493.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_494.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_495.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_496.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_497.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_498.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_499.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_500.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_501.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_502.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_503.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_504.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_505.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_506.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_507.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_508.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_509.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_510.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_511.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_512.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_513.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_514.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_515.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_516.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_517.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_518.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_519.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_520.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_521.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_522.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_523.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_524.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016B-02Apr2020_ver2-v185/200824_203128/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016C-02Apr2020-v186/200824_193227/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_202.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_203.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_204.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_205.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_206.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_207.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016D-02Apr2020-v187/200824_193317/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016E-02Apr2020-v184/200824_184902/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016F-02Apr2020-v185/200824_184953/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_202.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_203.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_204.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_205.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_206.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_207.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_208.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_209.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_210.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_211.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_212.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_213.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_214.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_215.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_216.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_217.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_218.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_219.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_220.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_221.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_222.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_223.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_224.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_225.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_226.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_227.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_228.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_229.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_230.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_231.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_232.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_233.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_234.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_235.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_236.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_237.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_238.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_239.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_240.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_241.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_242.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_243.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_244.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_245.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_246.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_247.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_248.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_249.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_250.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_251.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_252.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_253.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_254.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_255.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_256.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_257.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_258.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_259.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_260.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_261.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_262.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_263.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_264.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_265.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_266.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_267.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_268.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_269.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_270.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_271.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_272.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_273.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_274.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_275.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_276.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_277.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_278.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_279.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_280.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_281.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_282.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_283.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_284.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_285.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_286.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_287.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_288.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_289.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_290.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_291.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_292.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_293.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016G-02Apr2020-v186/200824_185046/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_202.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_203.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_204.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_205.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_206.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_207.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_208.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_209.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_210.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_211.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_212.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_213.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_214.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_215.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_216.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_217.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_218.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_219.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_220.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_221.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_222.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_223.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_224.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_225.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_226.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_227.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_228.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_229.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_230.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_231.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_232.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_233.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_234.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_235.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_236.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_237.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_238.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_239.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_240.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_241.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_242.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_243.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_244.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_245.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_246.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_247.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_248.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_249.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_250.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_251.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_252.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_253.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_254.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_255.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_256.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_257.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_258.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_259.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_260.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_261.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_262.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_263.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_264.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_265.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_266.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_267.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_268.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_269.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_270.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_271.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_272.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_273.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_274.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_275.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_276.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_277.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_278.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_279.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_280.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_281.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_282.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_283.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_284.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_285.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_286.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_287.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_288.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_289.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_290.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_291.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_292.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_293.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_294.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_295.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_296.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_297.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_298.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_299.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_300.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_301.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_302.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_303.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_304.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_305.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_306.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_307.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_308.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_309.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_310.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_311.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_312.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_313.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//Run2016H-02Apr2020-v187/200824_185139/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/DoubleMuon.txt b/samples/VHbbPostNano2016_V13/DoubleMuon.txt new file mode 100644 index 000000000..4975a5a11 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/DoubleMuon.txt @@ -0,0 +1,1075 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_202.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_203.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_204.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_205.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_206.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_207.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_208.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_209.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_210.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_211.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_212.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_213.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_214.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_215.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_216.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_217.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_218.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_219.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_220.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_221.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_222.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_223.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_224.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_225.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_226.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_227.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_228.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_229.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_230.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_231.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_232.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_233.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_234.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_235.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_236.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_237.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_238.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_239.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_240.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_241.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_242.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_243.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_244.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_245.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_246.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_247.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_248.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_249.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_250.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_251.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_252.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_253.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_254.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_255.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_256.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_257.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_258.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_259.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_260.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_261.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_262.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_263.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_264.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_265.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_266.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_267.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_268.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_269.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_270.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_271.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_272.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_273.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_274.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_275.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_276.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_277.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_278.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_279.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_280.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_281.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_282.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_283.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_284.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_285.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_286.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_287.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_288.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_289.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_290.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_291.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_292.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_293.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_294.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_295.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_296.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_297.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_298.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_299.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_300.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_301.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_302.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_303.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_304.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016B-02Apr2020_ver2-v187/200824_203325/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016C-02Apr2020-v190/200824_185417/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016D-02Apr2020-v191/200824_185507/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016E-02Apr2020-v192/200824_185557/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016F-02Apr2020-v193/200824_185648/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016G-02Apr2020-v194/200824_185740/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//Run2016H-02Apr2020-v195/200824_185832/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/MET.txt b/samples/VHbbPostNano2016_V13/MET.txt new file mode 100644 index 000000000..5260b8317 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/MET.txt @@ -0,0 +1,653 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016B-02Apr2020_ver2-v189/200824_203508/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016C-02Apr2020-v198/200824_190102/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016D-02Apr2020-v199/200824_190154/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016E-02Apr2020-v1100/200824_190245/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016F-02Apr2020-v1101/200824_190336/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016G-02Apr2020-v1102/200824_190432/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//Run2016H-02Apr2020-v2103/200824_190522/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..4b85a9a08 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,11 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200629_110814/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200629_110814/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200629_110814/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200629_110814/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200629_110814/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200629_110814/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200629_110814/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200629_110814/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200629_110814/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200629_110814/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200629_110814/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..394494602 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,12 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200619_145025/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200619_145025/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200619_145025/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200619_145025/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200619_145025/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200619_145025/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200619_145025/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200619_145025/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200619_145025/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200619_145025/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200619_145025/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200619_145025/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..5aa81ad18 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,11 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200629_110952/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200629_110952/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200629_110952/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200629_110952/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200629_110952/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200629_110952/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200629_110952/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200629_110952/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200629_110952/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200629_110952/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200629_110952/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..cef3d6278 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio86/200619_145403/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio86/200619_145403/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio86/200619_145403/0000/tree_3.root diff --git a/samples/VHbbPostNano2016_V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..19cd00dfd --- /dev/null +++ b/samples/VHbbPostNano2016_V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,77 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200703_110936/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..057459a29 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,14 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200629_111223/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200629_111223/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200629_111223/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200629_111223/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200629_111223/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200629_111223/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200629_111223/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200629_111223/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200629_111223/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200629_111223/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200629_111223/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200629_111223/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200629_111223/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200629_111223/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..2e406718b --- /dev/null +++ b/samples/VHbbPostNano2016_V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,36 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200629_111412/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/QCD_HT50to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/QCD_HT50to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..c19edf3db --- /dev/null +++ b/samples/VHbbPostNano2016_V13/QCD_HT50to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT50to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200619_145949/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT50to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio93/200619_145949/0000/tree_2.root diff --git a/samples/VHbbPostNano2016_V13/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..ca3a41d6c --- /dev/null +++ b/samples/VHbbPostNano2016_V13/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200619_150038/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200619_150038/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200619_150038/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200619_150038/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200619_150038/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio94/200619_150038/0000/tree_6.root diff --git a/samples/VHbbPostNano2016_V13/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8.txt b/samples/VHbbPostNano2016_V13/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8.txt new file mode 100644 index 000000000..78ed017e3 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8//RunIISummer16NanoAODv7-PUMorio96/200619_150217/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8//RunIISummer16NanoAODv7-PUMorio96/200619_150217/0000/tree_2.root diff --git a/samples/VHbbPostNano2016_V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..1e7ea4164 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt @@ -0,0 +1,390 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_202.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_203.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_204.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_205.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_206.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_207.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_208.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_209.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_210.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_211.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_212.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_213.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_214.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_215.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_216.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_217.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_218.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_219.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_220.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_221.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_222.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_223.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_224.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_225.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_226.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_227.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_228.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_229.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_230.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_231.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_232.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_233.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_234.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_235.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_236.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_237.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_238.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_239.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_240.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_241.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_242.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_243.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_244.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_245.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_246.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_247.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_248.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_249.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_250.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_251.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_252.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_253.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_254.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_255.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_256.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_257.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_258.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_259.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_260.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_261.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_262.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_263.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_264.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_265.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_266.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_267.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_268.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_269.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_270.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_271.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_272.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_273.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_274.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_275.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_276.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_277.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_278.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_279.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_280.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_281.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_282.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_283.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_284.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_285.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_286.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_287.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_288.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_289.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_290.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_291.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_292.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_293.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_294.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_295.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_296.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_297.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_298.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_299.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_300.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_301.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_302.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_303.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_304.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_305.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_306.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_307.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_308.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_309.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_310.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_311.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_312.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_313.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_314.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_315.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_316.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_317.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_318.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_319.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_320.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_321.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_322.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_323.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_324.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_325.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_326.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_327.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_328.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_329.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_330.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_331.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_332.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_333.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_334.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_335.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_336.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_337.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_338.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_339.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_340.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_341.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_342.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_343.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_344.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_345.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_346.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_347.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_348.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_349.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_350.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_351.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_352.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_353.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_354.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_355.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_356.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_357.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_358.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_359.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_360.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_361.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_362.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_363.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_364.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_365.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_366.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_367.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_368.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_369.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_370.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_371.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_372.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_373.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_374.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_375.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_376.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_377.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_378.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_379.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_380.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_381.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_382.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_383.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_384.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_385.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_386.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_387.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_388.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_389.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_390.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_174016/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin.txt b/samples/VHbbPostNano2016_V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin.txt new file mode 100644 index 000000000..8e9d00a76 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin.txt @@ -0,0 +1,159 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio81/200703_111029/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..89cb895e9 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt @@ -0,0 +1,40 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio80/200911_175831/0000/tree_8.root diff --git a/samples/VHbbPostNano2016_V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin.txt b/samples/VHbbPostNano2016_V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin.txt new file mode 100644 index 000000000..469bd4ca4 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin.txt @@ -0,0 +1,144 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV_PSweights-powhegV2-madspin//RunIISummer16NanoAODv7-PUMorio89/200629_111558/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V13/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..ebdfb49f1 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt @@ -0,0 +1,10 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio90/200629_111653/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio90/200629_111653/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio90/200629_111653/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio90/200629_111653/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio90/200629_111653/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio90/200629_111653/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio90/200629_111653/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio90/200629_111653/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio90/200629_111653/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio90/200629_111653/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2016_V13/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..c18fa9d6e --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1,7 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio100/200619_150550/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio100/200619_150550/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio100/200619_150550/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio100/200619_150550/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio100/200619_150550/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio100/200619_150550/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio100/200619_150550/0000/tree_7.root diff --git a/samples/VHbbPostNano2016_V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..e960e06b1 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt @@ -0,0 +1,70 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//RunIISummer16NanoAODv7-PUMorio82/200911_174140/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2016_V13/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..7601250c0 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio101/200619_150647/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio101/200619_150647/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio101/200619_150647/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio101/200619_150647/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio101/200619_150647/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio101/200619_150647/0000/tree_6.root diff --git a/samples/VHbbPostNano2016_V13/SingleElectron.txt b/samples/VHbbPostNano2016_V13/SingleElectron.txt new file mode 100644 index 000000000..8f3fe0264 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/SingleElectron.txt @@ -0,0 +1,3628 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_202.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_203.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_204.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_205.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_206.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_207.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_208.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_209.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_210.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_211.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_212.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_213.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_214.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_215.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_216.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_217.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_218.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_219.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_220.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_221.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_222.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_223.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_224.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_225.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_226.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_227.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_228.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_229.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_230.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_231.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_232.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_233.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_234.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_235.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_236.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_237.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_238.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_239.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_240.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_241.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_242.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_243.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_244.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_245.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_246.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_247.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_248.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_249.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_250.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_251.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_252.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_253.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_254.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_255.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_256.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_257.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_258.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_259.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_260.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_261.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_262.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_263.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_264.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_265.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_266.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_267.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_268.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_269.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_270.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_271.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_272.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_273.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_274.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_275.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_276.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_277.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_278.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_279.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_280.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_281.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_282.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_283.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_284.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_285.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_286.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_287.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_288.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_289.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_290.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_291.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_292.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_293.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_294.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_295.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_296.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_297.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_298.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_299.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_300.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_301.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_302.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_303.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_304.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_305.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_306.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_307.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_308.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_309.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_310.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_311.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_312.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_313.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_314.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_315.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_316.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_317.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_318.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_319.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_320.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_321.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_322.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_323.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_324.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_325.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_326.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_327.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_328.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_329.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_330.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_331.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_332.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_333.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_334.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_335.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_336.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_337.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_338.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_339.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_340.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_341.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_342.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_343.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_344.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_345.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_346.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_347.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_348.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_349.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_350.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_351.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_352.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_353.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_354.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_355.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_356.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_357.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_358.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_359.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_360.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_361.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_362.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_363.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_364.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_365.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_366.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_367.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_368.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_369.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_370.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_371.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_372.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_373.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_374.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_375.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_376.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_377.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_378.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_379.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_380.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_381.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_382.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_383.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_384.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_385.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_386.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_387.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_388.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_389.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_390.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_391.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_392.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_393.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_394.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_395.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_396.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_397.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_398.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_399.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_400.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_401.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_402.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_403.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_404.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_405.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_406.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_407.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_408.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_409.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_410.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_411.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_412.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_413.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_414.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_415.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_416.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_417.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_418.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_419.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_420.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_421.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_422.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_423.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_424.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_425.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_426.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_427.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_428.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_429.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_430.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_431.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_432.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_433.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_434.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_435.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_436.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_437.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_438.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_439.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_440.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_441.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_442.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_443.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_444.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_445.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_446.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_447.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_448.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_449.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_450.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_451.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_452.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_453.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_454.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_455.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_456.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_457.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_458.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_459.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_460.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_461.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_462.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_463.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_464.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_465.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_466.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_467.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_468.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_469.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_470.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_471.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_472.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_473.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_474.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_475.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_476.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_477.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_478.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_479.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_480.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_481.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_482.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_483.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_484.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_485.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_486.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_487.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_488.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_489.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_490.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_491.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_492.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_493.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_494.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_495.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_496.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_497.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_498.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_499.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_500.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_501.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_502.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_503.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_504.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_505.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_506.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_507.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_508.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_509.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_510.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_511.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_512.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_513.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_514.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_515.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_516.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_517.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_518.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_519.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_520.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_521.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_522.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_523.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_524.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_525.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_526.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_527.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_528.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_529.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_530.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_531.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_532.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_533.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_534.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_535.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_536.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_537.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_538.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_539.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_540.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_541.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_542.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_543.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_544.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_545.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_546.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_547.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_548.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_549.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_550.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_551.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_552.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_553.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_554.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_555.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_556.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_557.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_558.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_559.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_560.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_561.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_562.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_563.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_564.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_565.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_566.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_567.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_568.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_569.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_570.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_571.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_572.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_573.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_574.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_575.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_576.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_577.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_578.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_579.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_580.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_581.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_582.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_583.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_584.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_585.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_586.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_587.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_588.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_589.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_590.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_591.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_592.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_593.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_594.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_595.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_596.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_597.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_598.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_599.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_600.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_601.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_602.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_603.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_604.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_605.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_606.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_607.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_608.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_609.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_610.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_611.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_612.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_613.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_614.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_615.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_616.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_617.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_618.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_619.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_620.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_621.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_622.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_623.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_624.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_625.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_626.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_627.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_628.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_629.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_630.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_631.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_632.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_633.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_634.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_635.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_636.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_637.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_638.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_639.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_640.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_641.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_642.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_643.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_644.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_645.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_646.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_647.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_648.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_649.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_650.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_651.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_652.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_653.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_654.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_655.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_656.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_657.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_658.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_659.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_660.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_661.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_662.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_663.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_664.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_665.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_666.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_667.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_668.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_669.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_670.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_671.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_672.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_673.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_674.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_675.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_676.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_677.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_678.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_679.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_680.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_681.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_682.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_683.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_684.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_685.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_686.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_687.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_688.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_689.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_690.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_691.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_692.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_693.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_694.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_695.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_696.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_697.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_698.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_699.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_700.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_701.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_702.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_703.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_704.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_705.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_706.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_707.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_708.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_709.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_710.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_711.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_712.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_713.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_714.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_715.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_716.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_717.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_718.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_719.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_720.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_721.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_722.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_723.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_724.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_725.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_726.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_727.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_728.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_729.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_730.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_731.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_732.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_733.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_734.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_735.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_736.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_737.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_738.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_739.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_740.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_741.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_742.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_743.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_744.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_745.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_746.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_747.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_748.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_749.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_750.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_751.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_752.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_753.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_754.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_755.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_756.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_757.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_758.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_759.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_760.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_761.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_762.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_763.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_764.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_765.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_766.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_767.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_768.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_769.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_770.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_771.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_772.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_773.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_774.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_775.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_776.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_777.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_778.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_779.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_780.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_781.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_782.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_783.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_784.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_785.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_786.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_787.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_788.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_789.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_790.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_791.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_792.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_793.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_794.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_795.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_796.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_797.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_798.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_799.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_800.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_801.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_802.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_803.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_804.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_805.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_806.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_807.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_808.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_809.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_810.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_811.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_812.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_813.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_814.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_815.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_816.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_817.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_818.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_819.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_820.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_821.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_822.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_823.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_824.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_825.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_826.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_827.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_828.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_829.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_830.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_831.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_832.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_833.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_834.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_835.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_836.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_837.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_838.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_839.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_840.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_841.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_842.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_843.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_844.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_845.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_846.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_847.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_848.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_849.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_850.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_851.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_852.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_853.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_854.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_855.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_856.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_857.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_858.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_859.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_860.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_861.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_862.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_863.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_864.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_865.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_866.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_867.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_868.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_869.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_870.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_871.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_872.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_873.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_874.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_875.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_876.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_877.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_878.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_879.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_880.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_881.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_882.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_883.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_884.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_885.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_886.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_887.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_888.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_889.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_890.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_891.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_892.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_893.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_894.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_895.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_896.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_897.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_898.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_899.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_900.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_901.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_902.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_903.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_904.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_905.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_906.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_907.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_908.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_909.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_910.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_911.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_912.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_913.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_914.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_915.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_916.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_917.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_918.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_919.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_920.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016B-02Apr2020_ver2-v191/200824_203653/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_202.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_203.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_204.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_205.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_206.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_207.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_208.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_209.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_210.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_211.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_212.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_213.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_214.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_215.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_216.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_217.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_218.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_219.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_220.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_221.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_222.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_223.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_224.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_225.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_226.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_227.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_228.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_229.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_230.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_231.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_232.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_233.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_234.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_235.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_236.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_237.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_238.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_239.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_240.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_241.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_242.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_243.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_244.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_245.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_246.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_247.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_248.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_249.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_250.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_251.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_252.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_253.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_254.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_255.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_256.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_257.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_258.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_259.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_260.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_261.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_262.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_263.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_264.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_265.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_266.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_267.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_268.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_269.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_270.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_271.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_272.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_273.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_274.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_275.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_276.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_277.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_278.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_279.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_280.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_281.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_282.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_283.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_284.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_285.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_286.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_287.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_288.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_289.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_290.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_291.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_292.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_293.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_294.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_295.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_296.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_297.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_298.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_299.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_300.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_301.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_302.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_303.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_304.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_305.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_306.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_307.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_308.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_309.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_310.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_311.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_312.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_313.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_314.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_315.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_316.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_317.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_318.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_319.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_320.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_321.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_322.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_323.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_324.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_325.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_326.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_327.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_328.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_329.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_330.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_331.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_332.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_333.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_334.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_335.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_336.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_337.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_338.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_339.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_340.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_341.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_342.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_343.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_344.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_345.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_346.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_347.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_348.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_349.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_350.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_351.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_352.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_353.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_354.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_355.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_356.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_357.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_358.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_359.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_360.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_361.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_362.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_363.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_364.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_365.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_366.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_367.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016C-02Apr2020-v1106/200824_190752/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_202.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_203.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_204.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_205.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_206.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_207.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_208.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_209.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_210.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_211.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_212.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_213.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_214.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_215.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_216.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_217.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_218.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_219.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_220.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_221.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_222.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_223.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_224.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_225.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_226.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_227.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_228.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_229.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_230.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_231.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_232.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_233.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_234.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_235.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_236.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_237.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_238.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_239.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_240.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_241.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_242.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_243.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_244.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_245.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_246.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_247.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_248.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_249.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_250.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_251.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_252.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_253.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_254.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_255.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_256.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_257.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_258.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_259.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_260.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_261.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_262.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_263.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_264.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_265.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_266.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_267.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_268.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_269.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_270.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_271.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_272.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_273.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_274.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_275.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_276.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_277.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_278.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_279.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_280.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_281.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_282.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_283.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_284.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_285.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_286.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_287.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_288.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_289.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_290.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_291.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_292.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_293.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_294.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_295.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_296.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_297.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_298.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_299.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_300.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_301.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_302.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_303.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_304.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_305.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_306.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_307.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_308.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_309.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_310.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_311.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_312.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_313.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_314.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_315.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_316.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_317.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_318.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_319.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_320.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_321.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_322.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_323.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_324.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_325.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_326.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_327.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_328.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_329.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_330.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_331.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_332.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_333.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_334.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_335.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_336.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_337.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_338.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_339.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_340.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_341.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_342.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_343.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_344.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_345.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_346.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_347.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_348.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_349.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_350.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_351.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_352.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_353.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_354.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_355.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_356.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_357.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_358.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_359.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_360.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_361.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_362.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_363.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_364.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_365.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_366.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_367.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_368.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_369.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_370.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_371.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_372.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_373.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_374.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_375.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_376.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_377.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_378.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_379.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_380.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_381.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_382.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_383.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_384.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_385.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_386.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_387.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_388.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_389.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_390.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_391.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_392.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_393.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_394.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_395.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_396.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_397.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_398.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_399.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_400.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_401.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_402.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_403.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_404.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_405.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_406.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_407.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_408.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_409.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_410.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_411.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_412.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_413.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_414.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_415.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_416.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_417.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_418.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_419.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_420.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_421.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_422.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_423.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_424.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_425.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_426.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_427.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_428.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_429.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_430.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_431.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_432.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_433.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_434.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_435.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_436.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_437.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_438.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_439.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_440.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_441.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_442.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_443.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_444.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_445.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_446.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_447.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_448.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_449.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_450.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_451.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_452.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_453.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_454.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_455.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_456.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_457.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_458.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_459.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_460.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_461.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_462.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_463.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_464.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_465.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_466.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_467.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_468.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_469.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_470.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_471.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_472.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_473.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_474.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_475.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_476.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_477.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_478.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_479.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_480.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_481.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_482.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_483.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_484.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_485.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_486.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_487.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_488.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_489.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_490.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_491.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_492.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_493.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_494.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_495.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_496.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_497.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_498.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_499.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_500.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_501.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_502.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_503.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_504.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_505.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_506.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_507.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_508.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_509.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_510.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_511.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_512.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_513.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_514.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_515.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_516.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_517.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_518.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_519.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_520.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_521.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_522.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_523.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_524.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_525.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_526.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_527.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_528.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_529.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_530.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_531.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_532.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_533.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_534.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_535.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_536.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_537.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_538.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_539.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_540.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_541.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_542.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_543.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_544.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_545.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_546.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_547.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_548.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_549.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_550.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_551.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_552.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_553.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_554.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_555.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_556.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_557.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_558.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_559.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_560.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_561.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_562.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_563.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_564.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_565.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_566.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_567.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_568.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_569.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_570.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_571.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_572.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_573.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_574.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_575.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_576.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_577.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_578.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_579.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_580.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016D-02Apr2020-v1107/200824_190842/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_202.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_203.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_204.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_205.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_206.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_207.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_208.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_209.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_210.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_211.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_212.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_213.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_214.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_215.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_216.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_217.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_218.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_219.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_220.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_221.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_222.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_223.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_224.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_225.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_226.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_227.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_228.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_229.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_230.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_231.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_232.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_233.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_234.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_235.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_236.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_237.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_238.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_239.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_240.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_241.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_242.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_243.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_244.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_245.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_246.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_247.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_248.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_249.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_250.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_251.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_252.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_253.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_254.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_255.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_256.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_257.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_258.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_259.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_260.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_261.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_262.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_263.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_264.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_265.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_266.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_267.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_268.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_269.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_270.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_271.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_272.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_273.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_274.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_275.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_276.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_277.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_278.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_279.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_280.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_281.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_282.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_283.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_284.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_285.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_286.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_287.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_288.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_289.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_290.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_291.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_292.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_293.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_294.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_295.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_296.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_297.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_298.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_299.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_300.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_301.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_302.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_303.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_304.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_305.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_306.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_307.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_308.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_309.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_310.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_311.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_312.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_313.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_314.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_315.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_316.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_317.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_318.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_319.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_320.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_321.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_322.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_323.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_324.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_325.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_326.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_327.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_328.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_329.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_330.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_331.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_332.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_333.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_334.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_335.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_336.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_337.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_338.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_339.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_340.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_341.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_342.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_343.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_344.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_345.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_346.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_347.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_348.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_349.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_350.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_351.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_352.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_353.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_354.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_355.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_356.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_357.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_358.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_359.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_360.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_361.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_362.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_363.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_364.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_365.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_366.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_367.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_368.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_369.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_370.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_371.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_372.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_373.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_374.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_375.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_376.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_377.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_378.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_379.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_380.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_381.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_382.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_383.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_384.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_385.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_386.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_387.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_388.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_389.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_390.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_391.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_392.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_393.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_394.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_395.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_396.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_397.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_398.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_399.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_400.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_401.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_402.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_403.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_404.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_405.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_406.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_407.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_408.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_409.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_410.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_411.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_412.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_413.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_414.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_415.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_416.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_417.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_418.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_419.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_420.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_421.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_422.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_423.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_424.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_425.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_426.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_427.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_428.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_429.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_430.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_431.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_432.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_433.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_434.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_435.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_436.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_437.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016E-02Apr2020-v1108/200824_190939/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_202.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_203.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_204.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_205.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_206.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_207.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_208.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_209.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_210.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_211.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_212.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_213.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_214.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_215.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_216.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_217.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_218.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_219.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_220.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_221.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_222.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_223.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_224.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_225.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_226.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_227.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_228.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_229.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_230.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_231.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_232.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_233.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_234.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_235.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_236.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_237.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_238.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_239.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_240.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_241.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_242.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_243.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_244.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_245.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_246.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_247.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_248.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_249.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_250.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_251.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_252.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_253.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_254.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_255.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_256.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_257.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_258.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_259.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_260.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_261.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_262.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_263.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_264.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_265.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_266.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_267.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_268.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016F-02Apr2020-v1109/200824_191030/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_202.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_203.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_204.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_205.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_206.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_207.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_208.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_209.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_210.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_211.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_212.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_213.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_214.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_215.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_216.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_217.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_218.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_219.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_220.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_221.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_222.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_223.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_224.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_225.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_226.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_227.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_228.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_229.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_230.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_231.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_232.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_233.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_234.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_235.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_236.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_237.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_238.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_239.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_240.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_241.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_242.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_243.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_244.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_245.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_246.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_247.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_248.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_249.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_250.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_251.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_252.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_253.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_254.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_255.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_256.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_257.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_258.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_259.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_260.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_261.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_262.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_263.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_264.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_265.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_266.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_267.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_268.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_269.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_270.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_271.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_272.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_273.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_274.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_275.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_276.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_277.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_278.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_279.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_280.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_281.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_282.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_283.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_284.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_285.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_286.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_287.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_288.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_289.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_290.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_291.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_292.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_293.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_294.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_295.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_296.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_297.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_298.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_299.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_300.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_301.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_302.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_303.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_304.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_305.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_306.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_307.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_308.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_309.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_310.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_311.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_312.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_313.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_314.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_315.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_316.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_317.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_318.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_319.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_320.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_321.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_322.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_323.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_324.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_325.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_326.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_327.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_328.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_329.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_330.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_331.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_332.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_333.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_334.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_335.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_336.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_337.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_338.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_339.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_340.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_341.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_342.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_343.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_344.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_345.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_346.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_347.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_348.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_349.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_350.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_351.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_352.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_353.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_354.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_355.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_356.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_357.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_358.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_359.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_360.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_361.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_362.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_363.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_364.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_365.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_366.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_367.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_368.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_369.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_370.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_371.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_372.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_373.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_374.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_375.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_376.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_377.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_378.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_379.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_380.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_381.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_382.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_383.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_384.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_385.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_386.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_387.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_388.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_389.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_390.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_391.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_392.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_393.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_394.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_395.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_396.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_397.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_398.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_399.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_400.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_401.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_402.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_403.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_404.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_405.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_406.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_407.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_408.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_409.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_410.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_411.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_412.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_413.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_414.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_415.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_416.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_417.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_418.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_419.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_420.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_421.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_422.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_423.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_424.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_425.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_426.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_427.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_428.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_429.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_430.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_431.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_432.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_433.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_434.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_435.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_436.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_437.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_438.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_439.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_440.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_441.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_442.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_443.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_444.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_445.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_446.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_447.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_448.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_449.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_450.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_451.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_452.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_453.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_454.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_455.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_456.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_457.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_458.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_459.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_460.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_461.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_462.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_463.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_464.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_465.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_466.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_467.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_468.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_469.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_470.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_471.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_472.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_473.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_474.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_475.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_476.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_477.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_478.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_479.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_480.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_481.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_482.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_483.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_484.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_485.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_486.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_487.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_488.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_489.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_490.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_491.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_492.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_493.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_494.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_495.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_496.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_497.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_498.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_499.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_500.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_501.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_502.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_503.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_504.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_505.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_506.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_507.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_508.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_509.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_510.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_511.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_512.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_513.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_514.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_515.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_516.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_517.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_518.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_519.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_520.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_521.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_522.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_523.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_524.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_525.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_526.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_527.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_528.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_529.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_530.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_531.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_532.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_533.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_534.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_535.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_536.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_537.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_538.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_539.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_540.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_541.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_542.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_543.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_544.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_545.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_546.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_547.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_548.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_549.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_550.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_551.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_552.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_553.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_554.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_555.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_556.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_557.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_558.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_559.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_560.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_561.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_562.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_563.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_564.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_565.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_566.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_567.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_568.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_569.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_570.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_571.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_572.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_573.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_574.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_575.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_576.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_577.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_578.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_579.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_580.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016G-02Apr2020-v1110/200824_191121/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_202.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_203.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_204.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_205.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_206.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_207.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_208.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_209.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_210.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_211.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_212.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_213.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_214.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_215.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_216.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_217.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_218.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_219.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_220.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_221.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_222.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_223.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_224.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_225.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_226.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_227.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_228.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_229.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_230.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_231.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_232.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_233.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_234.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_235.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_236.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_237.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_238.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_239.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_240.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_241.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_242.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_243.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_244.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_245.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_246.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_247.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_248.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_249.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_250.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_251.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_252.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_253.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_254.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_255.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_256.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_257.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_258.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_259.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_260.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_261.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_262.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_263.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_264.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_265.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_266.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_267.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_268.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_269.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_270.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_271.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_272.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_273.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_274.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_275.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_276.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_277.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_278.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_279.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_280.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_281.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_282.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_283.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_284.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_285.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_286.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_287.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_288.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_289.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_290.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_291.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_292.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_293.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_294.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_295.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_296.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_297.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_298.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_299.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_300.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_301.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_302.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_303.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_304.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_305.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_306.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_307.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_308.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_309.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_310.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_311.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_312.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_313.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_314.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_315.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_316.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_317.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_318.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_319.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_320.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_321.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_322.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_323.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_324.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_325.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_326.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_327.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_328.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_329.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_330.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_331.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_332.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_333.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_334.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_335.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_336.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_337.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_338.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_339.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_340.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_341.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_342.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_343.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_344.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_345.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_346.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_347.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_348.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_349.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_350.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_351.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_352.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_353.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_354.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_355.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_356.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_357.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_358.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_359.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_360.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_361.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_362.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_363.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_364.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_365.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_366.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_367.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_368.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_369.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_370.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_371.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_372.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_373.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_374.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_375.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_376.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_377.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_378.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_379.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_380.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_381.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_382.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_383.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_384.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_385.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_386.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_387.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_388.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_389.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_390.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_391.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_392.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_393.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_394.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_395.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_396.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_397.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_398.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_399.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_400.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_401.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_402.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_403.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_404.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_405.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_406.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_407.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_408.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_409.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_410.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_411.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_412.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_413.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_414.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_415.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_416.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_417.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_418.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_419.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_420.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_421.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_422.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_423.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_424.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_425.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_426.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_427.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_428.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_429.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_430.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_431.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_432.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_433.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_434.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_435.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_436.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_437.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_438.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_439.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_440.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_441.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_442.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_443.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_444.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_445.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_446.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_447.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_448.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_449.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_450.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_451.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_452.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_453.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_454.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_455.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_456.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_457.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_458.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_459.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_460.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_461.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_462.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_463.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_464.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_465.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_466.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_467.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_468.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_469.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_470.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_471.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_472.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_473.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_474.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_475.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_476.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//Run2016H-02Apr2020-v1111/200824_191218/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/SingleMuon.txt b/samples/VHbbPostNano2016_V13/SingleMuon.txt new file mode 100644 index 000000000..f1ceeb6b8 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/SingleMuon.txt @@ -0,0 +1,3044 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_202.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_203.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_204.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_205.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_206.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_207.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_208.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_209.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_210.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_211.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_212.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_213.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_214.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_215.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_216.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_217.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_218.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_219.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_220.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_221.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_222.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_223.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_224.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_225.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_226.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_227.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_228.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_229.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_230.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_231.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_232.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_233.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_234.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_235.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_236.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_237.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_238.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_239.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_240.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_241.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_242.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_243.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_244.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_245.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_246.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_247.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_248.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_249.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_250.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_251.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_252.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_253.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_254.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_255.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_256.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_257.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_258.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_259.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_260.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_261.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_262.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_263.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_264.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_265.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_266.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_267.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_268.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_269.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_270.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_271.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_272.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_273.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_274.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_275.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_276.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_277.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_278.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_279.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_280.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_281.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_282.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_283.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_284.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_285.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_286.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_287.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_288.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_289.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_290.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_291.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_292.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_293.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_294.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_295.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_296.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_297.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_298.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_299.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_300.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_301.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_302.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_303.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_304.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_305.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_306.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_307.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_308.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_309.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_310.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_311.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_312.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_313.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_314.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_315.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_316.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_317.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_318.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_319.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_320.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_321.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_322.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_323.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_324.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_325.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_326.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_327.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_328.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_329.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_330.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_331.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_332.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_333.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_334.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_335.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_336.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_337.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_338.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_339.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_340.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_341.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_342.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_343.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_344.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_345.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_346.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_347.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_348.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_349.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_350.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_351.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_352.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_353.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_354.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_355.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_356.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_357.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_358.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_359.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_360.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_361.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_362.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_363.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_364.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_365.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_366.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_367.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_368.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_369.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_370.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_371.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_372.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_373.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_374.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_375.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_376.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_377.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_378.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_379.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_380.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_381.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_382.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_383.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_384.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_385.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_386.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_387.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_388.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_389.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_390.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_391.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_392.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_393.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_394.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_395.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_396.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_397.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_398.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_399.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_400.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_401.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_402.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_403.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_404.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_405.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_406.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_407.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_408.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_409.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_410.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_411.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_412.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_413.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_414.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_415.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_416.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_417.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_418.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_419.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_420.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_421.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_422.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_423.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_424.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_425.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_426.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_427.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_428.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_429.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_430.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_431.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_432.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_433.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_434.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_435.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_436.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_437.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_438.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_439.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_440.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_441.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_442.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_443.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_444.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_445.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_446.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_447.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_448.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_449.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_450.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_451.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_452.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_453.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_454.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_455.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_456.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_457.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_458.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_459.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_460.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_461.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_462.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_463.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_464.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_465.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_466.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_467.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_468.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_469.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_470.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_471.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_472.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_473.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_474.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_475.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_476.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_477.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_478.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_479.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_480.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_481.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_482.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_483.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_484.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_485.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_486.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_487.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_488.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_489.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_490.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_491.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_492.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_493.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_494.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_495.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_496.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_497.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_498.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_499.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_500.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_501.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_502.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_503.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_504.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_505.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_506.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_507.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_508.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_509.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_510.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_511.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_512.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_513.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_514.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_515.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_516.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_517.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_518.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_519.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_520.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_521.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_522.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_523.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_524.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_525.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_526.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_527.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_528.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_529.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_530.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_531.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_532.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_533.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_534.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_535.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_536.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_537.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_538.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_539.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_540.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_541.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_542.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_543.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_544.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_545.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_546.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_547.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_548.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_549.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_550.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_551.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_552.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_553.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_554.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_555.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_556.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_557.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_558.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_559.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_560.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_561.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_562.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_563.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_564.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_565.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_566.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_567.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_568.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_569.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_570.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_571.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_572.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_573.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_574.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_575.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_576.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_577.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_578.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_579.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_580.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_581.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_582.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_583.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_584.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_585.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_586.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_587.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_588.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_589.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_590.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_591.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016B-02Apr2020_ver2-v193/200824_203835/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_202.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_203.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_204.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_205.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_206.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_207.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_208.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_209.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_210.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_211.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_212.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_213.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_214.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_215.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_216.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_217.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_218.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_219.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_220.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_221.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_222.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_223.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_224.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_225.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_226.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_227.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_228.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_229.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_230.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_231.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_232.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_233.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_234.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_235.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_236.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_237.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_238.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_239.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_240.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_241.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_242.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_243.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_244.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_245.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_246.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_247.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_248.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_249.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_250.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_251.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_252.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_253.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_254.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_255.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016C-02Apr2020-v1114/200824_191450/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_202.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_203.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_204.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_205.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_206.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_207.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_208.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_209.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_210.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_211.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_212.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_213.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_214.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_215.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_216.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_217.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_218.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_219.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_220.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_221.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_222.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_223.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_224.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_225.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_226.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_227.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_228.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_229.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_230.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_231.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_232.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_233.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_234.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_235.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_236.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_237.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_238.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_239.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_240.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_241.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_242.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_243.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_244.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_245.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_246.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_247.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_248.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_249.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_250.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_251.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_252.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_253.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_254.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_255.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_256.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_257.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_258.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_259.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_260.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_261.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_262.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_263.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_264.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_265.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_266.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_267.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_268.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_269.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_270.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_271.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_272.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_273.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_274.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_275.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_276.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_277.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_278.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_279.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_280.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_281.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_282.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_283.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_284.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_285.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_286.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_287.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_288.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_289.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_290.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_291.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_292.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_293.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_294.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_295.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_296.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_297.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_298.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_299.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_300.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_301.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_302.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_303.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_304.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_305.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_306.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_307.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_308.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_309.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_310.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_311.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_312.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_313.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_314.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_315.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_316.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_317.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_318.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_319.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_320.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_321.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_322.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_323.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_324.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_325.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_326.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_327.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_328.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_329.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_330.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_331.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_332.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_333.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_334.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_335.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_336.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_337.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_338.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_339.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_340.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_341.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_342.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_343.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_344.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_345.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_346.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_347.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_348.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_349.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_350.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_351.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_352.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_353.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_354.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_355.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_356.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_357.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_358.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_359.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_360.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_361.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_362.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_363.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_364.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_365.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_366.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_367.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_368.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_369.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_370.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_371.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_372.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_373.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_374.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_375.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_376.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_377.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_378.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_379.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_380.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_381.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_382.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_383.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_384.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016D-02Apr2020-v1115/200824_191540/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_202.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_203.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_204.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_205.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_206.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_207.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_208.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_209.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_210.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_211.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_212.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_213.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_214.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_215.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_216.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_217.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_218.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_219.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_220.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_221.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_222.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_223.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_224.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_225.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_226.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_227.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_228.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_229.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_230.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_231.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_232.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_233.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_234.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_235.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_236.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_237.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_238.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_239.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_240.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_241.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_242.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_243.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_244.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_245.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_246.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_247.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_248.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_249.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_250.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_251.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_252.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_253.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_254.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_255.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_256.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_257.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_258.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_259.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_260.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_261.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_262.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_263.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_264.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_265.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_266.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_267.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_268.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_269.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_270.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_271.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_272.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_273.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_274.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_275.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_276.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_277.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_278.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_279.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_280.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_281.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_282.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_283.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_284.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_285.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_286.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_287.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_288.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_289.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_290.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_291.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_292.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_293.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_294.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_295.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_296.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_297.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_298.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_299.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_300.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_301.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_302.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_303.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_304.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_305.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_306.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_307.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_308.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_309.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_310.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_311.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_312.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_313.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_314.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_315.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_316.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_317.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_318.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_319.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_320.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_321.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_322.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_323.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_324.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_325.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_326.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_327.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_328.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_329.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_330.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_331.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_332.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_333.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_334.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_335.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_336.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_337.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_338.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_339.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_340.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016E-02Apr2020-v1116/200824_191636/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_202.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_203.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_204.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_205.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_206.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_207.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_208.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_209.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_210.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_211.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_212.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_213.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_214.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_215.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_216.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_217.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_218.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_219.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_220.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_221.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_222.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_223.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_224.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_225.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_226.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_227.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_228.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_229.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_230.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_231.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_232.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_233.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_234.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_235.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_236.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_237.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_238.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_239.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_240.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_241.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_242.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_243.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_244.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_245.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_246.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_247.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_248.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_249.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_250.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_251.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016F-02Apr2020-v1117/200824_191726/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200617_150323/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_202.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_203.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_204.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_205.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_206.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_207.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_208.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_209.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_210.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_211.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_212.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_213.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_214.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_215.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_216.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_217.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_218.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_219.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_220.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_221.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_222.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_223.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_224.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_225.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_226.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_227.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_228.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_229.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_230.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_231.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_232.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_233.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_234.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_235.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_236.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_237.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_238.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_239.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_240.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_241.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_242.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_243.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_244.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_245.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_246.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_247.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_248.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_249.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_250.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_251.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_252.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_253.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_254.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_255.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_256.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_257.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_258.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_259.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_260.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_261.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_262.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_263.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_264.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_265.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_266.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_267.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_268.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_269.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_270.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_271.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_272.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_273.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_274.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_275.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_276.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_277.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_278.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_279.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_280.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_281.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_282.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_283.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_284.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_285.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_286.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_287.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_288.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_289.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_290.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_291.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_292.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_293.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_294.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_295.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_296.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_297.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_298.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_299.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_300.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_301.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_302.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_303.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_304.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_305.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_306.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_307.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_308.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_309.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_310.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_311.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_312.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_313.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_314.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_315.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_316.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_317.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_318.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_319.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_320.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_321.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_322.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_323.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_324.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_325.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_326.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_327.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_328.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_329.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_330.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_331.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_332.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_333.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_334.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_335.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_336.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_337.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_338.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_339.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_340.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_341.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_342.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_343.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_344.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_345.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_346.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_347.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_348.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_349.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_350.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_351.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_352.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_353.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_354.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_355.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_356.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_357.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_358.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_359.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_360.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_361.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_362.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_363.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_364.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_365.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_366.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_367.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_368.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_369.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_370.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_371.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_372.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_373.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_374.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_375.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_376.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_377.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_378.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_379.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_380.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_381.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_382.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_383.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_384.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_385.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_386.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_387.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_388.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_389.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_390.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_391.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_392.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_393.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_394.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_395.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_396.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_397.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_398.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_399.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_400.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_401.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_402.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_403.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_404.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_405.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_406.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_407.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_408.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_409.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_410.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_411.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_412.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_413.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_414.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_415.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_416.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_417.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_418.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_419.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_420.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_421.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_422.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_423.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_424.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_425.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_426.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_427.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_428.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_429.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_430.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_431.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_432.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_433.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_434.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_435.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_436.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_437.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_438.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_439.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_440.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_441.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_442.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_443.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_444.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_445.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_446.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_447.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_448.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_449.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_450.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_451.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_452.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_453.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_454.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_455.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_456.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_457.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_458.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_459.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_460.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_461.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_462.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_463.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_464.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_465.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_466.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_467.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_468.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_469.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_470.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_471.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_472.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_473.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_474.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_475.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_476.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_477.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_478.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_479.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_480.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_481.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_482.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_483.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_484.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_485.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_486.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_487.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_488.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_489.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_490.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_491.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_492.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_493.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_494.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_495.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_496.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_497.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_498.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_499.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_500.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_501.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_502.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_503.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_504.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_505.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_506.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_507.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_508.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_509.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_510.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_511.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_512.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_513.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_514.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_515.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_516.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_517.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_518.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_519.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_520.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_521.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_522.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_523.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_524.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_525.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_526.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_527.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_528.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_529.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_530.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_531.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_532.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_533.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_534.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_535.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_536.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_537.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_538.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_539.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_540.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_541.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_542.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_543.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_544.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_545.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_546.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_547.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_548.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_549.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_550.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_551.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_552.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_553.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_554.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_555.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_556.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_557.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_558.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_559.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_560.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_561.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_562.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_563.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_564.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_565.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_566.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_567.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_568.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016G-02Apr2020-v1118/200824_191816/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_202.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_203.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_204.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_205.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_206.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_207.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_208.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_209.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_210.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_211.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_212.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_213.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_214.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_215.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_216.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_217.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_218.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_219.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_220.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_221.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_222.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_223.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_224.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_225.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_226.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_227.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_228.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_229.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_230.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_231.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_232.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_233.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_234.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_235.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_236.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_237.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_238.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_239.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_240.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_241.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_242.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_243.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_244.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_245.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_246.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_247.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_248.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_249.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_250.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_251.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_252.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_253.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_254.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_255.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_256.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_257.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_258.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_259.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_260.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_261.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_262.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_263.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_264.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_265.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_266.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_267.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_268.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_269.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_270.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_271.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_272.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_273.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_274.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_275.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_276.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_277.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_278.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_279.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_280.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_281.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_282.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_283.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_284.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_285.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_286.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_287.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_288.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_289.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_290.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_291.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_292.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_293.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_294.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_295.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_296.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_297.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_298.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_299.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_300.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_301.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_302.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_303.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_304.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_305.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_306.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_307.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_308.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_309.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_310.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_311.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_312.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_313.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_314.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_315.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_316.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_317.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_318.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_319.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_320.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_321.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_322.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_323.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_324.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_325.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_326.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_327.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_328.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_329.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_330.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_331.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_332.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_333.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_334.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_335.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_336.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_337.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_338.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_339.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_340.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_341.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_342.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_343.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_344.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_345.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_346.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_347.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_348.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_349.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_350.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_351.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_352.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_353.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_354.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_355.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_356.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_357.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_358.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_359.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_360.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_361.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_362.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_363.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_364.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_365.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_366.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_367.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_368.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_369.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_370.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_371.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_372.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_373.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_374.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_375.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_376.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_377.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_378.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_379.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_380.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_381.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_382.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_383.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_384.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_385.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_386.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_387.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_388.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_389.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_390.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_391.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_392.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_393.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_394.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_395.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_396.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_397.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_398.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_399.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_400.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_401.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_402.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_403.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_404.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_405.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_406.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_407.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_408.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_409.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_410.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_411.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_412.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_413.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_414.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_415.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_416.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_417.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_418.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_419.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_420.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_421.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_422.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_423.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_424.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_425.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_426.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_427.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_428.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_429.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_430.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_431.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_432.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_433.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_434.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_435.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_436.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_437.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_438.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_439.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_440.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_441.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_442.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_443.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_444.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_445.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_446.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_447.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_448.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_449.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_450.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_451.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_452.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_453.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_454.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_455.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_456.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_457.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_458.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_459.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_460.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_461.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_462.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_463.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_464.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_465.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_466.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_467.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_468.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_469.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_470.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_471.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_472.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_473.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_474.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_475.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_476.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_477.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_478.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_479.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_480.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_481.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_482.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_483.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_484.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_485.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_486.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_487.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_488.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_489.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_490.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_491.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_492.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_493.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_494.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_495.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_496.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_497.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_498.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_499.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_500.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_501.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_502.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_503.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_504.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_505.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_506.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_507.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_508.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_509.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_510.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_511.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_512.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_513.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_514.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_515.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_516.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_517.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_518.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_519.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_520.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_521.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_522.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_523.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_524.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_525.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_526.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_527.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_528.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_529.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_530.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_531.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_532.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_533.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_534.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_535.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_536.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_537.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_538.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_539.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_540.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_541.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_542.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_543.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_544.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_545.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_546.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_547.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_548.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_549.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_550.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_551.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_552.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_553.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_554.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_555.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_556.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_557.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_558.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_559.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_560.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_561.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_562.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_563.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_564.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_565.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_566.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_567.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_568.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_569.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_570.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_571.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_572.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_573.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_574.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_575.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_576.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_577.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_578.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_579.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_580.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_581.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_582.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_583.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_584.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_585.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_586.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_587.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_588.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_589.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_590.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_591.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_592.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_593.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_594.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_595.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_596.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_597.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_598.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_599.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_600.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_601.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_602.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_603.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_604.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_605.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_606.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_607.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_608.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_609.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_610.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_611.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_612.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_613.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_614.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_615.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_616.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_617.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_618.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_619.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_620.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_621.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_622.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_623.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_624.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_625.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_626.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_627.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_628.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_629.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_630.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_631.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_632.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_633.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_634.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_635.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_636.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_637.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_638.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_639.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_640.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_641.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_642.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_643.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_644.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_645.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_646.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_647.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_648.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_649.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_650.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_651.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_652.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_653.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_654.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//Run2016H-02Apr2020-v1119/200824_191908/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2016_V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..ba47f8c38 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8.txt @@ -0,0 +1,60 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio92/200629_111846/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2016_V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..956aea22e --- /dev/null +++ b/samples/VHbbPostNano2016_V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1,306 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_202.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_203.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_204.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_205.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_206.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_207.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_208.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_209.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_210.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_211.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_212.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_213.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_214.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_215.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_216.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_217.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_218.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_219.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_220.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_221.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_222.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_223.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_224.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_225.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_226.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_227.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_228.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_229.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_230.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_231.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_232.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_233.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_234.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_235.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_236.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_237.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_238.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_239.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_240.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_241.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_242.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_243.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_244.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_245.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_246.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_247.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_248.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_249.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_250.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_251.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_252.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_253.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_254.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_255.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_256.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_257.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_258.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_259.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_260.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_261.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_262.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_263.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_264.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_265.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_266.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_267.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_268.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_269.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_270.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_271.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_272.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_273.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_274.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_275.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_276.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_277.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_278.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_279.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_280.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_281.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_282.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_283.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_284.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_285.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_286.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_287.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_288.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_289.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_290.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_291.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_292.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_293.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_294.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_295.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_296.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_297.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_298.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_299.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_300.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_301.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_302.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_303.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_304.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_305.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_306.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_PSweights_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-Nano02A84/200703_111249/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..4ccd38990 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,18 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_074621/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_074621/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_074621/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_074621/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_074621/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_074621/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_074621/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_074621/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_074621/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200616_074707/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200616_074707/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200616_074707/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200616_074707/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200616_074707/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200616_074707/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200616_074707/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200616_074707/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200616_074707/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..52ce37b41 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,42 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_114214/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_114214/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_114214/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_114214/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_114214/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_114214/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_114214/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_114214/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_114214/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_114214/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_114214/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_114214/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_114214/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_114214/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_114214/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_114214/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_114214/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_114214/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_114214/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_114214/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_114214/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200826_114306/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200826_114306/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200826_114306/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200826_114306/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200826_114306/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200826_114306/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200826_114306/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200826_114306/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200826_114306/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200826_114306/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200826_114306/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200826_114306/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200826_114306/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200826_114306/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200826_114306/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200826_114306/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200826_114306/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200826_114306/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200826_114306/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200826_114306/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200826_114306/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..43300bd59 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,58 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_074928/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_074928/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_074928/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_074928/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_074928/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_074928/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_074928/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_074928/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_074928/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_074928/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_074928/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_074928/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_074928/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_074928/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_074928/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_074928/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_074928/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_074928/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_074928/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_074928/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_074928/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_074928/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_074928/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_074928/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_074928/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_074928/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_074928/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_074928/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_074928/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_074928/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200616_075015/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200616_075015/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200616_075015/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200616_075015/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200616_075015/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200616_075015/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200616_075015/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200616_075015/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200616_075015/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200616_075015/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200616_075015/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200616_075015/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200616_075015/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200616_075015/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200616_075015/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200616_075015/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200616_075015/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200616_075015/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200616_075015/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200616_075015/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200616_075015/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200616_075015/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200616_075015/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200616_075015/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200616_075015/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200616_075015/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200616_075015/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200616_075015/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..ed27f0acb --- /dev/null +++ b/samples/VHbbPostNano2016_V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,82 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200826_114357/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200826_114447/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..c789be0d9 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,154 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200616_075236/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200616_075323/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..bdfc41d3a --- /dev/null +++ b/samples/VHbbPostNano2016_V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,69 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200826_114536/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200616_075455/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio91/200616_075455/0000/tree_2.root diff --git a/samples/VHbbPostNano2016_V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..ab8aac9eb --- /dev/null +++ b/samples/VHbbPostNano2016_V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,259 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200911_083933/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200911_083933/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200911_083933/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200911_083933/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200911_083933/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200911_083933/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200911_083933/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200911_083933/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200911_083933/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio85/200826_114630/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio87/200826_114812/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio95/200616_075801/0000/tree_76.root diff --git a/samples/VHbbPostNano2016_V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..52130dfc1 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,13 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio96/200616_075846/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio96/200616_075846/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio97/200616_075933/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio97/200616_075933/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio97/200616_075933/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio97/200616_075933/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio97/200616_075933/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio97/200616_075933/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio97/200616_075933/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio97/200616_075933/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio97/200616_075933/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio97/200616_075933/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio97/200616_075933/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..97a3446f5 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,33 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200616_080020/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200616_080020/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200616_080020/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200616_080020/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200616_080020/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200616_080020/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200616_080020/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200616_080020/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio98/200616_080020/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio99/200616_080107/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio99/200616_080107/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio99/200616_080107/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio99/200616_080107/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio99/200616_080107/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio99/200616_080107/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio99/200616_080107/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio99/200616_080107/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio99/200616_080107/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio99/200616_080107/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio99/200616_080107/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio99/200616_080107/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio99/200616_080107/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio99/200616_080107/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio99/200616_080107/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio99/200616_080107/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio99/200616_080107/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio99/200616_080107/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio99/200616_080107/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio99/200616_080107/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio99/200616_080107/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio99/200616_080107/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio99/200616_080107/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio99/200616_080107/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..d5fda643e --- /dev/null +++ b/samples/VHbbPostNano2016_V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,189 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio100/200616_080152/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio88/200826_114902/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio89/200826_114952/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..874e80128 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,41 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-70To100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio102/200616_080331/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..44b7127f2 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,33 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio103/200616_080419/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio103/200616_080419/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio103/200616_080419/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio103/200616_080419/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio103/200616_080419/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio103/200616_080419/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio103/200616_080419/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio104/200616_080505/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio104/200616_080505/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio104/200616_080505/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio104/200616_080505/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio104/200616_080505/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio104/200616_080505/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio104/200616_080505/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio104/200616_080505/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio104/200616_080505/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio104/200616_080505/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio104/200616_080505/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio104/200616_080505/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio104/200616_080505/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio104/200616_080505/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio104/200616_080505/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio104/200616_080505/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio104/200616_080505/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio104/200616_080505/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio104/200616_080505/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio104/200616_080505/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio104/200616_080505/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio104/200616_080505/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio104/200616_080505/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio104/200616_080505/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio104/200616_080505/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio104/200616_080505/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..e28eb5108 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,120 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio106/200616_080636/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V13/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..c171d4e5d --- /dev/null +++ b/samples/VHbbPostNano2016_V13/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio94/200629_112032/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio94/200629_112032/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio94/200629_112032/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio94/200629_112032/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio94/200629_112032/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio94/200629_112032/0000/tree_6.root diff --git a/samples/VHbbPostNano2016_V13/WWTo2L2Nu_13TeV-powheg.txt b/samples/VHbbPostNano2016_V13/WWTo2L2Nu_13TeV-powheg.txt new file mode 100644 index 000000000..1b13bce7c --- /dev/null +++ b/samples/VHbbPostNano2016_V13/WWTo2L2Nu_13TeV-powheg.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WWTo2L2Nu_13TeV-powheg//RunIISummer16NanoAODv7-PUMorio106/200619_151055/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WWTo2L2Nu_13TeV-powheg//RunIISummer16NanoAODv7-PUMorio106/200619_151055/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WWTo2L2Nu_13TeV-powheg//RunIISummer16NanoAODv7-PUMorio106/200619_151055/0000/tree_3.root diff --git a/samples/VHbbPostNano2016_V13/WWToLNuQQ_13TeV-powheg.txt b/samples/VHbbPostNano2016_V13/WWToLNuQQ_13TeV-powheg.txt new file mode 100644 index 000000000..800446e7d --- /dev/null +++ b/samples/VHbbPostNano2016_V13/WWToLNuQQ_13TeV-powheg.txt @@ -0,0 +1,7 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WWToLNuQQ_13TeV-powheg//RunIISummer16NanoAODv7-PUMorio95/200629_112123/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WWToLNuQQ_13TeV-powheg//RunIISummer16NanoAODv7-PUMorio95/200629_112123/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WWToLNuQQ_13TeV-powheg//RunIISummer16NanoAODv7-PUMorio95/200629_112123/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WWToLNuQQ_13TeV-powheg//RunIISummer16NanoAODv7-PUMorio95/200629_112123/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WWToLNuQQ_13TeV-powheg//RunIISummer16NanoAODv7-PUMorio95/200629_112123/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WWToLNuQQ_13TeV-powheg//RunIISummer16NanoAODv7-PUMorio95/200629_112123/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WWToLNuQQ_13TeV-powheg//RunIISummer16NanoAODv7-PUMorio95/200629_112123/0000/tree_7.root diff --git a/samples/VHbbPostNano2016_V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..41d5eace6 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,14 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_112214/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_112214/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_112214/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_112214/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_112214/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_112214/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_112214/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_112214/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_112214/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_112214/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_112214/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_112214/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_112214/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio96/200629_112214/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/WZTo1L3Nu_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V13/WZTo1L3Nu_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..b8fe22328 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/WZTo1L3Nu_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,8 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L3Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio86/200703_111426/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L3Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio86/200703_111426/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L3Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio86/200703_111426/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L3Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio86/200703_111426/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L3Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio86/200703_111426/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L3Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio86/200703_111426/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L3Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio86/200703_111426/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L3Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio86/200703_111426/0000/tree_8.root diff --git a/samples/VHbbPostNano2016_V13/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V13/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..dc026ff85 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,11 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_112358/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_112358/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_112358/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_112358/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_112358/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_112358/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_112358/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_112358/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_112358/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_112358/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio98/200629_112358/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/WZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V13/WZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..2c6fdc1c4 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/WZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,18 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio99/200629_112456/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio99/200629_112456/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio99/200629_112456/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio99/200629_112456/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio99/200629_112456/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio99/200629_112456/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio99/200629_112456/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio99/200629_112456/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio99/200629_112456/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio99/200629_112456/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio99/200629_112456/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio99/200629_112456/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio99/200629_112456/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio99/200629_112456/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio99/200629_112456/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio99/200629_112456/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio99/200629_112456/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio99/200629_112456/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2016_V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..e646ec764 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1,48 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8//RunIISummer16NanoAODv7-PUMorio88/200703_111602/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/WZTo3LNu_TuneCUETP8M1_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2016_V13/WZTo3LNu_TuneCUETP8M1_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..b5b2265d9 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/WZTo3LNu_TuneCUETP8M1_13TeV-powheg-pythia8.txt @@ -0,0 +1,21 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio101/200629_112638/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio101/200629_112638/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio101/200629_112638/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio101/200629_112638/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio101/200629_112638/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio101/200629_112638/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio101/200629_112638/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio101/200629_112638/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio101/200629_112638/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio101/200629_112638/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio101/200629_112638/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio101/200629_112638/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio101/200629_112638/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio101/200629_112638/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio101/200629_112638/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio101/200629_112638/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio101/200629_112638/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio101/200629_112638/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio101/200629_112638/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio101/200629_112638/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo3LNu_TuneCUETP8M1_13TeV-powheg-pythia8//RunIISummer16NanoAODv7-PUMorio101/200629_112638/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/WZToLNu2Q_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/WZToLNu2Q_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..5f00fe0e6 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/WZToLNu2Q_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZToLNu2Q_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio116/200619_151904/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V13/WminusH_HToBB_WToLNu_M120_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/WminusH_HToBB_WToLNu_M120_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..f6bdc6172 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/WminusH_HToBB_WToLNu_M120_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WminusH_HToBB_WToLNu_M120_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio117/200619_151956/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V13/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..e8b2b98e5 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio119/200619_152130/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio119/200619_152130/0000/tree_2.root diff --git a/samples/VHbbPostNano2016_V13/WminusH_HToBB_WToLNu_M130_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/WminusH_HToBB_WToLNu_M130_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..5ad6825fe --- /dev/null +++ b/samples/VHbbPostNano2016_V13/WminusH_HToBB_WToLNu_M130_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WminusH_HToBB_WToLNu_M130_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio120/200619_152221/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V13/WplusH_HToBB_WToLNu_M120_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/WplusH_HToBB_WToLNu_M120_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..64a67a33b --- /dev/null +++ b/samples/VHbbPostNano2016_V13/WplusH_HToBB_WToLNu_M120_13TeV_powheg_pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WplusH_HToBB_WToLNu_M120_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio121/200619_152311/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WplusH_HToBB_WToLNu_M120_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio121/200619_152311/0000/tree_2.root diff --git a/samples/VHbbPostNano2016_V13/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..3797028ff --- /dev/null +++ b/samples/VHbbPostNano2016_V13/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio123/200619_152500/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio123/200619_152500/0000/tree_2.root diff --git a/samples/VHbbPostNano2016_V13/WplusH_HToBB_WToLNu_M130_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/WplusH_HToBB_WToLNu_M130_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..a8b0b1bc7 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/WplusH_HToBB_WToLNu_M130_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WplusH_HToBB_WToLNu_M130_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio124/200619_152546/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V13/WplusH_HToBB_WToQQ_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/WplusH_HToBB_WToQQ_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..2fa27a897 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/WplusH_HToBB_WToQQ_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WplusH_HToBB_WToQQ_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio125/200619_152635/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WplusH_HToBB_WToQQ_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio125/200619_152635/0000/tree_2.root diff --git a/samples/VHbbPostNano2016_V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..6c3a7d077 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,28 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_072800/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_072800/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_072800/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_072800/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_072800/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_072800/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_072800/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_072800/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_072800/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_072800/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_072800/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_072800/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_072800/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_072800/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_072800/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_072800/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_072800/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_072800/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_072800/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_072800/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_072800/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_072800/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_072800/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_072800/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_072800/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_072800/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_072800/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200616_072800/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..90b4e7b3a --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,26 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200616_072848/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200616_072848/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200616_072848/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200616_072848/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200616_072848/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200616_072848/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200616_072848/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200616_072848/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200616_072848/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200616_072848/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200616_072848/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200616_072848/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio81/200616_072848/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200616_072933/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200616_072933/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200616_072933/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200616_072933/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200616_072933/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200616_072933/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200616_072933/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200616_072933/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200616_072933/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200616_072933/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200616_072933/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200616_072933/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio82/200616_072933/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/ZH_HToBB_ZToLL_M120_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/ZH_HToBB_ZToLL_M120_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..bf717d8d3 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ZH_HToBB_ZToLL_M120_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M120_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio126/200619_152723/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..d157086b9 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,13 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio89/200703_111651/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio89/200703_111651/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio89/200703_111651/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio89/200703_111651/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio89/200703_111651/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio89/200703_111651/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio89/200703_111651/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio89/200703_111651/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio89/200703_111651/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio89/200703_111651/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio89/200703_111651/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio89/200703_111651/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio89/200703_111651/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/ZH_HToBB_ZToLL_M130_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/ZH_HToBB_ZToLL_M130_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..1a6c3a4db --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ZH_HToBB_ZToLL_M130_13TeV_powheg_pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M130_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio129/200619_152949/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M130_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio129/200619_152949/0000/tree_2.root diff --git a/samples/VHbbPostNano2016_V13/ZH_HToBB_ZToNuNu_M120_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/ZH_HToBB_ZToNuNu_M120_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..1a2654d85 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ZH_HToBB_ZToNuNu_M120_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToNuNu_M120_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio130/200619_153043/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V13/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..720f83491 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio131/200619_153130/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio131/200619_153130/0000/tree_2.root diff --git a/samples/VHbbPostNano2016_V13/ZH_HToBB_ZToNuNu_M130_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/ZH_HToBB_ZToNuNu_M130_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..48d38d15f --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ZH_HToBB_ZToNuNu_M130_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToNuNu_M130_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio132/200619_153219/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..85ac2a8d9 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,24 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200616_073019/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200616_073019/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200616_073019/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200616_073019/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200616_073019/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200616_073019/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200616_073019/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200616_073019/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200616_073019/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200616_073019/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200616_073019/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio83/200616_073019/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_073105/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_073105/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_073105/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_073105/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_073105/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_073105/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_073105/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_073105/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_073105/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_073105/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_073105/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio84/200616_073105/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..612f899f9 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,33 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_161345/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_161345/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_161345/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_161345/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_161345/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_161345/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_161345/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_161345/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_161345/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_161345/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_161345/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_161345/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_161345/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_161345/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_161345/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_161345/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_161345/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_161345/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_161345/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_161345/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_161345/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio80/200826_161345/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio86/200616_073236/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio86/200616_073236/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio86/200616_073236/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio86/200616_073236/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio86/200616_073236/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio86/200616_073236/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio86/200616_073236/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio86/200616_073236/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio86/200616_073236/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio86/200616_073236/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//RunIISummer16NanoAODv7-PUMorio86/200616_073236/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt new file mode 100644 index 000000000..601a3c9c9 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt @@ -0,0 +1,98 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio87/200616_073322/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio87/200616_073322/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio87/200616_073322/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio87/200616_073322/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio87/200616_073322/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio87/200616_073322/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio87/200616_073322/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio87/200616_073322/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio87/200616_073322/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio87/200616_073322/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio87/200616_073322/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio87/200616_073322/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio87/200616_073322/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio87/200616_073322/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio87/200616_073322/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio87/200616_073322/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio87/200616_073322/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio87/200616_073322/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio87/200616_073322/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio87/200616_073322/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio87/200616_073322/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio88/200616_073407/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V13/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt new file mode 100644 index 000000000..2fb04fe06 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt @@ -0,0 +1,4 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio89/200616_073453/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio89/200616_073453/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio89/200616_073453/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio90/200616_073537/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt new file mode 100644 index 000000000..e208c0d44 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt @@ -0,0 +1,29 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio80/200911_083232/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio80/200911_083232/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio80/200911_083232/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio80/200911_083232/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio80/200911_083232/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio80/200911_083232/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio80/200911_083232/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio91/200616_073623/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio91/200616_073623/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio91/200616_073623/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio91/200616_073623/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio91/200616_073623/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio91/200616_073623/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio91/200616_073623/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio91/200616_073623/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio91/200616_073623/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio91/200616_073623/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio91/200616_073623/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio91/200616_073623/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio91/200616_073623/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio91/200616_073623/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio91/200616_073623/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio91/200616_073623/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio91/200616_073623/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio91/200616_073623/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio91/200616_073623/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio91/200616_073623/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio91/200616_073623/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio91/200616_073623/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V13/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt new file mode 100644 index 000000000..1fe547749 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio93/200616_073755/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio93/200616_073755/0000/tree_2.root diff --git a/samples/VHbbPostNano2016_V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt new file mode 100644 index 000000000..d5a5355e6 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt @@ -0,0 +1,41 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio94/200616_073839/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio94/200616_073839/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio94/200616_073839/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio94/200616_073839/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio94/200616_073839/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio95/200616_073925/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt new file mode 100644 index 000000000..e6fd86661 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt @@ -0,0 +1,24 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio96/200616_074018/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio96/200616_074018/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio96/200616_074018/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio96/200616_074018/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio96/200616_074018/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio96/200616_074018/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio96/200616_074018/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio96/200616_074018/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio96/200616_074018/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio96/200616_074018/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio96/200616_074018/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio96/200616_074018/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio96/200616_074018/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio96/200616_074018/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio96/200616_074018/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio96/200616_074018/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio96/200616_074018/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio96/200616_074018/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio96/200616_074018/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio96/200616_074018/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio96/200616_074018/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio96/200616_074018/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio96/200616_074018/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio96/200616_074018/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V13/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt new file mode 100644 index 000000000..b7e21eca6 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt @@ -0,0 +1,11 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio97/200616_074106/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio97/200616_074106/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio97/200616_074106/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio97/200616_074106/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio97/200616_074106/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio97/200616_074106/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio97/200616_074106/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio97/200616_074106/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio97/200616_074106/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio97/200616_074106/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//RunIISummer16NanoAODv7-PUMorio97/200616_074106/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/ZZTo2L2Nu_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/ZZTo2L2Nu_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..360ad6212 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ZZTo2L2Nu_13TeV_powheg_pythia8.txt @@ -0,0 +1,36 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio90/200703_111736/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..bbf35dabe --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,62 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio91/200703_111821/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/ZZTo2L2Q_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/ZZTo2L2Q_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..e8541e18e --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ZZTo2L2Q_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio135/200619_153454/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V13/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V13/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..c603665f6 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,20 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio106/200629_113101/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio106/200629_113101/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio106/200629_113101/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio106/200629_113101/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio106/200629_113101/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio106/200629_113101/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio106/200629_113101/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio106/200629_113101/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio106/200629_113101/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio106/200629_113101/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio106/200629_113101/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio106/200629_113101/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio106/200629_113101/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio106/200629_113101/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio106/200629_113101/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio106/200629_113101/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio106/200629_113101/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio106/200629_113101/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio106/200629_113101/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2Q2Nu_13TeV_amcatnloFXFX_madspin_pythia8//RunIISummer16NanoAODv7-PUMorio106/200629_113101/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/ZZTo2Q2Nu_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/ZZTo2Q2Nu_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..388416b86 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ZZTo2Q2Nu_13TeV_powheg_pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2Q2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio137/200619_153630/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2Q2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio137/200619_153630/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2Q2Nu_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio137/200619_153630/0000/tree_3.root diff --git a/samples/VHbbPostNano2016_V13/ZZTo4L_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/ZZTo4L_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..e3530d883 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ZZTo4L_13TeV_powheg_pythia8.txt @@ -0,0 +1,7 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo4L_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio107/200629_113151/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo4L_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio107/200629_113151/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo4L_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio107/200629_113151/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo4L_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio107/200629_113151/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo4L_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio107/200629_113151/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo4L_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio107/200629_113151/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo4L_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio107/200629_113151/0000/tree_7.root diff --git a/samples/VHbbPostNano2016_V13/ggZH_HToBB_ZToLL_M120_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/ggZH_HToBB_ZToLL_M120_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..55993d876 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ggZH_HToBB_ZToLL_M120_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToLL_M120_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio139/200619_153818/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V13/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..32271b204 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,10 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_111906/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_111906/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_111906/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_111906/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_111906/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_111906/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_111906/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_111906/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_111906/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio92/200703_111906/0000/tree_9.root diff --git a/samples/VHbbPostNano2016_V13/ggZH_HToBB_ZToLL_M130_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/ggZH_HToBB_ZToLL_M130_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..8c4d1422a --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ggZH_HToBB_ZToLL_M130_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToLL_M130_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio143/200619_154128/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V13/ggZH_HToBB_ZToNuNu_M120_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/ggZH_HToBB_ZToNuNu_M120_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..f28bbe700 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ggZH_HToBB_ZToNuNu_M120_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToNuNu_M120_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio144/200619_154246/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V13/ggZH_HToBB_ZToNuNu_M125_13TeV_amcatnlo_pythia8.txt b/samples/VHbbPostNano2016_V13/ggZH_HToBB_ZToNuNu_M125_13TeV_amcatnlo_pythia8.txt new file mode 100644 index 000000000..9a25aae37 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ggZH_HToBB_ZToNuNu_M125_13TeV_amcatnlo_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToNuNu_M125_13TeV_amcatnlo_pythia8//RunIISummer16NanoAODv7-PUMorio145/200619_154333/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V13/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..1c272bef2 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,4 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio109/200629_113337/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio109/200629_113337/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio109/200629_113337/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio109/200629_113337/0000/tree_4.root diff --git a/samples/VHbbPostNano2016_V13/ggZH_HToBB_ZToNuNu_M130_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/ggZH_HToBB_ZToNuNu_M130_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..fcc9d25f3 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/ggZH_HToBB_ZToNuNu_M130_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToNuNu_M130_13TeV_powheg_pythia8//RunIISummer16NanoAODv7-PUMorio149/200619_154649/0000/tree_1.root diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..f498c1f77 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,9 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2987b8b3c7e35cd54263386e966dee0cb113e0f7b346c0611f253f60/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//10f9dcb8ffcce94e6024aac07fc3fb7376112320d739065426fe6deb/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2bcf97c5718e2c52aec396aba4ae0ea06586761654f1a8e905ead58c/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5d65d0a6f0dcfabdd810bc78f5746cf6ab27ddefa9c1737549c5dd89/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7582aba55866d9dc7bb8c9e2ffc871a7c467389363c3f64e6d2311d5/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//01b51d4b56f0e7d9be7b5c0332db4921e7c36d52428bd001d44a3090/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//45a162d54c306ac7b77322f6491c0e381fa1359e5e6aa0ed4b3958df/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7a9748ea045fa9dd50beb58c8bd0d5ec18bf982facc2e0ed27185e68/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6bdfbc68fdfb70ed6ffe9f13ca098cb24f7f97f02053aff03ce083b8/000000_000000/0000/tree_8.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..1a3c281b8 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,9 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e9a8f271d63ab784a8205225d8812e1f38e0afd6651a1813a0b314f9/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f7e40e0b02fd919e15276731fb4b29ed63edfb40e1ccaee602fe4a04/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//927347fcc191f05d6b8e76b2253388386019751839e38876b86e233f/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9b852abbfc8b9b91ef929ea473956ecc7869e295b23d9ec79de79e72/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8e80cc75e91bdba5bbf9cee9ab81524e14490bd79d1986b6db4ffa8b/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7f797da8c08ce0c1216175759ca2433170548a40e2a9bd0e6a923f72/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7436df98ff11d4368eb3ed9959c760d575ca5fc9993f31cac5d189d0/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0ec89f2475088d37a6f7932388d8e2198047aaeab6acc55786ee1c71/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//69a4101cacc6c4645dfb59747bbe658e0be64abad770f9824107314a/000000_000000/0000/tree_8.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..19ad687a7 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,7 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d017f7586e210035e1449ceafed31a2f78357987bc2407c96b9edf3e/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2dffaff065942db749646086a9f37c6a3d3a3c1a01c93c7d41236c9e/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4f61fdcc63d9f841e1a3ef4bf8870b42b6d5cf7cee2f4cee36bab6b8/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0318a8f5f57dfd973d7072f00c5b1936a926ad73dbc96598e62dbeb9/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7da994f0d226ef965976638fd8411cde3e5dabcb75c22e8924bea415/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//df60156b1906d4a8bf9f0cb0294ae6a7ba09226712977266b059a158/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5a46c67a361ea12f02816f0fcd6fa16e123432ff0f358362594f3eae/000000_000000/0000/tree_6.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..ac51073f5 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,12 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//43f49bea6f0d971bf2f089766513220ab7b85a9a41aba17f62e44eef/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ab82268c7a3182d12dfcdedf5c9e948f687374535c2728c679ea1f4e/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5b24fb2da380aa10b3580e91fa33919aa0362045e0b7745289328762/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//dcd4c98da3fd8c1533ced85eaca244d8cbaeddd395b4a41afad0f7d5/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4f5d516eeb8e7a76eebdb0be85c2dd80712acd9cab5c61d49b71ca2b/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ed9c033b7c7a0145246732dd2fa7c937e454e1783aa0a48240e1603d/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a18e5145b66122d9fa5cf10463ec4174582a352e0826a031ad018087/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8926d45568102904efee80c93b6e72789b429f8192d50864b7383d04/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4dce332ed389921bfad9073f0a046635d6fc4c7278b34d6373cc99e8/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//cfc31bbc338ef4ecef37b59f9028983f2905c45adf2d5c8f1f52bc7f/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1b72a98a28902bb6881b2c2a7b1d2a67196b090503da147c1c587cb7/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e0cba85534a3c9611889db86ace36b6c1cd7b07cd0946784946a9679/000000_000000/0000/tree_11.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..feff0a860 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//69edaecc2b6879345e3b9667c95eb554f96e07dc7222ce18bd380f27/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..d64f327af --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4f1ad98ee5d662bc9be475ab1cf959d946ba0f109c315816e1803dd3/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//18f4446837ac323e120a4dc4027d991894fbdddf2f6237314a6d93dd/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//226deb48450b0458495a00e75cf07b668c90c0a163567ae7a020f3f7/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..d0a45b2ba --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,9 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2b7e5c464dd4433238b5b87643e70847c255b813af8b5b1810761733/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d28ec453ab685844fba7088a3d4a5f2733603583c2544449f6ae4921/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2a4c21eac2b097d47071ae07aee3eaff39620699fe54479cab4f18e0/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a35dbcc51f1a7e0db999c5acccb623df4ea88f4a8a86d37514f98244/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e89acecdb512ae7db92fed6f590787a80d828cb62fbe9cca86d960e0/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//55490b87d66066c67012edea0841b1f43fff7b5f16b82987d113db0f/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4771393464364f8acb799091a54296bdcb6fb05c99827f3ea7357a10/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c472d5ee6be86ec0dc0e15120f0e72915f8e7d3a70e6986a8daf7ece/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f44944a79619b7c47cc6b4f9cbde64106bc22c00d8d9e46b8db51801/000000_000000/0000/tree_8.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..17a51f304 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//50b8d26a80bf45c9d4989aefdf081c0ffc8ad83e5ffa0e00f789f23f/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..4186ca7d6 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,19 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2a6345140205b3fd22e8a0bf1e344275af58a540d18cf2f6aabaec41/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8483549a4c7383c2ab5bb72451f1c4586e6fdce445b0fdcf944db0b2/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5bd25db2ad4d8baeda91b327eb41ff74b74b62d2e414de4a3513af64/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3610dda84b3028f46171ce88a46b1a6ad0f48b2fe25834c0092e2af1/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e82fe4fe3140e4ea66765ff97648747b4c3c2bec8cf73ac6c78ea463/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bac96f2f9d57b9f978661c7c1f383429edeab1249a308413541b6b89/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0634e3de7a0c525533ce9c1e74007f35e8517706c9badf444deb4d0c/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f694d111f0a02f99e3ad05063ffc3ba1ad9ac8f67c352ef4b00b3083/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//874abe8ffe04b5d7c872de3b9346b4071ccbf8784a3899a4cb28e061/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//752d0612eebaa9022f6b8957a71c1bed0dd3dee6c9506b05522f24a7/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9b3d2984b7d18690a9a144d61722b9171d82aae3adcb2de0ef923caf/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ee26b2d94846d2cba157196f37f23e1d49e70c8affebad2163380e31/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4116f85c525db92ca37a35bae763362c008fdb6dbf125ba4d755ebff/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e2e30bccb149635d5c7b6894f68bc01a59c9ecca360589414180f0e8/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//398fa6e9b8b5291be26e3eaecff8d996d4bd95f10a54ae0ea1f47e04/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2ec73a818b3da62bcc5405e99d93f2a16642f7d2eede417303caad17/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8998124524712f5412da56306101f0b01e987bc1288f4f7265216b80/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//482ee0ec2e942a204da6ef6147a111ae7290c5c3ee55bcf76fb11aa8/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//413bea54e5c54244f94ebdde9604f9b5c9fb5f2a9b296f3b22acd0e9/000000_000000/0000/tree_18.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..709b87213 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,18 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//616546050af1e3b0eb22b520dbfc680762ec9d08375e703acec2dde3/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5c64562ef25eb9c53f02b027bb4976f21fc84ff63ee9bef91e5b0fd8/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2a8da2a27047a541db2d008514a1cd87dd8e9d64730b1c7aeef35f9f/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//716a16d2b7f0337d42d034aa525a7ce240d34e8dc3b67fa6fb481e60/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1aac5d8867e675b8efa47395e5963910605a4d0323c5964f076eb518/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//259d4364c66d760e430f27063d2f8f8a3de5bf499ff13b89d11c6099/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bf1202536e71aa153663b1122b933a34da39e428637ae65035f13b53/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e9cc1ec6d9d2d262b0951a7268c794f22975918afe407ce60f5d700a/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d092c4f748de5d81f9f3244ff5d71d4e7687208ae5caf088ca747054/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//000e03fff16711eb8f2493e94366efad62620d667d4bc51d98a28c55/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fae944714eb06ff937c10c200d23f9f91f58fc7d678a17f602dc6bfd/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6f9ba747775ee933d6257b10f46d4fbdac78117ef378bb21bef969c9/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//666bc935e9b80603020fad1e2834973583470c79c119535a6461eb21/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//23f04741200d3f9346e92e511556bfdb351af043b4f7c770dfd191e4/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0daaeb061809918bba522e4e5b47759df16dca6cb682f4cea361d844/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//db3d0faf100671da978eab8d81b0c436507aef99baa822e28b4a8c68/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ad409e1904c6b1580250b968f2b4b6e629f1a768d93222f54c055b57/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b00ad53c717c07702e8a138248befe0c5e40d5061c4d993cec5e71c4/000000_000000/0000/tree_17.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..eccdc8fda --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2681b9aa685a5baeb3be86380935a0fc404efd0a8ad6dcfa3b2da528/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..6309c10d3 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f034428baca69e6dbc291b8806bd87c4333e46de9a8b9965a2cecb1a/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ec7d010038f26e98b02b2ac89a714496a15d566b238dc4240e8b1ab2/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//88899ba181beeb539c3a9b8b3e0e3bb18b3cf22ebc2f96f8d07f81b6/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//18cf90a3dc83462524e2dc3f3e93fd194aa9a9d3049de229417b6afc/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9145f96610c23256591a48c8a8fc6227a9356d913115b05e00766d41/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3a79352f6d0d5599341f8ac7d959659ddaf66bb081c2e3a84581d8b2/000000_000000/0000/tree_5.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..1566d59e9 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fa17b3be755b2ae9029b50a7abc492869e6ae2c23a0e2a68d200fc00/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//047325159bca32b638ce0994f0ca3b18aeb6cd13a26165e05ab9e350/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//70baca21b7a45a34017238b213d342d72b65c0d85e1b7d2445f9e271/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..e314972e3 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c8bd09c0ebb065d25f9a371060f45aaf386edaa8786898ef94ae0cbc/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..91622deaf --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3dce18ca14e0041f7d7dad0a5480fc5688f9de1ecadeece8fbfcd454/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..3fc5abcae --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9d30a3b882dcc4f0e61fbfc6a02f211aefe4dbf7a1a6f3f37d57aa13/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..002a31205 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0e1256f1b52b34f510569c8a69f4f101c37c1d77a091c44f6570de70/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..bd21f7b5f --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e9ec3ac20fb2139e12f8d7c55972da01c3fcb174ddf650b611588d1d/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..641dd7ab9 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3e5d11e8531d27d2dc0c2724b334b5c5a175f8456e2313f6f4aaf857/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..452dab2ef --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d211e7d28c3ddc6948b1e0ab8738484354745c1278792e8541de456d/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..7490b163a --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//31d2bc5f85b1f071b33a4d2acbcc6126af8227d78521b446bd0e6c3c/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8.txt new file mode 100644 index 000000000..053752d7b --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8//624e5c84e387cdf26d69b11c239e29f2226d61a897fd0267033cfbfc/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..9ddc46556 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt @@ -0,0 +1,12 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//4c42dcb63988466e37522188fc60801106193e5564aefb47271fd1ae/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//e07c0ff788a447817b5e6506f4c7e19ad56c6b855491bc42a2341633/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//2e9b270bc8d1a5eaa862541e61ddf8d18ceb4d1aedf63ed4a682013a/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//5ec0effc8170fb09f1e18c14abe8a256e98f87f110e15675f1665583/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//611f3843fd36945b64bdca0690abec2c5ed4ba57b30699ef89db97a4/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//29847a5f68ea9124470ae32dc71ebe3f16b126391639a6465f681c57/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//b8290bce401814c2a714a1bdf127cb5acbdd903d1f3514ac4123634c/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//35d5b4bb0d96311cabb1f16527728aa1812eb0778073f434ef9f9a1c/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//90e8dce703721fd8a299b0f2b773b676ca8dc7cf505f368674884192/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//07ce4e52d6df1dc2a7f6ccc75dece4bb0e1712633865ff6831567909/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//0374e1e3bf4c132b34091d908dacef81006bf780837a646ce6385ce7/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//17b98ef941404e86cc8418317ad0fe4fe31d2ead1165b3d85ae573a1/000000_000000/0000/tree_11.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..a11e4913c --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt @@ -0,0 +1,14 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//2450ba3f5f3b1bb0d05bd024350a90b902a1337dcf2c564ec2f0f6f8/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//6ccdb9157f0cb6ae1c85dd3a2d9903c9933fcf32d513dcd0543311ae/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//df69c6b83da0c49a7ae48c4999e8dbb7aa3792e201eb6bccda8bc381/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//09978d330bdd67985556ad74c5ee3458dd9aa7068278475bef009d5b/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//c6aede850402a01fc62dac28e03bcfbc501dc4ff8e47e94fd848b8c7/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//4978294ef2509bf3fd27f65482da82a549911475df564ffb0b7d597f/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//b082368348aea15bee7808518e99a104f79ca5f395e3cd65862e1091/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//8b3178834f40dd75e192427f810ddea095425364f35a32193ab016b3/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//b34b76ba10c89a93db0d7628b06aa2cc9927a9ab1cd66ae7bc8d22b4/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//d927efb7834a86ff5cb08cf206bc54738192117340641ed41238048a/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//d86f21d70fd2e159dcfa4be80a948f03bfcb620b63693bea5ec6c454/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//9c9e4fbfc6bfb794e58221b5f27458107a791413dd17d56450289702/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//a778e684bfdb27bb2b0f6e6057a087b01710ff8688c419239fbcc6e2/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//5b68ff076a2f03e9917168b6a6fc451baa7bec9374174ac98922a8e5/000000_000000/0000/tree_13.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..04135cbfb --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt @@ -0,0 +1,10 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//b4eab6c274e02f5365edc7f53d043ac74dd249fee99e9fc885166d3f/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//81c0244d16d4856931d3f6a36c55763b67c7b59d17f9ddbb5f8f3694/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//ba987bb18ff44e8e3dc18214ffdb5521ccfdc06b89364fd94d79f146/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//6cab6ecb857767da70a15d7c11d4464b755a4754a6f7cb60f153c26d/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//346689b260261657ddee06f1cccdbe527992360072e139fdbfb05096/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//648bbfc0ec099da6b53b519a9a74e4cb13cb8b03d3129caab10eb254/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//ffc593398e8d0b48521f4607fa2804cbde4c584685182c1ca65aead4/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//2c1549438a588fab3a8c332f0fc115d04d84d231b42c388a3ba8a740/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//e9981395efcd3f03fb3628230d1f71722685ac1c8f8b0e120fea37fd/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//d6c13036739a05f9b3d778bb5ec5455d4dc4651a81deeeed0bb398c1/000000_000000/0000/tree_9.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..886fe38d9 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt @@ -0,0 +1,14 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//12b9beea850a250a3aa64c9ffc71d1d85277b83281798d2dfa514e6e/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//4f55861ed2859af734bbf44b1b06f4199db22a07f7effdc9c0ecfba2/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//fe5b7c792f11190265e6c17050307fbcfbc204c5ec1b7eaf9ed67336/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//439022a21e3b00af56940f46a7ae737e932a53c372578e590c24ea6d/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//1e583f0036c16a461489e9faf9ccc5467df94fea0c3edd0eede28722/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//598fb3d6043eec1bd7edfca78ff242a83acb4b0cd45d59c224d053b8/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//3dd77388a748475169a0d43c8f16619427fecb3fb178ef61f0b64893/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//18dd56370d88bdc5eb6a3d2b6ca89f5bca0b6815ae3f82ca9b878ff1/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//d73102052dcd6db27970052869e3a4825435acae9722ab8e41fe88ae/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//a2f0a3de1d8a9d93fd5306186a553066cf365e3f2ae1c51fbaef7521/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//4db88d39e721f3b92c40bd19fb46fad02bf1fab6f9292b9d36fde2bf/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//d3a4761bad9a01b0eaf63a2a72829a6a7fc705ecf731b473de05bdb8/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//408dee82d741728be111281acb9203ca660ca4e19a78eb791b1ad4c6/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//4db4ed8f5029c12f0bfa56cb25c98f5a690258c474c79ec3acbb83cd/000000_000000/0000/tree_13.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/SingleElectron.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/SingleElectron.txt new file mode 100644 index 000000000..7fdb07c03 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/SingleElectron.txt @@ -0,0 +1,50 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//5724318fae33757ecd2dec2d94e28fb938a40638fa7ddf6bc0e61fc8/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//f30c7c05a5cd88af004aa87eabdc24e6d09e285a6472e0c71b66723c/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//326ff5dccd911ef3922ef9c1362f16f47b4bddbaa075877a1c9f8800/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//2c7adea9b23e63c988d2d33ed4f2f59458cfafadc7864c8e7dc9730f/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//78ac4a2aeced59c646a8b929adda6680dcbd288e0a372de38ca91ff2/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//bc06063a3e48b413c0588a693562dcb4a392fc2f912ea8c2144f3f22/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//17e2681089c2c349285a5bdc81ac63702174692adc79f5e2d3bfabc4/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//7c0e3d0798e8cef7339d6046450849adc29ec26f7a82215b53402b17/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//eedc74f4189e460612051e14c734404cacf2f96c006fa606cbf130d7/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//39948cf4890e78d56307b416059fe6a953f758f2caee029a0cfd3abf/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//120f5e7fc46a3f8d42ff8b897c25df457bf5cce32e404f55466a1acb/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//98dff2fb428e45996f6c9ccf582be5be5625cb1982567ac9d45961c8/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//2d292777a5ae3d6513f7bda28fe9dba38f9d44c3f531a70c9719df11/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//9cc0765ede2ec6be03ca29550f1c2b0101170d3497a6006e8617f192/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//de31107aebdbeedf17d20d4058c766a770d56f05d03fa8f4b4ed37e6/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//c8a2444c2cc9e8a8fca4861813c176e2f21dbf88e56e8f649c034b74/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//29163ff56d45a4e3378fcd2c93a4b0fb2f49d0152594099670432a99/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//b64b13ec4b04090f6463bda1ecedffab82a45e9e21bf23fa3942fc63/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//54d17e198e07b41bd905004b8df280c62d6b7c2c7c239ce95f8df0b5/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//9c6a37636a522fff5e6e191a9d6acf3d3471e3374713b1ca701af707/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//85b3310ad86c17a345214c83d9eaff25d0241551151076bad184774d/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//ed815ed98949dcd483bb1c32b29595d95795280ba83af6efd964a959/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//0b4972d56b5a56aa5f71a53c14aa376ccf1981285ececc771136ee9a/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//d70913c9b589df3be455f16c7cc0c8160873be2d1b792d206ece4128/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//47cbae72e24eb4d5a5db52efa01e8a81cf18c928fd5c565d6d7eb5e1/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//a50be7c79339daf512fec3b0c820be1ff6949ca92bae6d652544ac8c/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//653e73d87ac8d2c959f0d10516157da0a31fec24cd1ae24a7ba680ce/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//1c845d2b9156ff2ef49186ef003ea3a5f1b699766ba4e4359c372af8/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//777ecf7875fd9986984e945dedd628b94936d083033cd9390b75feff/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//94ede4ffdd005c6882e1a671b630c7a284a49cbac4b7b5e1676d8868/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//738eecdba69f5cbfcd29c41b2aafe0a2ad0025c6acb797beaff692b0/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//1aa28abec8608d640fcbdd316f7c3939c95fd2a62665233c92162729/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//44e094104229f6a2fe04f9ad31776c8f040d05af8c91bdd147a037e6/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//8f3ee2a44fc12c047fab978e4ed7ed77ea83e6ffe61328e050d0ae77/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//e0ea735d929b209e16cc9523003b6bbbf7652e30b83cd21ac5deebd9/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//2f8186f241bbb5bbee2b831986ab11414207009c160b5ca70535b909/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//75c3055d47b1ae9190c6971bebaced9cd47eaefcd3636a89243afac7/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//6c98aca957a3f51b9f59c34980b2d9e851cbc54a8d0e9d0c435b866c/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//47d1c2144b0ab7e84507f67d333367bc19f60af40acac8e345e444ef/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//c04556b54b20d8650f5f03a0441c0d1195045f93efb1696b6d9d591f/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//e7c5ed1013c8d976ee73e4517edf7b60da1d5eaf3c51fd4ecb5be226/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//2d93e9e8f16928c732adeb1c4b6c30f62008a6325d8f1daaad7115ba/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//957b4b4593e5aaa922049425b68abba0369e0737d608886071258ca0/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//490149c73be81fce9c5e7ae9a8f8f315042549f90605fc5a37c0b776/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//ace8cf3769866bb235008f29b87d92c60df639472e9ed9da6771bfbd/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//81cb8140a0fdaccd057b14d7d1a9ae2f94af9184d88ba71430c4ee59/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//69dadc0ce263999e09a5857c00bcbbad0480d1415c42f9859464ceff/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//3f9217b4d63164d1f2f612fc671fdb6e658dc324cc1c880c730160d9/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//a560e8163a3ae9e1ebcbf876a5c0d6196f7bbf086d4a171b7f9f3be9/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleElectron//e31921fe89eda4767d1280c1d1e26b0d33bad1cf20a779a821a792ec/000000_000000/0000/tree_49.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/SingleMuon.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/SingleMuon.txt new file mode 100644 index 000000000..33836e251 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/SingleMuon.txt @@ -0,0 +1,61 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//2b1f15993bddbadb9c07b0e6f668c7726d39ad64298066594a92ccce/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//6b6959d8794a20ae47b85b97aa2918c2e6aceacef8fe04191c1949db/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//c952f16fa6ba2e019fb5a7ce51ecf9c433a812ab7b219c11a97a3eec/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//408692a47d51c23f6f2543503a491a91fc1ba42c32854c529a4497bf/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//fc25245d8b46dc76ac9f2fc6aa30479b8b52c6775f93de804f549ed2/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//a6a843d13757088f476770a5cf733c7a406703e05c7b0d48579734c6/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//90dbe353b1cb1c463f45833bc0efbb8beba6bb478d0950eb7610549b/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//3334d1d01c79b1c2a55eeddf9e63dec6b9f15eda61e57639a4897801/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//99962a7325241895d3bd376017231b40a24da30c5aa9bd983276a093/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//88a6b8b2655254a31a392ce87881bfcfbbbc86f7034e6fa3402f62e7/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//ed5b4bc6ccfd57922800e4e6e52017853c16bb818d0ecff196e43600/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//965d6c8bcf12c196f86cc5770cc37b4a73d5d31f906374186d616e9a/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//31ffd2ff259062c42b37ee9a2ee417a82c065df605fef1acf0da40ae/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//8a5251801c6876771ba6df4d651341a0fad6f8d8d00c146087e08475/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//44fd8b81b6fb3fed3f27d197c8b2a395386e559a0ec51ce4c83769aa/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//cffb03bee60673cb52f41263e026f4968b5244f92e64e03ec1936c9b/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//d8ed3c210e69df15bb8a4e241e13630c830614731b2cd51f1a443bf8/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//6c42d9a808899393495f2b06f17a5fd81cf61a924757fec6b8969bb6/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//a0864c2f7f038162d283ede0053c7ffb140fa1674fb630ca65fbd66b/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//0ae2441b6aea5e76b106d1015d2ada4760184e25aede1728ea4df2b3/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//5956eb543dc9bee12339bc259ca0683e1e0e95a96979c40340692331/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//a83de22d4172219d0225095b09eed2c6d1db73719be83aea69543053/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//fdbdd6e6a591d1d71958c1750487b0bf13a4b6784d9a206cab8184d4/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//0a7ffee2982883b084e0a4200c3c05ae446e6fb3722d5c93c75a4a25/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//e6481ebdbdbd9ccc9a45267f8a54e5ce60c9799763317facafe9e91f/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//f8aaa3b965da7be3b8414535aaa938c15dd923a1a7511153888cd521/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//d655aed25d8423ab96ab1230d68f70ad8872f82bf4863e661e35717c/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//e1cc82661e0d7eb8101296541f574bee59a548e95d9cb9b90ece6ffc/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//1b43dbe59a4f144cb2fdc0e500ee279513103dd453bc72a56266a8d1/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//537e701fa9bc017c0582e2ba9c82d9390862bfa8e36b576021544f3f/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//c4b88f6137cb8eee9f37b8a7e54641e7b062d844eafdb90f56aebd62/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//8eb0d4f894dcc1ca680ba65091c7eda6aa5f13e6f0d1d67fe5ad6a7c/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//28cfa05280fdc61c53234bbb3b6f82ae575584caaa63e470f5995208/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//654a68dcf314775c31e709dff8cecaee22d99e786cb3e7ab8b9d11da/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//88587b1cae37a61eafe6316da5a95346c8d5467a8fe466e7ac893324/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//2f1bff9fd7827fb7e48231786f3fa2c94d9e9b5309a2c12170d33257/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//347639237a0503b58dd79f24c1b8967406956b93e7ad9fa5769ad097/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//1dae9eefc9b55a29488b6ff0a51a59f83a4896ac1fee1e338960cfb3/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//96828fd8808db38b96ddbdf6452d06e4d84ce7267ce2ad44245c6fa9/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//6a84eb6fcfa6ddffef331111e53306c8399876ee28256bd07e098a86/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//4058cf5c80acc4d9daf70e848786199cefd83d7c59aeafd8b90d1ec4/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//d2c3566d8fdbe95936c5108227835961c750f63ef795771a21627599/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//a2c93fad38546fa8a91d138ae8614d9c838e5eb6367d41ea79ea9135/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//adc0419a08ccc0d5b125b18eb76c81356fc534062980299474d425f2/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//8beb69deee8b111076a257eb7aa7cd51f92bab3f6b910c18a557a3d3/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//d8834e6f5238c978dc04f8e075c6d7595e298f84deaf502398993daa/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//4627d8ce0daa77cd515747dfedaf60cda0c9a24e6862b33c71bb45fa/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//7a3f47552d78dce37c7285dbb567788d1a64329e2e5b8928b07a15bb/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//6d00f01cfa211ddb7bf47342a8042a0da9c6a8ca6169cdad6c1cf1ef/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//9b1f2b3bf6b95abf90f436b401d212fb4380ab6e639db31a87869234/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//dc1ffc40700006c682a4928298c8653a61fe684ac2a6d44c7b8dcf17/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//b9040b99f235cfb1811c9e30232ea4d50014aa0f4396acb48fcb949d/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//1fc4f2f1ebdc19e0155fc3f8f995a6ebc78765429f5b8a0d8518c8ab/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//5827a6b904dcebb5c60a783e9a0f6c6918d01c98eb2bb49a74e827ed/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//0f7ff112305ce196bda9d8a964eea6974dc5434b3be11f5a876a9f91/000000_000000/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//f42bd6d53f63d4c144fe8acff73a78ae2d56cccac8e8ef2e51998db7/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//38f3b8295e5077ac62c599b9fcbe1c11cadfdd8e9f1c86c262da2e52/000000_000000/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//1c0fa075fbd15f64c2d43dd19e48bb9b8f389d33545513394c34f597/000000_000000/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//ab6121d904c8e5de746a5119cb98bbf5c175a38b7d76e4216c429fba/000000_000000/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//6ce90d267f06e1ba5b4678cc5aada5fbd2330b151fbf3bc6c42bd17a/000000_000000/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/SingleMuon//8159b6ac3ae24725bd4b0a9b71bedf4ae7b80ad05ddd7728feca84fa/000000_000000/0000/tree_60.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..accf5f2a1 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8.txt @@ -0,0 +1,60 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//fbbebd76f5b4d6b0863998b1381698b837d5111df8a50e6f467c3ab9/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//ea653e6312dbcb96e53ae9d3650e214e8e37bd8feae0523943ac5d44/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//9bb5207219f2be87638ea5f77359c562db30ed6fb86bb4f977483d79/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//51d5bd9398de9495b127e7d56b64bba4d024ef5a881d7de33cc64d86/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//244712f4fb22d758174324627178615e1b57194e66de7c5b2fe2ea4f/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//f3fced9d9e630f52a1577899af0f2dc60a2bb8eecfa85975ab61027c/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//4930f56e7ca901788a4f493c2163b58031ed82217925113776027a32/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//6282b76d78e27e73cd40e058029d7d8653f329ccb8ffbfcd3cc1995f/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//28e4c0dd03453da85afaf61e8f2f714ffd6993c193eda6854311d21a/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//6bb4b463ecae5799b9050eaa52e206ed758ddd0c4116bb024ec8f67a/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//f11f02d9714953c5c344d53387181bb33ca521b31444bdb41c250bd5/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//c1f0d7afb7b82da8d393124fe1c428998e8ac9f49265b6801f87e49c/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//b63f457ad8b042b57549766bc548a5f78f79423b474dbc6ac30a2727/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//29c5140438b4d3801147f42defa1d0ad9ea38dc3ad9d62474b47f7d0/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//cad6e45ae8903d5b0cd270848e3ffd70c5342c759abdadc2f56cffa6/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//8971a29d4c0bc4f39881cea7114f578950bb559aaf690f043d9d3c73/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//ff9c1161ea3828cc456b2965c6d0bc6fb3b4c0c7ce953d3914721ef5/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//351be145eb2fbb369d460f44458ff4d69c589b95991e035cc27f384c/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//fb5c806b1a5832633b25aeee0a5aa0145d6105da580530123ad1b726/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//39b5e020827e05051a9558a2d720a2ee944bb6a762e2be974fdf1943/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//ae85e8c563c9e0cddc58bc150ccae476ce34e1a7630a7cb178af0a51/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//ca71dc38e5c11acbd0bd19f7e1f92e117e3e7124bc41998d95d583b4/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//190d9b5ddac9f7d6361fdce47f606e08d9572fa8e96119a88d07e34a/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//73fb907cc24f809253f5205009a687bb9a53ebc1b93ebd02e10563bd/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//d42398ca99476a87079d03a03fdbb6989edbb50273c02ce26f5e2fa6/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//e4c4ed1353737bb9e9dafb71e52aee866a9f35c29c98eeefc36d94ab/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//694494c02bc7f2771df342751aa68889d3112efc8f7e10ec660af1d1/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//93c827a438083c29231b277c3b9b69837f3fb435db7481544e3814a4/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//020ce729a25f137d584f4677ebd3c0e9a6ba1531d19d2c08586abf3e/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//366251f094704777f8c7d535b68a9b3ac796301079811720c34bfd8b/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//8a0dc4a23644b4848b5b88e19d29e7e567da2a2cb7afc6b0f7264666/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//0288552f94dd3dc34af4b2a014b86408405dad47fedc1b32b48bbc72/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//b2e7bcf3cfe2330e0d2f33c4f7accffeb70f608b5fc06b8a10949656/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//5b82b75cc9202d0684e8b0036f606689b3164e6018f14e2c871f240b/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//c968bf188a64d2c0b191373112be096d0aca17197b23cb08e85d4584/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//e6d7e526567d9eebcdf420b656872ab05eb04917b8a12dbb55ae4e72/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//5e10fadf06b648c944a9ac0b72c1f38b149707757b19a4d1e51d1443/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//980dab1be389fe4fa4446dc3755d65f457258ffaa30582b31203d43d/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//34636e78dbd16971501b35c32b22220766d88cfe67a05b155587c73a/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//ebc6299b546b65f97ced7be191066ac37ed28a834a48069dc50d8c76/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//c6f45eeb84117b791a07e60a38d4a48495e1301f9fa0563daed260d3/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//eb7f6a3d4659fd80b8af3ab7bb02a15c53a8da7f5f85fd2d8d19479c/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//491bca9fe2ee34eb1b9b086f519dc9327cb8b60f2194eb375749a254/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//fe7e1cd636fb2756e4d86b76ceef156cabbad4d7b03ff7bdd6fc6ef8/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//b686329a98612ac85c2e279c95e928fe1aff7febd61012e0f81b8247/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//f16205ba20f6073c3518a4e4000f9aaf4b9f60b39729f04579f0f4c4/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//4649a9307648176a3084e4c9b83d41eee90caf3614da00f65b9b3b71/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//7aaf90f9d055c27c8f97091e536887ad090087ea4721b60db8a4303d/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//efd01eda72c9370f67a73cac6bf368917ebf598c68cb333d6a0a72e4/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//54f5abc791869e29858b92c9993724dfa1d4babe2697c97418d1bd33/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//164c8db9d38ec62a740dfcf728dba2089ec1f1f2d6dd7997e0c24a97/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//f128698ccf8462669f12a332af283dc46f527c6002983332473c5a64/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//8a149de732ce9e487779b3bf84d383125819e87b35b3ea585a13c018/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//fbb75e22f4b35fe8293186516091a269063be577572869cc9d89777a/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//93484264b335b1efcb8bcca935b3f3f723b9f52f5c9f2232783a2646/000000_000000/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//a588e7136381acdd59b59589f8604097708f4b24f6f5ad8fcbac36be/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//e4e6b3d86d9842bd7dedbde9ebab7ca8cc7e9e053f4078cab480d479/000000_000000/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//a0d4f9cb265a4f179d84942e49e8b487e8d580a36465320a735e61f2/000000_000000/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//61d4edb2bce60a50102131cad6e82ead701fb87af4a540a5dc28299d/000000_000000/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//393abec439d1b2ccd33dc5b8e3b75d4a7b77fb74dbb9b1097fc5c3ea/000000_000000/0000/tree_59.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..25e16a77d --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,18 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//09c9f9b1ec25789ecbf4e25e015adce25d4fe716c63711855fe8a82e/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6a9a5788a06b74c74bd452baf4b73fd26e89f5715dc08e5a81182521/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f4e61b848a3e1fb9875b4d5c5ed66e99729e164847d168b046446b3a/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//cf3137b0f66d27b8e8b1ae48a0b1c92572ef729cf43f4c2553e8ea9d/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9ca4e5f2f33c1cb25733a44cf657d7c24b387327f2e0dbfa4a0bbf42/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//47f555550b275c8dad14bd83070fc1293b4b39f0d96ba3edf30c10f7/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f4b056865789b17f9866b617b07c88fa2e842793750190ac99afda19/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2ced746d2efbceb1c44289fff767316e9bba048dfbe4bf6c6ccb2133/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d375e0f328a91f792378e73aad0a956195d3b7a9d75a3101fd0cf6fd/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//66028203e0376dd37d2c69924ee83d8758a9d6eaef67d169f3225954/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3af11577514c66775d3616c57be25d1609c4642a29193234f5791ce0/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6c1d1e7ee74106b788494281397bacbee36356e7f11b5fcc493aeff0/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//091b8c01149614bd0acb5187f9d4332b92abde32a2c79b423c6a04ff/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//36b95341d9cae0d879afa7a93690f00f4a0bb27a89bc48e0d6bd1a6e/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//064fc466283d92c14209c9bd43096eb2d2bc252780bf73c9654bfbba/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2e9b8303bfc83c44780741019e9a720d6932ed5dd9a5f092d66f7283/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ed1e304da60d93b65ff279e54c095e3b5b03e4e413f866ebed4932f9/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//21c3b66acefdb24d83c47368e101fbbb4b332ef4a96a35a02d5a6927/000000_000000/0000/tree_17.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..546520f31 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,42 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//64e98f1836bca4103c35644b4cf13f3a0ee1462a8d1afe3a13122c01/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2f011de77461fbd867297ea69376de5025e5dec87dd5e996a1a189d0/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d4128b6f2e3290305d0eab3dba5b86b3b60c6b9ae51b731665a50b86/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8995da4a735eb73b173545428ffbbb31c33b8dba2adb83e123507f5d/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4ed445c3cf16e54880b72d2186c8ca3b8fbb43ae1dd92330b7483719/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d09f7ec9d36d6b86fbf00a498e5c2aeeea3808e55507699fb7791c10/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//097d1b266fd59119a91ecd4c0ebbccaef10621b10c7416109a6cf9a9/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4f3c59c31516421df50f51d54426e801d29492f1f119af60e80304c4/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//dc0f73dc20427711e86e56994df25be6d222ff822f6faa45d1d5fc2e/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0649bc9dcb74821bbdb787f3dea17b8272eb840643eede2f25650c5a/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ad60192641d6935cf14d88bdf1fadf968adae092b3cf765e90281511/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//cb9dfbbb9918a4710f83486b6de98b047e709a44b729348edfcafd7e/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1022b52328e26bf102bdfa2df5bc380bd18ef3a2afd88b7259a2a6a9/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ce343b382665c8894472d9d51e3f7697791a80bad82c8adfa4c02e30/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7a94f929fa41af13d23ca6bb8d9e54f9da9ee0850e414637b223e331/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//38d6e64f5535c573256307173c69f649dad14bc2e4d22d83333d1afd/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d017a4ac35c3af7abd9c190ef8ed75c231f136d2a22e30d48508bfe8/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//dfe8aa168cd3279cc43299619497914acc2c780341e27f9381430a97/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2a253a146c64eaa20199757b4ce52b7a83c060ba5b1829f60ffa8bc4/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//040ad10c33511cecf2d6bca8b1a05cd99aab998b7e0b06d340e32972/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c2f8784ba78d20e00064c9cb1c8eb4955a2336d84ad100f91e213bd5/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c6c09c1330761b7ef5a08fe0260ba1c15efa508a8fe5c0189dd48a1f/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a52fc18dd628b8d0adbd97326f730098952b4913dfdb6c67c903040f/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//598bbc40a775ebf9e78b8f3605f01e23e5854fbcb909b611d6ef62f6/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0d7cbe0121d00418cf5c7b3588fe6e867537f2ed893cc2c8b5dd635e/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4f26d28507fd42f04c2d481db256aa311a092d441c1de6cdd92fbe8f/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8277a64a9592603f49318da3cde081aee9517180a711928d27b905bd/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5a015c28d99a3c869959dddf7bd0e7268c836d7396f2e32d4b5387ae/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0605b817bf5f8dc45c7f9883406985be13f95f9fd24b6bd4f5a1b10e/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f766572d56f6e2cf2f9d4c85248e77dfb22f91a57de501a81e9abbad/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ef156421424010325807b996abec8a5be62b4c71f9346388d485d9cc/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//cb381386246842f76150e495f423b6e287344a13a087c513c16af343/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//358fc996c194ca2c44afe150e3ec2ae957e1b41aeb24e0490fe3bebc/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2d2e3cd5c45fd581a9f8bba2ac639f4ef6994f972d0be730a112c0c5/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//93d9820b28747365e8118347e610f1f440d3133a27f703faedd266b7/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3dcd2b13e5ac4cd9916d4eb449ef83864894691e55402292bd5d2224/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1cd0c57779ba29b2545a8a5edcd4caec64a214d205170e8d1abd34c2/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1cb5a10c07df230f509a65dcaa0d1928851eb4d5f7870180ee1c84d5/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9b21fce21fa7e86084bea892acad9b15fb43151d55725e2c6e8687d6/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b6ab0c1e82f01667fb7c8b003905d3d187f10b99ebb4ac656702ab87/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f215f8cd792ad7184b91fba5fec5b01ca31f9333de48c6466e20aeba/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a5b75a869fb457b7bb0d52acef027efbe3988f3dd1ca5798aa4530ce/000000_000000/0000/tree_41.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..d0da5ef8f --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,29 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ecde45f0d00312a6b1c9761f1625f9bb87c24c22b8ec72394e835838/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d7654c6ac52eeab5dc6a4dade0f3c5b95da0dcfbe01dcf9c46d5db37/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//251fbbf62151ebdecff9e0f488215232386227a6e4d3a9baf43311ad/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7bcf5e27636b95c2c449f54d04a2b1e2950bf296e2a71aa1d4475152/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//83af48954ac8fe6a7499095097b2995a7bd427ff638415016beb6c6b/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d4dfa043c48aeb5b1c36f2ab17ac4d64e4a497fd9336365ee40f1bf1/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//072bb10b060acd59ada8826181c4ffc5dfb68b75faae8a1639eb1549/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//98d85905657e229624256bca1a75134dee806393a6f32f099e976c1c/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//868a85f1ed066b3d137e23f937f71e62102006057b458628687c3ffe/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//30c334595620d50c89e02573ddad71066340c7ed1f5e305ec0da116b/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7d224d19c2e5e60dc30b07a607dcf3f8bf01c8fd5f65d7bd4c81b862/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c5a8df4a4ac2c44906e802740ecbf21a2f2fb02256c71e55699406a2/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a8af946179634f89a928e06bca41c9a9c5786da4c81a4400d68d2fe4/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//35e43c7f4b44a749f96ae48e4d73db59e99c0bd91e89a784ed586131/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0dbf3db96d60e2d7ad240a9a804cd1bd02ad8f197b865108769ef14a/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//aecbe8b688edd02be5477cc0fcb8ddfb9726d28fdf276e7dda43ec1d/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//31df6d6a5480100cd7c95950708794438e5d3b0c3a01e19d5aa1c282/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e7ae1bbb30db5a1a7c07c1790ffe6d63a87bd77e1ebfb8ef49aecdf8/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3f95088c4b4a7a8798d4a0928e74a980076263eda37d2f104ca88203/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//337745e0f9fea927c1da3729ee1e1cc4656dfe0e5837ffb1b0a826cb/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//76c3bc163c07ac0bb0eedd40cba5a71ba844b80f6010c80c8c401e78/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//eda79d2dd185c3c12d0acf69975ecb75366f07c386a0e03aa6287195/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f2358b84d11ed76ba6bd2e52e28ec67e0977771ff08939fb817bfb8f/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8ad4c0ea73c3d9024de3c581f4a9a5f32c9abd4de609c29da975088f/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2c337be13dab62c4410ce12757f0579b4f3419628c2d114e445c3a09/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ed7a588cb35fd946e4cea93047c5d83e7dc2a25238fdbfe73fc4ea73/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7ccc0baeb05bafa46fc5164a5ba86fc2ffe8889bd8cec3750b682020/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//05ec11ab072607c5ee672cc948acdeaa4a8886477015ac9bf821f27b/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b8d1e1f151b36cee32b42d913b3a8ae356c36122ba389bccd666a9c9/000000_000000/0000/tree_28.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..06658b796 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,82 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ac71d8df1092b8cbf18b4dbe07557e197b34136ac1067163780e3401/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1f87b3683f0cee1c7d4b12737ade5cc8a98aa5c2ee7e95f5c31d336a/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c3e675a70973e3b17c9c04d8022c6ed5d2c495334c6d23cfa8993626/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c562bcc5636ce81ebcbcf2ae13fe55b2ee36d9ffb9f31a40830c1df9/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ceee35fdccda7045b70f70a023dabcf3e59f21fdce20a6c075f5b9a6/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2f787d03ff306b7d6035b2299fa5b2a9e8f253e3d9f7a562ca4a1f4f/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8ea783803b2eebb9d8c946977a6a53e32a782014069ae92803602078/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3b8b15cb4c50b9998bdf5661d13f6e16ff9bb9ba454dd4bfdb34842e/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a6d187cee6d6cb3db53f65595d640184e0b621265bf3ce67e1a3768f/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a1c50aaa1734ca022c9579fa74638f08cafbe936734af83b4f97e78d/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//cfad5b6192fa219bfdc315ae7ddca22b866e75e5a3a8020a50d5b768/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//86f68cafde1ad3414b6d641121eb507cda5fcb8a5018569c711a1360/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//cf74f7bef069c5fd277be1ee23dec2651b0cd84855c2e0ee72469e7d/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2650d64c12d5c90ee088f60cb456a3964ffc7b7e2438809d1acc761e/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7ecaad7a50427fbb4777405b9d7c1bfff8424fb28e32286d08b9d4ed/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//20a5f787cd49b0d27b6c643d17e9fedaa642c42ef86994afb43bfc4f/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f3593635bcbd919e07e68ee50efdb0b6d8bece1edd674d63824371b1/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d980ae249d12ae2404cddd4dec231cbb048963d114f235743cc9d15e/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//936db479d828308be8d2a97e37896f65244e8c0d6f029396fb748460/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4e550b57994708b49e1efbefbc1519f03dca74543a0a4179c497e854/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4f997baf2e62a78ac2e9d31c49b1b3c8b4c8fa948ba4c56d82bc3f42/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//03373a020f32397306bbbd349586b4b696417199693f1e51d9fdf094/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0ae1819a93c8850c052276629edffdbcc3cfce7097abbd9a037bc66b/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5dbf30b9c297acb84feee728742dc59064d742b1c281958ef894012a/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//adb0e8e478fb5b24d898d1a1c84fadb5e4db0724378f25cda2fe60de/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b0b267733239ea35d7a82d1c9a75babc86c5ad39cf0389a59c669ff4/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a5821634f83a227664f15cc1fe7c3d7ee5240fda0c9eefc4a295515c/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7398a61cb9fbc11ca47e6c89995e2e2b5655301c739b245fe60f1706/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//cb70599e821c2b8b0b9f3828f8e0bbeb82dd2788fcf79a57ef0be24d/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b5a217d88a17e37d4fe69a59cfc6b84a355269819322554a5211e413/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//22ce31bc319d3f84f290fc325610ba8b536faf740ff99b8b99492383/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4e46dbcaa78cc010aa93bb238ebd5047480d6ae61ffa1f38627af8c4/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//67bced2e3b9aa13b5fe6da49d6e821c060a2675431865c85d994ea09/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1b9b943826dd656ebc53676b7f8f1497c2f2836046950ef9b6af6373/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9e8577ce8730e410e329dd3f730eab42a43e237a5ae64e38e70a03ab/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1f602096fd7689c5f7a8b9059ae5756d7dff1eb524c0ba2f084ce2ce/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0de8b1c089c122e3262976173f6d816c50987a5ea045b5f13aa3251a/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//cba6f50fe5c9f3a3216ad9b228af0204a1bdfc55cf0e8ab2b7cc6e52/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//173349dc8e76266c0acd0ec51c6df2647e93973c73601e8b55bb07b8/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5ad7343d00021f33ffd8aa451ad09a1a6e5463f48271049349c164a7/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//960beefc0affcb9d44c64382b4c3c9dc81654fcf98ca0a010a13d0bc/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//63c049af20d11c383e851e53a0032e8008142975e178de24fc176375/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e488dfd35a96c5fb98d395775f7ed30138f6dfbcfb4369a73f5bf484/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//101cf18dd6c11386f1c95690b04c16d20c4ff4b0b06c857ff8ea7e2b/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3b5316bf68912846435f32c07a528d1ab9897d81ff2b2744081d90e0/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//850a4781491784987787a250275e77e06f8b20e73ccbc3d4d4ca78e9/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e8d7407706c82b3105f0cf6725b0b9dd7b39533653bacfd4393b52dd/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d2eca5e3f4580fd7d64365ceafec19f896d8879308a7797e2c38e875/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a89838d70e6841f437bac6018276fd9bd6a347a6b70f304e2659de95/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3dd29d8e4a75c40196ae57a1ec1603c1350cc2950681665d266e9d1a/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d2d04c05ed0045af7647047e51b934b67cbf62261a0e478d2a35bf94/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0d9de4bc41357a81369b27f748a92f727d3d1ca781456683e86a4c30/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//91258bc67c31574a45275ba9469e32d6a6becbdc9dac4e2676206ef9/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1e860c17e87919464c581847368017cbef2232709d7127fd7243259e/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//83dc3148b568b94d94d188132486d24ab7121ea10665b91524c23a0c/000000_000000/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0176dc4da0f09010c5a24b3cde79535f6d8791cb0f24c3553242f714/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//053952f049997a9902904aa1d675ad15219578279a50b557d841aed8/000000_000000/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b87879842da4d76fe3bee98330e0c13d0cc2589e1032e306e2a18644/000000_000000/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4fde8dccd0419d549e647d26498a16d206087c37ea3b392d49400937/000000_000000/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//efd7d8d67bb1edbab991c2bd67df5ccb169b2b502f01907953006ae7/000000_000000/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//58c1e8b4405d0af52d51068d321da919823f3926f734375c8a4727a6/000000_000000/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//65909830e78e607d5c8ca21743289cca97a39ddb9b72286da1b14562/000000_000000/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//04ce9b87ed107f6670ab3e3f526f32bc19ce04625b4f7616ad87b6f7/000000_000000/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//59904af21b10665967d0ccbf95f0dd6bb37ce299cf0c7302556a1795/000000_000000/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1af04a2936c24e0ff42c45306f5b8f42a481d13314b182410ca1e356/000000_000000/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//423f60884d9962af424b11adf73c7774be9062deaf4743905fdc98b9/000000_000000/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//297f2a12ca1d72d2a14a94a8f5461eb374d1b2d22ba86dd75cce7f66/000000_000000/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6acbdfe374b11bdf77f11c6a794537833199c2e8940b95bb58edd4f4/000000_000000/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//11a34e38753dd8a1c7b4e75c859e40fc9d091b48bd34a3cc82bbdd5f/000000_000000/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a51e33b5dbe7e3ff79ce236b3214d583359ea85b413aaecef48b4720/000000_000000/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d084490535aa2e79f6f9f88fc422eefa0b7e240933482999701a12a5/000000_000000/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9c53787909b4740208f26f1b558f97cd1fbbfe28c076f6a59e271ab5/000000_000000/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8683cc5348e81e4ded0b4da1a067f565e71f42f9828c7f03d5508114/000000_000000/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5c5632be37dc17d3d48ad7e2283a7a0fca7b028dd9614081a0f235ab/000000_000000/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//91c1b5c784c6bfb6ce6fde48a0235b4eef0bdbf0a9f61cbd30dc3d7e/000000_000000/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3d5f3a61fe1d5212b2aebb1837fd9ad8054481189a95deb6dc4915c8/000000_000000/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f4dc7ab19fab925c5111f7b1ab54cd2af86f37bfa3eb9c1ddf777707/000000_000000/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7056f2ea22ef01be78e2f97c1102f28ebbc786d35d3039f6a351e1b7/000000_000000/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fe3ee34643e7d991fefe62b29ecec97d103ff3a8a6c5fe30f47495c3/000000_000000/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ceca566c86ac9cdf34b45d9796b377a1c200501214482a06c4952204/000000_000000/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//52365dfd53510fd9bebbf59d546ec8e65baa11c7de82adf450c1f2be/000000_000000/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//023761488a18b0babb34b13f961c3dfd18e259396053912c57b03209/000000_000000/0000/tree_81.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..f24f8616c --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,7 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4d3f1dc10f00d5beccdb4682ca3ec63a292c0f91b52b4a834ff5658e/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b5b540079be1c4acf61308ca578b99b37ce572618dfa1a92c4309833/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d7a1041329cf0224eeb03669e2c28d79ad721965e74eb84b1073e679/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2ef48ddd3f96ce7475e7ae80b9e1b1396c647a31ee698f2035e2f5fd/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//073d2dac4a89366a13659e3609fa0569533e4a8ec90e85098a33e5b9/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//02ffb0fe590954b616ec616b78a3650592428735c27730c5034f0fcb/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ce7afb34fbc61ebfabf647d73ad40e5c335a971c6f51e7d053faf83a/000000_000000/0000/tree_6.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..7d74ee4cb --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,35 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2539ec2a439088927c332ed4a76bf953fca1e6fb04051e687804e6c4/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6fedd0fbd996dec83c87881fc6da59c15eb38071a12b45aacbc0955e/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//357bec2741cd39bc5683d57ecb106a0ef0faad66f1ce70a3409857ea/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5d8a415e606cec22f8ef1a4849a567a5699da6d324c6a07cf3cda8ab/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6f7fd9b93df9b55970aa3b5d8cc7ad632a6655c634f0ab0222e857f3/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7ea3fc8573b17b42d12f69353c00c0575362b00aaa11276881c0d038/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//31ce376c94dd67a4d695c455e4ab54024986272399b4104bf250373c/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4bc1489cd515ccfc6d2595dc39e16d37d2cd64909c837a7a05eb5d2a/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f39bbaab004a51685b5deb9aa32089a0818b13a4b97e622ee02d2189/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//79dbfcaedf830c550f4950e44f2cd29185a7d9eb17b33feb36f47dde/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7a8a23a315c67f82a8d1bd9c841105fc30c03fd221597ccd399db9f0/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9ae0ca014429c0aa8f30a0491f162deda69ecf1d00a6ec2e3719912d/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b9c6b96099684b7548bf9e0d1b45281cb3938ed00b959d2b2f77de4a/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e5a099ee24974858f7da831cf5a9f6e4079e857b7f7574cdf3268fd5/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//df9e5e1cb1904fe804e7c3f0b78e62b4aeae420e4c33aeac33df9220/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//41507aaccd85c61e3e232eab3b2b6e1873dcc2ee77bda4f613e05f2c/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//28dc5f2bc8472a6ab0cacbc4e26b182b67c9369f61471ab46a9ba144/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6add3a3b135045349785f3d36f2f47b58c867b0a48ac016fae283ec3/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e61de20b709ecf8c5bc08660aa245bc501caad4444b0aaaf566c37fe/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ab11c2208356aa62f3ad43ff1caaa09c1ab27973fa8d8ab9122001cd/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5a363b36f8aebd219d5e69dc3d95d28824d80a04a6f9ce17e570a70e/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3fc24db47b6bf9f9171590ee4dbcdabb6426f61a0ea40945fbd28ccd/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9ac7284f0f784797aa9f4183e576cb1f73bc890516a93bcde895dd36/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3f6a6e8670d255a543c4f4d685e5e78330d6236d4c124254d61b9340/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//305d6bbdfb88f473db904fe6066bde395d3740550b3c63bd8e8db614/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ea485e276f22f474eea726dba3c772c6e4fcf85409fe78cc6d7baf7c/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//27bf5ebea8f88e64b60037ff014a9240ba9d359d4d98503ef37f3946/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//58a85151db21f0ea47a7af8d3ee2fa6e92cdd12902166ec9b51baf43/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//65925284e1201ffd821653d4d6561fbfe93f76ea32c32baad1247d60/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6e0e90052eee21c56a931bfb32cba3a3a8d5155b72eebbfa06e6eb00/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bc486b73549c1ea525022d8990673305350c21d3dc1a3b6dda4f4b6e/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b3fdb91a2da51c2f60141bcb272207c0874e9a0863a89e77b5dce827/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//56fe54f48e0c1eff65b1139c694a253c5857d5ceccfc49eeae5320b1/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//895307887b9028f0604cbd5ee8a39d7edad86fa2386af7c93e48023d/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//aef8f733267c394939141502eb25dda41e22a589dbfaa772a38e66d5/000000_000000/0000/tree_34.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..1f8ca3418 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,52 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1ecd830dd2cc1ff8b3c8735e4fa5afd56e583e3da22b5ec2c19b4b9e/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8320f0404d1e325377c8d91c87d3d92e6dad96ec5dc938898905729e/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c66e52479689b1532274a3b476b2c39c51e251167fcc28ab9419e903/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7a0ae77f20c9f9f04806c8b5ac1ff84bea331a4b2ecf0a914fc3bf65/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//168e7615df4167094bf2c7a044d645d2ba333b729b7ef1e4129b451c/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d4fc1ca92ee3f15e607380ed68d1a708cb7f169acf797a3e91e84d90/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//40da14d05630446f18401fe0b0244a9cc8054d8f3fcecc9ae33f123d/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//56df9fb2342913f10135e6ca13faa2356899b1c1b6feadd5c5090678/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//001b56d0c82c9ce2280a864feb5eeaf1bd1dc2b5269de3a9b6839d7e/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//70f0a55ad5baf2fc75e83a35fcbc1fd163e890ec2898bd5629904439/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a7676623db06af88f84315b7e8b5fd7f2f9f5b5ff9fefd0d3baac697/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//748b7a7b54348887d54743fc01cb6573fa51f4ff4512486257d9dfba/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7c3b332def5377208fb0c4a72ee6a13694fef617545ecc8accc0cd26/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a7404ebc98f96b659f580d5426b1e62ad5f0f86061c089fd3a6ebfab/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c4be83495daf1857619682c16d9a561fa1d65d3b58c7113cc8ca769c/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e31bf28f86f1f80d9ef0ca41bb212a58205f38430ce9bf9201212dbb/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6fed57d6814d3691164b3dafe5a25ef88fd97fd1dd951997fd520a5f/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e998bbc129902bf36707f20b29aaa9f7b94685eef213ac18776d3312/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0098c31ba47b678e6d0bc0b8f70e498cfa82b9c21a6775fca7838708/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//402caf4dba90db51e6eead750670036714f90629b390077d9596e435/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1c51224d705888670db05e88f88bf7fbff4294be5d51fff4352c291b/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4e32bf7c039935e616248a5d62c8a1f59ad3d8cbe1c6d9d66a54de75/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//107ddf1d0beb88ba0fc7a0458a1a77b21e02af11904126b429d96281/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2d02995d41a69e0736d08699f8feb7d12904c75ed6986f3a0251d3dc/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//96c4d144db80e758bb5252e2cca57a2e677ff7fd4e7bdeaeb0516209/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//03cf63e99f4f6f60b8936f0e388df51a850de69e8f1a441b5a6f2577/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e54b74c8dd1a769ec7e738b61715788ecf7de4b6c95f919c20bac640/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//888e7585a63d7fa9ad2e34d2a81a3ddf3b6fdafa1a73f5bf7231fabc/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bd6424630a111cb59d930eb374e5be18a406f82f59ccf0e4032d78a2/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8460ac6651d6c974aca401f4c7ae784558f9857cbdba9d21c19b149c/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//989894e49b4f35aa4b2bdb5189521d048c1d66871e5af7496da8b1eb/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c386d859ec27bef4714252f0cf5039630bc591ce36b2603362e25550/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bcf1fad5db4f5628bc5bb67a5a56f4f37ab15a084b5cd9b4630af933/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5e99ef57ed279b2733025c545ab7ef6ecdddab588edc1655e6db83fd/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//938b43fa51e41ef68d543497f03c485cbebfbe36e7222abaa581a28d/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//af03071682cfef1b2bc55109a0c2444cf742760bcbe87b8050179970/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//16bd74a8885014f7cfbb6af15e6fb2909934bbcdc633ff33cb459b0e/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e9e920f8482fd9563e60e3c6c53730796948aca62822a1080030045f/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4d936610c473d48979d5e23364189f6e66588cd2e21e53098fa0b671/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//abfc8f584648b80aed26ad18b6a2f87d03d3eb96885e7b5b2e036539/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8af221469324c10938ebca786c5b945cf23c3773375232b7ab9f8a83/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f3cdc3e66065dc02bcd3ba704b3b78bc935aa906f372a7c7322ca1c9/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//64065c9222966c4516fb1f1efdf58385d28274866cf8288252a234fa/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//76a0309b543c19e3ce15f8b312774918d6acc8f7dc16aa38c25d82c4/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7d26b75eb01cf7eafa31477c3934324056430a97f3d42d916a3d2f64/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b74ec963ad839d2f497aef7b34ccc96bc3c5a2009aa2905db1db12ce/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a4d584e3bff99885d5c2f2611ef25a9097fee8a3ef1a68e1c837eb39/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fc377ba69d7d4e07bcd5469445b3ae609adf1619e01b097079163c8c/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5d4ad9f84d9c81f0011fd6defdd09bcb2a8d2a018804c5e437a0119e/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fd7dc190a7ebbe05fce80a61ef5c3c4fc51538b19582257ceb976c96/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e2364e0fcd843b7e1af95d29199685c574cd631304aebe64e82a5db2/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//eec8e81ce631eca0d002dda775134d9d05c41c177a69e73f84ccfd5c/000000_000000/0000/tree_51.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..090762083 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,13 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1bbb2c69695354b2c823f8de1e146f783287f6c0447f41e767c9628b/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d43444ba940597a482c683794255bc50ca5bf160c4446462382ce9b8/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a9f7fa050633f9cd64b2fc51d7f373bc93f592f32d8a98226f7c8641/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0384b16c0fde112aee7bcf7be7312671aff0f3b8b1728db85ba5ae78/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e1491d6adf10d210932ab6f25fed780746c95995813d19cb2e53e514/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bf5419af7f02a13cf545650df17020ed481548d5451a5d8419722d33/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6ded3733d69869043499eb3ce64121e2fcf9b6fe426186aec5df086e/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2a565b48df58fc5be24e4cc83a4f25822388846613497ce1d70f7fd2/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//993b3bfb2b0999df6d8826081a56b9defa21b4cbfe62dab62d8ac27c/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ea30ea39d19a1a440686bd72889c158df0d5f99454b681ca02986804/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a0c2da2e72af3faac84f875c973d78ec290de350061f9d7f78e7c552/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//54822594714a413d30fcc15952a5c97601922168f033d92a708f2347/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//70c5c93ff687eb040366ffbacc2a4ba32121e8542d9f061aedfba982/000000_000000/0000/tree_12.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..f4937bf9c --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,33 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e4fa5dac3df2ab64bbdeedd2ccee8c3281ea2c6c525dd11adb92e149/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a9ec5134121eae6c0369f710d9e1e6f0f8945ce9d1691796f7fa8423/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7d4f747842060f49aeed75c679f918396e1359e322f74e5eeb42ecc0/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5bf15814f3239e220e7bef929a5a8523d4df9fc900dfaaf4ad8d2f47/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4aa3530c28e6e5e581e23a0ff41c78365f15fa0452156f84fdc941ad/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a944acb2c86233402d5bd3f6b0607ae7feb288fe09f3fb35e2104bbc/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//797d3ce4ba2bffe1c87e5a03ebc95918019fc6bbab154a63a713a35b/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0e1bc3c9b411aaf41c506e385d7b334de172dcf8b54fcda0e2aa19d9/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//167e978656a201ad1f03774e45be65910af8ef24e555687f59036fff/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//59bd0bab7b41dc3f69229bbb5c0437abc543a976bcb754307d8c0492/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bcee47b1349f4020e466f7a5468ca7319732343cde4a7e1721d2d78a/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//79a5454285bffe2877d89958577dcea1fec81dac0be4fe4e4f5e9aa7/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3156626266299d109484920ec3354bafe52f0433421017b7b0297c03/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//083b3be2f01741908f7675947866b33f0955ab23d5080294bbb09525/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6a7f45464f435de8083655f0399bd43b61f314555b7414b83ade3293/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//cf45290a20c20249509fe1a6636b74929c55b38fd861a8daaa516416/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5b058c0ff844b2483cf19c240db1cd580f6d3e903b9776dc4833967d/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6a4553cbe784e011ead6ec9d0533338f4d434ecfc0405091d4cca27f/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//588e90f1e6cf65eb5910066e8a26eeafed87f791705aa337ef84ba99/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//098d70a4b290f34c9f559f27613bfe3af3803e44d5f5262e32e58b1f/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5d4086814e6c72c0119e6df0b87d847b91f01e279577de7db4144586/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3aa552d3d2cec8ecbf9105ebf341a88d76df93f4cead6c789f67a087/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//87fab1e1a89b477f0c34d5edabf972339d9f3b12b6586fa0e34c3226/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//451ba6af5d7e746afc8482c7cafd6d138fdd583836c7e12af5da99ef/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f207e12b55a25dc5404d6f7748e47335a2bfb70809ed0f1ae00c0d02/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ec141aba35222bf69fbec947afb9efbc3f86b3d729676f076a81253b/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9eab81c392301385a70e531f19b751b8daeb8408e4d01a2bf0c5c9b4/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a468aeb74b3d61e0a0ba7eb83a8905a0aac46d4fd25da899ce5331e3/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4f4015a4fba072d5a9f673162cc5b2d804be138a6fe0ab20a78c30f7/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//54b03d61b4089c4f9bbe7ac46a6fd3918ec1711a120dff11fc4c0084/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0dbac289905e810145e5c69602d31401a27bbc231b40357c2f67b93c/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2418d0e56719afae3c2ac2c61c06eefc15dedb3cd3164754f1b1736c/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f0ee1d49d38b072c714cea95dba704ae806ad3db28d532a361bce67a/000000_000000/0000/tree_32.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..a50d339c8 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,95 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//51006c2fbc96b8c3f0211e41df8c86c78e10aa90194b2252dd25accd/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d0f3705e7b60108f7e338010633ead8b38efcbd5b6d1f6d4480e9a81/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ff61ca92c7768656b38adf9e16f7b4892f0433e5d34868efc4d4d297/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//475bb9e0054bb21ea4ee45c68cd0f7be43758080fd5692d3e93c9b87/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//851c95e54b20fba6933fef03dcf0be77674c8317c4a91b4d22f0b99c/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//36973d4cb5d0e7657c24e882d6623b367d73f412a9d89096c527307c/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1535a4cd0185dee6d8f433d0410aa324ffd2dbbcc97edaf16a958a9f/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a6a0610a753a35b6108519bec07621e6414abccf07f94ebafee88e8b/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5c36a6d58010d8310e56d85ee23deb5105f0eccc4a45d9da6caa9ab7/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2111c91110149d771937366c1a13bfa33e37eb076310013a2b51b341/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3ca6567184e66ab40c1e57fb9222c6599213750c82ef7192f64c6922/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//71423ca46c861bb2576bf2f2a74f362a3e72fe91e2093c0495afe875/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f84db7c569bd33798ab8fa7ba979d58b1ccfd83ee330268bb640261f/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8c816bd9aecffc69cd396dd41988a20f01867797ffe2b083d8488d83/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//188ff2f13c6e1ff5452590fb59a6ecbd57b33aac3cf8aa91bfcdabb4/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e64f349456be5630d392713b7eeef989526f9f6226597d0a077e1094/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a704a985bb64975d4662b9641968dc37e38b312bc6b03ae57bbe787c/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1003450e61c0f235d2c1c06d1178919d1f0f5ceedc0f8988cd630455/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5f9c38a078a781728d9959fc3ff62ec8316ccaefb75f77ad397cedaa/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1af1a7fed99ba2ffa1b5c71345960bbcbe0bf489ab69f5a0e892a28f/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//21eb6acdf7156939031138566ee80bc118eeaadd96113930307220e7/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a47d3cc97a9af9555c8c2a090354b32610b21b376437e33cac964118/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c5cc73cd8e36dcd70036e0ff7a499d06510a08cbf0ef765c5d12a6a6/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//790fc8286cb1fbcec2d41a39b3cf5a251f3faadabd106fd5437f92e8/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f13f22de0df1f21bf43e4d8e410df1a64033598fa48e0ef0d30bf172/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//70ed34160177170a7425da698f51b879960e41dcf2fafb354937c6a7/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//def71a3c8cab05325232732fd311b8cba152a42120e27275eb66dcbb/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//67b2455a640bfa48d8b38bc114d8b622215a6e78446b4ce275fb2011/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7dfbb54a5619c4386e106a47e283e1fde4e4b97e7f23b9be16c5e0ff/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a13ebd2a578b0acf1cec75e4c808c659b7bdc32df23864e9a4a6a7ae/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//37d90cb596a1e1891015c6941537ef74fdcd86f9856bad71ea31b69c/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7c46c615edbd2763b633ef87378aabb8e4cf8bbbf005402c3a56a677/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//55b2f39bf26a50e8219ac6e177533419f5b772839c086b71f1423ba7/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b13631b63892f9a71d0b744d5a23bcecb1a471490be0710acb7a34bd/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0a70164356a9576ae8ec34e989d5d8dabc26c1c90a648c8e8805b577/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a32b8d60eb85d74783ee34153cf630efeb78a9dac34aab4573a3f5ba/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//24f39ce03eb107a4d7a3e6a7540c42f4811145a01369d06b61b205e8/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e47115e96142520544dd8668a10d4db438d16141da0c01e2d21e7b6e/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//027fb75765d603b379e7a1d13f306d18b66a5bc990f0ac52f6dc79f1/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//24b4b4a44ebf5e2c44db3f0ae3af617c1952c2b0fad24fdddf504aaf/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0f3457e059122b972aae0e13ef76f18b71d41f0ac037ae0397283185/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a594e26a97caa6f47c07dbe5bce78d3871917be66b5ab6c191446299/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//08c1155c8c993004ddb35ba7efcf8600c7c1a8edb9ade0137b9a1f63/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//efee402b81d44fe361b29dd04e6b79ec624b24ac066306046fb9ebe2/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//74b22a680ac99fe28059d9e2bfd7e279a728a9a0e9f1c11d63376d63/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f78a15b8ac9560b57b75a85b144f28eebdd9aba3f78a29eae685cfee/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8aa2edcb4ebaa4624ebed31e53fd7c4493eee1a71b2128d24cf9163b/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//48bcf8f5fb2d94e1157b6192d3a892f52a2838280605bd7a1fbe00a1/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0dacfeb2c1cc35db5c4d3feed60176b89e662ad480e0f0292ca256ad/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2db3b0cd635a19a2f2cde88f1166b6c026332a0881b425608bb07c08/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1b1e2ce3d88a5edba1f8132b4e749c1a9b7ced67dce342fcf9cb366a/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//102ab706eec96e35aabbb2316edddcd86ced3bcc342c9d946254c2d6/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//659616f63c00695570ae95fd5d33216193bae506284adf9b8844ac7d/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//233f83fdc41e049e5509430f1c7152696f67264ed58178237f4ccb7a/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f6ede40dda331fbfc150b3fed1216d1c205980bf4a7ca45ea7aa3f98/000000_000000/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fa12520b295c3909daa38c2a2f907a6651911306b8c9240b3e9188dd/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f973a078e406fb40430601adfc1038db6397b9296ab36981caae6f07/000000_000000/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7331a67a7e40be820bb9774d4d0cc7768bd284d98244ab51ae5dbba7/000000_000000/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a669da0a0635381ed1a17d8bf2df97f54f9020e491c46e9d89ae26ce/000000_000000/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ba14a96620142168eaa13082e7fd4d248f3aaadeff2888be26968157/000000_000000/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2a5bb6dca0cf79d04fa773e4c5db993eb6678d287e7a3c5876b73564/000000_000000/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//65bc45adb7183800c7e1f862036887ea67339ac376c76fce3cd1b757/000000_000000/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a9dc31240a8f142cdb544c3ff53b4fb19e71a5aa7465a4fce3992927/000000_000000/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4ff6acb201321beab88b4d4175169b3cdf549bfa350eefc3326bf2ea/000000_000000/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d5cc601c9d05efb809deaafa45888a6a3f00e04119044b8e4ce1f961/000000_000000/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f4216bfcb122db0594c136b9c121db12b3a23571ef24b92b4f9cec76/000000_000000/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2b61bb57142226f0d5064a15ac0f8218cce16f2d9f7f2b24ce5ee382/000000_000000/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//face069a012bb9efd3ddc99949656f6ec9c67f4775ea19daa00a5ff4/000000_000000/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//93bdbb27970e28a6d18b120244868a7e898ecf9d6ffb6251662bbb41/000000_000000/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e95f43803c45d02d4cb4709187640f121d204b0a6da0400aa80da7fe/000000_000000/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bdcab9c9d4f6cd01e781f053413ac239d95c7cfafa319ac0686bd86c/000000_000000/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5c52aedcae825e55397fd2867b15e74fd837f85fe04c298340517191/000000_000000/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//afdcbf6d7a91070dabfb234f791d4a1a41d4cce5fd930d5e7a6be5cc/000000_000000/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2ff2a1954d9dccd44cdf3a9beb58b78a58121fb06f50a1da52cb0cce/000000_000000/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0b15dc3c3723d377cd5fa74aa6c0dacec2413758073d35a92dc064cd/000000_000000/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7922feec415110c85e6be46f21265d494308436dae82da4fe7e52bd9/000000_000000/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bbb55125cfab909ca3653a578e50ec5dd6dc9ee326177124c5adb414/000000_000000/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7adcddf7504e11dc9dfc2de0e1ddb2cd80c576c21a291e5925d81df6/000000_000000/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4d6cc71a47d0d97de2f33c41d074c85b3daa38a88d3b9dc3572622fa/000000_000000/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8bd16d45f2325d2b665d8196b7109fe692bf09830e23fc48d601e243/000000_000000/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//414717b3d7a0a404ec96c17c19849eea319d59e69e61073116942b53/000000_000000/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e53e8630486fea1b32eb5f4a8f54a0986821c78e5f63513880e708bf/000000_000000/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d4c5af40157f0212b913db02971f6c94f0488f88029dee1375b96c81/000000_000000/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2d6a2df3955cea18a69ed895793f36340339331fb5674263dc621d54/000000_000000/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c198627c16d9f4e812c8a0690024fcbc90797c153c6dca184bc69fd4/000000_000000/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b825c68fb0e09a6b246ad6f2a9c5a6ef761ad7f26a4bcf8488b6e630/000000_000000/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//36b38d8b3cfdc38d81f67445729aef687f63dfb78b440e962e979e36/000000_000000/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0b7f9157bc8689970fbdcb77e18417f2c4494f474447dc238984efee/000000_000000/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//46193f4c7abc9ec780736b12ccd12b71747727adf0d1ba44e03cce26/000000_000000/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ae0b92852123c2b75ce06176625f72106c9bb0efeca72f7520c80220/000000_000000/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c6c3d56e9695d26873b7a34a6760e6ac8681aa46b2d5a2dcac8ac8a9/000000_000000/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0148c7aade9cf363e78bdb67edb681c183278af757a828bce185b946/000000_000000/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f9eb360161801017280a738ecce86e06db0ef52f7deb5ff96d66c984/000000_000000/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//24194ec27b42252e8a03456f906b514ce7a6defd79a49bf77195fb61/000000_000000/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//998b484937de1de7e9ab179e887dd437a440f598ffd2dfc1cd22e52b/000000_000000/0000/tree_94.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..4bb8d0e13 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,33 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d82133e03024e959461eb8f6a1eca7d760b743dabb56ab74e04ee68d/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8ce260660fa0c090208eeefcbafddfc8058ce6df97eb8700facbe4a4/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d2a03658e6efa1d284ce55f8aeb38efb8345d87a4376467b74d55c90/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ecebc569fe06d9c44932a9c9ad63e750337383b300d8d59b03a350dd/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1bf44617d084ee47d5c16f7c7f2772987e63540230433c5f06d0d7d1/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9fb86c86bce90763d00fd4025af422a40a7fb4fe4c72d86548642383/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9821abc9b56f0c3cf9366f2b7898582b05cd68b45bc875744488f5db/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//62306d3017be74bd303b2a73ad3805c78e4bc87370f567fcfcf10d9d/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//567a34765ee87823eec175b9f6d7cfdf97b7ad26ea6aa963f31e910f/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f3137c2673689e1cfc20bbdfb9e0cb21c21aa78c0dc7591d8dbb6736/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f06bce7e6ed2174ed79b90390407aea56fe9c44a1bbf4838d19d96b1/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f6209e57ad0ab03d97b145fa713e623e2e63ed3c2871358ae0a837e5/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d27d553139bdbe81455927b23ce34c2b88b56abacddba9d762d1448a/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b00491874e2c2914c60541476768aed7db6c27c9d3b20e34220d750d/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//effad0efd3675112b41839f7cf7515fe9d35ce1c74022a2cd301d67a/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//97a6e01920bb326e06fda37da727807821a7519516604ea7b8b827f7/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//59ab8579880db299fe727fa3a460daa3f238c417389e69c4c0ae90e8/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//efedc235de9ac7fe1ee61b547359292e2aab9e47fd1ce0be03f4b2d2/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//546052a5bca376f846879ff95e9a56c6516006c26b21ed021e4c168b/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//205e77912fb4080aaadaccabfe8130276f9d6b379c19107a1787afc3/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//dceb4082b9d16b1e9795926e2df5983d478843e3a83fcaf0713f899f/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ff99ebbc8aed8e20d97c86bc6f43c45f91379b3b8ed183377a48d241/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b45ea681012997d267030471761e7332d5fb7390b62ed2b0c52d0ad4/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//da0c490321f637586a4805d783b8e503648796028c5b5cbf48c32843/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9544d095168fe73911a04c824d64f18bca13d5c7a30a5ae3024f1f4f/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//88e256e5817eba80047ffead1345bcb1d91caf01d0b9279f581db8b6/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f1ca044ded3691d3a1f086cb3dc04c795c0d13c1354864a21e932b44/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//982b958793ad37e873d9d743976e814f188c4e96e45b5620a601daff/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bbede0297a0e62c0d122d7cf6c2532a63e243079d80c78046cbe1f05/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//552a4f8107449a1840bb657844ad92bce74956e4952a7500a3660d75/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a319a93f121e3dee3f6744c0acea14eea13d044c6b76cd810abedd8f/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fb19abfeb3782b1d367496b349814e5b353e7aba33c8aa1e1b82f148/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f88c18cf88fe955996945f22aa323b7a8f420ce3ee2bccb352c11e74/000000_000000/0000/tree_32.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..af3d2ac31 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//225c8e6ea5c0ee3db8ea40a5eb12ea8424d389c83bff008892ef14d5/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..c7cf63d97 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//cef67a3fd0d21dc2271cd267d9480147c97b2b468b92bf323e75be57/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//2ae16b8f81b3e517351fce58cfc8ad4287769be5ee3474656858c0fc/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//49f7e7647ae353656d2516f93c8949cfe3b4d6a506b7c583022063f7/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..ddb27b63a --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,14 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//e9d92c49f356c9a72876720a7926f2310be6f99a6e4059b43d1cfe22/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//ecd5e6999901697c0de276883f4d824c557ad81d40bfda03ea3b53e1/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//b9fc9640d0be8a0c3efd368cae2a48e24da6ad0d46ac36d085f0a54f/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//dea43ea2c06d3204db9e545324c319428e08170ff9949d607fb431c8/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//df485c15806be7dc7cecc8c50eaa66767757a77a1977060c7a26749a/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//b6c45a953bbb01da831fb9638ca9b98f8261112de82a926e6d47ebe1/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//c537732077afe6e0f07c6b1e6ca9ccc8fe5223f8a6b62fafb9914322/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//3eb0177efd1a2c7bac8dc3475160b86bcb2f53b7fe0d0a5e93a266ae/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//f8f5fd7b2b40ae9f5e5be9176cb27c43225fb728fca53c6bfdfd5ec0/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//6fec96e011f74654f1384e0099442ecacebbdafd9a8a2e610ff06318/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//90708ec3c677e5f3e1ebbbe4443a9e720c02d8b9fa507c4a2322ac8d/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//265939e759a8fced4e0fed773b1da80bc2c7a30e2b1ac8b165f0df93/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//74a281a45fb5bb7a85b42720b83acf1083e0d449452114098dc32887/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//ef8a7356ebe8cc2b3bf0ac83e1ada2f4115eb0f24ca4711fe67057a7/000000_000000/0000/tree_13.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..a521536bf --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//0f70b6dbded35ae58a1b209b018212bb06e268fbe8793e8d484650eb/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//ec2641deb77146a78a54484f540537c06e5b98d37f73f0c9a46795e3/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..422ae677c --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//55a91f7d6244a4e63dbeec59c01aa31ff8f23c512a8dc9e13ac0dca4/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//181169e7116446a890958c19f4e35cbe123f1a3fe27933e6eb44953d/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..8772e4402 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e471173a9be2b4f6c449de96d1e50c876079b2d086cf5ec92a776def/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..8bd7fef8c --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c54dc97f2c0faa14a38867302216288087588db070178ef12767b40b/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..33c019108 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//4e8005f4326c075069f5b458133fa6f786298b96830be365a65dc223/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//f8417ba1af52a455db4599c1c8bfb9e72e0ce8558168ab4b3eacb793/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//9bd49bdcc59248987241db7ca29acd506deb82506005301985b4e99f/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..b0686bd34 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//7c55d91cfc85048dd7c6b56c54faf858e7c268f213ae227f09c7ca14/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..6e1304419 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//408048f683c07374314968d97fbc13d013f1cd02bb5275969d6466a9/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..3f9f10515 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//609bea22206e8ccec6f0612ce138b794151bc5f3a4fb7f82a0693cd7/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt new file mode 100644 index 000000000..fbcf2087a --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//4c2a8f1bd57f1202183faac1aaeb646e04ef681b0b07563e0bb46c67/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt new file mode 100644 index 000000000..a2773a4c1 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph//512e8d5ca8ad272108fe99c3e9dc62c684df367b69752e3a7b6b9163/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt new file mode 100644 index 000000000..a1899bb25 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//3decad9701e7fddf8b3b5b067927b165d89c440e23e1531004212762/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt new file mode 100644 index 000000000..cdeb47e50 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph//6422939f0a25e2b80def279e5255ebe5c039d94d770487c967ef71f4/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt new file mode 100644 index 000000000..64c142443 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//99f1a77f931366a9574163aee569254eb036c340cbc90cf3d246f999/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt new file mode 100644 index 000000000..5985172f8 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//f243597d2e530166921c927f31a22e141f0eec8d975aec883719ceb2/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt new file mode 100644 index 000000000..32c732887 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//d3f7304e355c86cbce3cecdd2f7e9010d7647104c3c6da59892af209/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..7064287a3 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,7 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//8e6534fe7507bd6acab26e32568dd1b12b7a1657f6842c820152a551/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//deeb0d143b6a51c9108b1fbf07355f1effac57f22e442ae6c33db59d/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//4595c4bf4223760c111cb52acb6f042527c3c414de6d1fc4b4bfa540/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//79ac4c9a79a82b9a2114431af9991198e8d9c32e9c6ec0ca0af6a172/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//d5dce3d26b32fd0f06106edf7dccb0e80491167580f6dfb2dfbc5f3f/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//9a167eafafa8df23d9c230ddf6c2d3fa523f0ff0d13ecc5289b6366b/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//152b63e03bea541e72f4a8c1ebe6b514dd7634fe44d0b5d5091c9513/000000_000000/0000/tree_6.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZZTo4L_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZZTo4L_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..f013cc71e --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ZZTo4L_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo4L_13TeV_powheg_pythia8//3dbe79535cca3a35494548039defe5402a8342a1370a74c637a0089b/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..3dda7393b --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,5 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//74dbfcac49357dbec02efe2e2d423df80dcaa7c533b62dc481219c65/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//1224f584743a2f78320e5d8896d2ba4f86285265ecb80e1e99e8c91e/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//66e770c82e3ca99ebb378d8c94133988cb0d6bc4af6c485312c6a2f5/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//4654b8f48ef9eaf907167892c01298a08662fb7d29fcd093327eda68/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//da16d7be5aef4f02131f92c9d1fb09b86c29df5cebb7e3a83fab203b/000000_000000/0000/tree_4.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Wlv2016/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..8e7c92b39 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Wlv2016/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//7d3b9e9c4d10c6f41f516e7ddac82009d2832ad12a000a159bab0313/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..b222d582a --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,17 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1aa6fbea9cec9c79c931e6dab20e742b598b3453643e89fda4b0fa0b/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6fc0906705221eedd2b1d37df24dc708354908c8697ce317233bc97a/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//86aef2fd52768f7d55d6cc9766c81f8480bee6b4fbe2839d1a38947d/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//df4b3d80570da2d066044fd9f47c315847dbff64afe79e1da6ff0387/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//22fa4f38dd7f8218bfa9970c1f6150fa50c78bfa44a8caee8efa5606/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//78212231cb3dbe3afcf9c4a77e0fce0e98446c7900198616447c99fd/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8294325e85e601a80374c244a0b8a2363da751319e4ed686273747da/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//05eecb0751452dd369524783f9e315b9c8a855e4e1e9187888717f51/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//14e6a451cb0c4eb9cec12d60cf235e1a4c51d9a17cb8f807d5dfa8e7/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e54fb4e64d0da993acd566d8ac6ee2ee7dcb682954b1d234659b927f/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//06c99b8d171ad2107856b2709ef6cde73bf930655c398e8b3d2ae0de/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ad6951b5a2c80d5604b034e915d9476369aa17ac5b510121619281db/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b7b71394dff4be1c5c2e7cda2b5d830d13556a8618d8e6476fb53a57/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//dd46173c8d1f1d5dfd2a4bf996a106279cfc6461b4cccaa8691a1a85/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//095fe4b539f35ad37147b6490a5384e86e666d9bdc858dda2d3d2842/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7a199d5392308589dd03c7807c670701cb30fa0ef361a0a028da6607/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6bdfbc68fdfb70ed6ffe9f13ca098cb24f7f97f02053aff03ce083b8/000000_000000/0000/tree_16.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..1a3c281b8 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,9 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e9a8f271d63ab784a8205225d8812e1f38e0afd6651a1813a0b314f9/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f7e40e0b02fd919e15276731fb4b29ed63edfb40e1ccaee602fe4a04/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//927347fcc191f05d6b8e76b2253388386019751839e38876b86e233f/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9b852abbfc8b9b91ef929ea473956ecc7869e295b23d9ec79de79e72/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8e80cc75e91bdba5bbf9cee9ab81524e14490bd79d1986b6db4ffa8b/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7f797da8c08ce0c1216175759ca2433170548a40e2a9bd0e6a923f72/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7436df98ff11d4368eb3ed9959c760d575ca5fc9993f31cac5d189d0/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0ec89f2475088d37a6f7932388d8e2198047aaeab6acc55786ee1c71/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//69a4101cacc6c4645dfb59747bbe658e0be64abad770f9824107314a/000000_000000/0000/tree_8.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..cd01033f6 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,20 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ef2edbe7eb32787621bd2ef8139dec63b31189cdd55ed487a2721361/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2861999ee1aa7ed0c09e02e51a3a7d2d6b42e47858a4b84e6ee1799c/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//70e06eb761dd37ba8ed3e8dcddff82c9b9578db7f016496f26b32614/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f672a3b4b675a03dfc29ffa5e4aa3b430284a569f78b08f1a19f2af9/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//de5f7060303698624827c8b3849edba57c3746e6f4f98318bd98af8a/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6d5a315556a73a63fc9f19bcc5dbc7aa1caa8ad4124a777c0e7a313a/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//767c728f9a7ca11a9ae01b3dd165fa1902a356654b95d5f943bb0ef2/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8a8c1a6076d431f562d986cbf0c7c496cae243b155041acf464f6d4f/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e38db8a173b39a0354e4e3d580ede5ff675af9af5064a653bfd2a70c/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//eac480002b9f331feab8bbd6a2859b94e68abf77243fd26bb4ae0571/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ec2ab02a7ee6d879bb17ebacc4e5a1bb2c63b65baf97609f7be66509/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1599639e3545c6e7d5e40e742c9c4e40a19b8cbef76f887af30626bc/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//15dcad47cfee909d00c47a70d26a7adfdc9d5f35da8397c76109f755/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//99777f036fc123c7a84f4a0ba54115579a21024360bf47e8c3d95333/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//aac7c9cc39abeca9cb2664410bded91126f4ef6fd987fc7d40cf4e5f/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e45fc53a26b3f6aed97e82974090268f657309a2ac11a028f12ecdca/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a845a0d08aabec43a1b5ae96189daf59e545eebaf9a8822f0b14d7b5/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7452a54fec9897c85966b4a4fd9d3357a440eabf8516b3951e5a2186/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ee8b03612647daa8d6f860fe5e5f7ecebf0d8ac2a8b0aab5568a41be/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fd1da6adc660af0f4950caa465a19de81a10c5d2e0134e461ff2ba6a/000000_000000/0000/tree_19.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..ac51073f5 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,12 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//43f49bea6f0d971bf2f089766513220ab7b85a9a41aba17f62e44eef/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ab82268c7a3182d12dfcdedf5c9e948f687374535c2728c679ea1f4e/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5b24fb2da380aa10b3580e91fa33919aa0362045e0b7745289328762/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//dcd4c98da3fd8c1533ced85eaca244d8cbaeddd395b4a41afad0f7d5/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4f5d516eeb8e7a76eebdb0be85c2dd80712acd9cab5c61d49b71ca2b/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ed9c033b7c7a0145246732dd2fa7c937e454e1783aa0a48240e1603d/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a18e5145b66122d9fa5cf10463ec4174582a352e0826a031ad018087/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8926d45568102904efee80c93b6e72789b429f8192d50864b7383d04/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4dce332ed389921bfad9073f0a046635d6fc4c7278b34d6373cc99e8/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//cfc31bbc338ef4ecef37b59f9028983f2905c45adf2d5c8f1f52bc7f/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1b72a98a28902bb6881b2c2a7b1d2a67196b090503da147c1c587cb7/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e0cba85534a3c9611889db86ace36b6c1cd7b07cd0946784946a9679/000000_000000/0000/tree_11.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..bd4b81b37 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,12 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9659091be0f927abf351d0a1a51c31f7717fcc6678503d8c16aaedf3/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c719442dc5e75c6274a6b28afe41b45735cdff15b0c325bcddd808eb/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//19e385e96256bc644291272f3f341bb3f3dc80ca2628d14c571a13f2/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b56eef03bb64f73130cb50f5668a6e477048f40cd72605d092e19b5f/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b3f8442b372f56b35eddd001d95b0e18a4152810281289f8c008d5a0/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//102042bea007681c08d30694676dcf72666eefbce342c9c43403982c/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//11375aa3e510fb26463ef0cc4e79433f22004f7e3932e93d38446ebb/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5f8db833806ea0064b777fa61c970014447121f32094a39faa7227ef/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b4ddcbf76d32c241b893ae051458d898a45d36d4f6a56d3bac345afb/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//59a9d0c5200c0b2cf2a808dff74385fc07685df76fc6a75f6ee3811f/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c62d5697d14fdf8193737e5ef43dd3d12123241bafe1d424e9cd6410/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1c0584466ab9b91ee47f1279a0f0ff44d09ac97ca803c7e03276d57d/000000_000000/0000/tree_11.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..d64f327af --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4f1ad98ee5d662bc9be475ab1cf959d946ba0f109c315816e1803dd3/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//18f4446837ac323e120a4dc4027d991894fbdddf2f6237314a6d93dd/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//226deb48450b0458495a00e75cf07b668c90c0a163567ae7a020f3f7/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..d78d13f10 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,36 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ffcfb6a9ad4e484ff0d2d4bd10affc3c783316d295f08c8a50598e9b/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//38e4e7e7e65e895753b7e94fee0016834e90cfd46edba67464c63db1/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e27c1ded1e92009249f1cc9db0ddec223e28ceab2294c5ff7d7b3c11/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3813b45cb4a5cf1cf4bcb5a270dbab386e2314ea25796ec21c4bfc88/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7568d4e3b9495b0c35de2a9e4484148ff948a467367af190252bf334/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//04ee7584bece08821acac11fdc2c1244f961872d7b26bea14ed53b23/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//041f2005b99e243738a6d876de6a89a9f4b1e6107ece8ec8b81f9e82/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//89283dc70bc208aee7d910ee109298af90bb0ff9e02c9905c579693f/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//803d8b711d0cfa40cdd6ad951731a4abbddec31fbd5b31505e01c06c/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ca0174864aa4ae2228bd6ba9b3d691ec49354efcaf1dfc17abbf28d2/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//cc4a2c3570f8494b18ef2d4bc077ce93d6e5501897ae426540407ceb/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7b575e7482d66520695e5a1a002d60f7bde2293acf822bcc9764450f/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0793d5fade708575296fe1388eaf07b990875a71397781c804863806/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a313337cee3fdb1e02ac346e9dee5fa7644c8878701c31f1378b7981/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2ae19a110c5670f5638d137fe633adb56ed65085bffd2fa88dd8070c/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c78fd2b787a3022242b67ceb3c1737cafa1059a26ae2f883513d2b0b/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6621d0e69a899f9875f055aad77e304bb8d37b660d1483d20d844a5f/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//64b0f08ee428fefb3089d3e35453a2f63fa524d3dd94dc955cb784ed/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d0e450aa896580bc725c0c6e4f05118e13a76c50f8eb56381ee9360c/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//64cac26edd68c579d258e994f9131465a00d6a53875f9fd220db32d0/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d48af2276dd73c6c8d32cc0d3a3f7dd884bb5a8e414f009f01872bcd/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2342fcc8c737fde2d13da600b24cb933895d713f1a1b0afafc72a2b1/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//12c71ca9f79511667cc2104aa8f63c110e6031247d768eceac2b72e5/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//78d0842ec207abd9e900c15d35f100f144d53c68d93ef058f455b7eb/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//37bf825b73941d30c69f3693a915a8d82aa79759cbababdeff2dd02f/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0eef3d0ed3b37838296905effc827a282652a84ba490f052716bda1d/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5bb84dbda1a2ff84c3ab190cf581b3b150df85f4b286a215e3947e75/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//094a8d6cef377404711691769f65fbf048319c35f73e040f33d96333/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//58a0e3462ed173b1cccdc0afb5923e3db303f363844940bcf7ec913e/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//45b8ed0f6896a0d74ae74a3df46c90809365813b050d018378d9a2a4/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2a6841855bd70cec74aee62956c56d019fd7414c863e8347fd8515b8/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a84cad7bc378a81454e347339d74d382807e6f5aaf8779246a3db583/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e2e2a523309a5b05de7e2742e828aaeca489eff37c40f44a00647404/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d90b6e700a519722e9dc9e707fc4176086c699214924935c039c1fd2/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4929e8510e42417557e38bab0faf5a2cc6a447ba810e22722424a6cd/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7a7e725d9d68ed9faec68466629eea1050d7a08faa4b4aac8bf37785/000000_000000/0000/tree_35.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..17a51f304 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//50b8d26a80bf45c9d4989aefdf081c0ffc8ad83e5ffa0e00f789f23f/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..33a11ccca --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,38 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//32e8d8300850014d8ec0a1450298b6c589b70294c861bc152264f93f/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//655c3c55d05a6625faab4cbf18eae80ffda613b89cbd64ae420f4091/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//da1fd444b44de21887b663a529bbf833d67da8495b9b174bc22605ef/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d445debce4d9ca0a0791812a17ce75dbb587705c70c1d510846c1d5e/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fa96301a15d9c855d23eb5330ade9c2fbfbb0d2a142d408fdf455ad9/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//19a76dca0af31104181c70c1b4b78893e01858fe954ecfee2fe12462/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//13cfca0ef42523a45dce41f324e8a027c2a629facef67e498f9cd350/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0e2a3f9b4f22b77a53b43bdee880cf7769daa93e3eb9ba440b5dd576/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3e9876638f899754ebdd5ea0b8748ec3276f4d792eb04ab1062d0bbc/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4a9a0f8b5287053deea186a4bd81815ad0c9798650672372e7befcff/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d42615d2d4a24dc7112516da76496dea4d07b9a1a5f2baa4f49f50e1/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//aeb5657f0e6a2a5eb80d885e7933e2d7cc0b54ded3eee1d249df5b63/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//af0594ef5d7e607437ce90fa22bc3051e43ecb14c303b9e3957c5132/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f9f2fa0217cfc495872dc743df62cae7b4d769424bf5270e077b38f2/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//32ee484d8bae3c58f7527f17c4bf6e38912b5e0d4b1c62312c5898cf/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//64a9f265b2c04d42d213506e70ff0059ebafbd4df4d279d29ad05766/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6209a18ec9e3bb5bdc7024322a08da14278ff1e17711f2949552b1bf/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ec2611ec5a7fd551b460dd2b5cd56251d2914cfb137f3592ce0cf6dd/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7abf400f7cb3d9b9e41d66119d4726ccbd272c54d144d32dc87b87e7/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1bf2dafa6e01af188be77624747ba2938948b03963ef35e681137655/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fcd47038efc65b732f351273c5440c57acb5dcab9a3e9f691d568674/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9cc4cf0ba9679034ff1fbbc0b5f5ce995947a5dba4aa6d1d92eed7df/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9929f3285744f41a31f18c346b93ff821a1cd7e56b318e82b4f74a3d/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//cf2456a00678888306b61e02b811b7cf5691cbbe81151b52306c31a0/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//62cd3cb41507c30d6a79d894fe90af5f40ae863cee6a1c6eb7a7e50d/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//562043ed38d49f6bc08158911a67e6919484ec776febe9895f723e02/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5cf34f8f50b7d515b82bfc9ae4952c3d5c63a5306838117cbbeb9c03/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f62de4afb8a343e7c5a9db599acfbba1b6f6ac6d276aabebd240610f/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c8ffb8656e27c26c002353c92546ba2354fe1293fcc380cb2653442c/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f8b9e1023626828f9ff880ebbe5da707dadc0c254b2cee919765d489/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d766ee749865fea9be28ca0667f5696902c0c321b9c1388fbdb7e7f9/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4caa0803eafa0d72223b8a26d5d1b022c1c96e6909c04f34a60c0913/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7dd097655b46c82f5d20ee39ba80ad3d5b7dee216303743360f16fa0/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5efa50a13f10bd7c041ef2c0c5ec703409c9d77335d7d3ac15d6e37d/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d0ca9b473207184a1518e627a7b2aa62d32825e3061b6e7822b695b1/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f17be72dc0a1bcceaa4856f88976c9b907adee49c3d91777fa4bca05/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9aad06e052400563df3117a81bbfcef963f4afed9bcf7dc298bc3785/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d8dc02fa5095e4e6704ddfe3490b7d87a809b7a9412a82ca0ea232df/000000_000000/0000/tree_37.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..bbe5c78ed --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,35 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//354fbc26f9e49d95ea2da573a97430a661fee4e4062c472aab08a372/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//82be02351ee3aca74fa00d39fcc06b032285621f5de5ec10ea0c5801/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4243ce687ebee3cdb3169744262af539346508b15e63a35757f95aed/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//141f1c41f0b413c62b22cc2e5067b7620f09c7be37d26dbb59335e2b/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//94c4fd04515f5e42a1c2f4ae836d4957019db87347fd6963323ff70e/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ea5831f80ea03533d52eb9d5479101a724656fedc5073833ae0e5dd2/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c90b11117f784bac5e4aff92726852714ff41c457cafe58f234bef0a/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//badaffd85dba463a114896d745a91f02d0d1698630b251e54a93a61d/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//cc5c19bb02c8842efd0fd82c70292842129946784acf7db83407553b/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a5d48e5a35b02b3e1644ba07dfeab85b60b8d1b5a0db867fdfb36dbb/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8016e47ee28e3a081bebe0b95ec06bde0655d0a376d77bea934810d2/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//05fedaa0f4f7a5516b7959c5e1d2113b3cff4e79139e63fc180e5d93/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//649069d082f8e6d42aedebf037ea60f6aba1bb8f33d2924b1f46ada7/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6c777f81a84eb3a482558ea3bdae23205722583ecc80c2f935dbde1b/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4a1469d001b0a31b10539e647659298f944d44a287dd3ca887b9ed81/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3f582dbdb6cc9831bec1d696dc038fd23e054e3d97bd597d788ee2c8/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//616ef3894c1e485bf4c62f280bb5035dce4d5cd04cd97a49c70a2dbf/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fa9e5cd5246f8ee672ffe70132e28344bf0957ac7dcba6973431181e/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a44f11f3aa6390fc6c9708d9a3b1c910253f705ba1943e08b74000cb/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//96995d098d5b3d21677a32ab96993eafe1a8e8fa67dd00c166e2ea61/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//113701e77b41773648295b5e16b8de1a09aeb284ff1a41c25c82a5ba/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e1c0a8720078a01bce6cf77e2d69ff2a2c912a2fbbe477b87ed297a1/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//298d65ff440503a6e6afe6bd68b7e66f34f69f170ddc9b4cc4f32bd0/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9b36759b58cf19292108621e9bd61664453c7d1b7557b450106c9384/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//da68bb3606747d6dfbe1364d1374f62814b9a6802397064e98d96677/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//26c120210385aede240a08612a2a424bc7f501c42774a2baeddad431/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fc7a80fa0cf9321ea6b606ae275312dd2a71be351033054df340ea58/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//39ac84047f57295e83905b61f805bef5cebcec6c021f51eef8a785b1/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6b9d0773535b0946e79673c5754041f2212273e3e3dd83616c4e8100/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//65e0177809508e04def4c30a78b3fa4aa4a26e7dfab0cedfd2a646a2/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//95ecfec80acc94cdedc4d5cfa1a39bc0c205d64bc9eed4318b58a300/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a2be6c77fe149c78c87c5b9e170fbe4528e9420a798c0ce5fe4010e8/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fc9ea8c8be12e46da3978ca92398b747fd3977b4b40c25412f08af3d/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9ca57716c0c1b26bcbdf270b84040f3a53d2f102436c62065160a489/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b00ad53c717c07702e8a138248befe0c5e40d5061c4d993cec5e71c4/000000_000000/0000/tree_34.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..7bc35306e --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,20 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a0143c44aa7bfe09a4a7642bdd3d3b4fe4a3471dc8131359fed3d9b2/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//14fd02c4c399fff460ca7f6933bb2ee8c208532bfb78cd9bcf70ccb7/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5c1e065b250153729014a432a1eadc21a32a793fc5bab8f72b3eb0a2/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//624d7b3bdc1ff9dc689a6f3c17b4200e74435bf244aae0ab939ce360/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1fcba6461b6f147d6661224e0302981de81c1edc15738fd3637146a3/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//26127e9bb491d560ebd1e5f3d2aaf1b1b7e7dcfd004edfb7f5773e27/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//362d685eac84846326af622e69c0ebab8fedb9fdac60cd5a9ef8730c/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//be212b96a80915a4062b7159b103906415def4318c20d45efe164e75/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8ed01195a1aa288105da55ed6563ebd1f730cffd50cc5e72c2717dd2/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d296d3e36512a4c03c749fe633c89eec89af4a985f8e3558d2d3a366/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4bbefbb5b2d6e37ce782c24f4b1604295c0dcf19df4b937bc82dfad8/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//52f2a89898b09f43500fa7cae55f0349bebd2d148a7b769178d8667e/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//271d312bb592d2e2b3b75ceb02b353642ea3b7e45fc96a3b61ae0f4c/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2e4e845582721a5839062b47688916e2739a8ba275729d7699c58215/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bc1c92ff4930c05b64a717bbed91b39651990768ebdfd62240640797/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a99dad6432cedbdf71bdc43c1e06146bc0eb9eed994774f5d44e1ec9/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2b49ac7d0192ce28e091718053753812ea81bd1b9467bc19609ec888/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bb9c341821a223015b81b7767e7f4bd7dc2384067f82d2197b92ccd3/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7f391183f57414133d882d98c9dea4c020889c6c4aa848106356e822/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fd8ff4e748851781fa804b12bdbf54bf26581ab24fa768b0cf6de2b9/000000_000000/0000/tree_19.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..dfbfcf863 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,12 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4cd8783e1155bef84a352d45dfce472709de74de1abd783f2bba6887/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//aee5e33577325f6a39937eec344e12810852c1d33644cf31c4dca1a6/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3fdb95be4d4e8a6bd8f25a0f3902a8c06e0c2e1ab666d6aeec26164a/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6e90fc0c51b62168ba0a3ad65fe755ba73033fbbb7788ba032bade5f/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c6d3039f4e28ca16ed4321cb66e3ad9307593ab70ffd7b4c466473d8/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a7c482a5b9a60930e21910d340623eac97eb5884c28e1c6f5d3ec8fc/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2f2d41e886388fa56371488e3d5ca2491ba822b0cd51dd8668dba503/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fa90333f4e6f7685b645654f56768683c337f64b6a1003e269a4e396/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d85a07a982d173c09bfaa87fcfe02251eb8efc297b126547eb6b188a/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b7a769c25d4152299de56e0f787c3504bd7764eacfff8b2ce042f53b/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c842ba956acbb8dc857ea506186c9aca7648d6290391d215783dbba1/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//53a9bcdb47d22084274d3049aa17d20252395de9ead9d81433ccc628/000000_000000/0000/tree_11.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..aae409f41 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,35 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//be0b2a2bf80e00284ca6f06d84df23c9014794c31ad59a0ccc8c316d/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e67df5a1852c352d383c8c1db2d231d7220d56926eba0587262f7758/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0ddfcc739df46dbf9b6fe7012a72a778fc0494fa0c6f3ad5f13c6051/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e6a83eaa5c6f29e8e5707a6b9f1137beabcb360ecd389c9b114001dc/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d95059191788aa0d475942cfe0fb3e67f6f7130f673baf645f09236e/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d84e7424f183cb70e853278188896e0a69ec8c71c6f5e12e9d699960/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//cdf188e4f32a35930371d4dd3ceb77ec2d069778fcefb0b3b819a9ba/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2ee5877b2c8aa2f0b243aeb60620cf093949576c5511705e24e99aa5/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1d6132e159d8e4503298467ccf905513febfea288d44fb3aa5705dd9/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d4d7c85c1d35fc74f62f0fcb4648b2863a4a7063d6410b63377c9aaa/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//433ac91fd771fd7d51777d1649acae71abaaa203026688445762f443/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8ae0b879599463186cfe92f16c8defcd3f74289467f007a17d035986/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f6959803cdae7ecd1bafc6adf62b99451e357bd58783c9b1d1e5bbd4/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f7d20a56b530ebe6b7084569061202a352e23a17637a53141b727d97/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//927ef7d0f4d93157eba61a78c01e5674907ee6c85775b8a6a91f26b6/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b9f10b49a7037c2f85496d7001208bfdb9c3709708ff01f652db6d5d/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3eef166c928529d79b21f5d93347599dd66eab7626ea30ba7f6e1d5c/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d745f25c0e893461f2caffa61d654b433a7a9b6eb9aa2b6853fea0d4/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//243b1918e383588da9f70b8faaa77823f2fc6911def206cc42833392/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//cd44dcb02dfeba8a13032e54d4bb703191b40c78b25d5491cd81d45c/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9f43f2f6b641b6fcc3b9a53f4cf4837c099d75686af9669c72b356fe/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2e76c05ef66ed5da642444fae6967b7f163bab5ac0034c0b32200b6d/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ad98bc377c6d24ea39c7cfe80a2422404617adfb95a08699776029fd/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a0fadab7226994f8198f0e6a226c029d7b3de51a5b9f01f1983b5e80/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8640ed04dda8385cde6192ea548141dc857a2af2ace25ebaea531739/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c5d6c95905c51838ce42883b3b6292eb03416b59b431acacf1a9cbaa/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f240f72d1a4dc6b483f153f29288a643c86aec17bcae27910e98e2f3/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1a97cfd0b5579fabd6b3fa20239424770fa570dcfd0b8b91d26e63b5/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//969f2ac3c8b54574bd0099a9a19f2f7f9d4301b694b1994c9537308b/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//69305fb2d237166cfa9859583b358826cf98fca2fcadaa500c20a0c5/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//dc947aec029dde2ab91b014c1c497d67e7acf27c5e48976ccb1b1b41/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c207b41218e8e8f5f3614da288a41b824218f9859d16ecbc53b6306a/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//178a042491fed4c3100234a2db9e5357b628a42cdde4ea75841afe02/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//750ff85f3b1ba5e8562cd2a6188ca7d02b57dd5d0f9a0c70b0b00f6a/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4554d150a91c999c02103df6db875f8570bbe4c1cd5d53090ad4ed1b/000000_000000/0000/tree_34.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/DoubleEG.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/DoubleEG.txt new file mode 100644 index 000000000..c5299ada5 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/DoubleEG.txt @@ -0,0 +1,45 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//900cf95466d17f1c85f8eb34697c16ed599ec30eb97ea9897ce808dc/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//90d3f166ba8427dfedac9ce1a98e296695f388db2b5fa3753c7b031d/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//e418ad05aa361b8cab6aa0be801b2db40e43a6c3bccd45c2b27fac3a/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//fae8958f2c406ec6daca9f0fc4085fe06c998536f37a6e8ad134a6be/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//53bfcaeb9794bbfb1a6d1e156273191c6681ed91a3b123787ba82462/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//b4da611c3e13cb612c252601eb2f9ec164f989236e9a8873f95ab413/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//ddaf9ffd7efc517d9fa78ee1228492b7f5ba62816df5b7ac8ede739a/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//8c44969b5f5ea40d05d8f5fd40a400b53ad3bde5c08ffd39c3902be3/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//3a7bffd87dd7227c5d9aa6f8651e2f57332cd8f58e82dd3acb646a44/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//2cdeec33f52950f5c0cd0f58b7a7e034340bf1483aefac8fbe8cc684/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//195901c9f29d4a2e5bf5311937a9eb5fd4dd66ac4078c57896658d17/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//28f038e28830cb91a68bd40d263c4e7681ff74f57091a718f1866bfb/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//6a8c3e9458763054082c21ae82bb547ae2918480bc5260423c809e88/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//2055df583ad0d532e485bd8192d78f4f206ca2d7de4ad11e3676d99f/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//81caceffb4bdd2a5255a33d3090cf7c8c6f235951c67e4997f52ca46/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//ad9794ad7544f7dff530ce5a9a54f0c94bcf09b61a0fa12ac5f121de/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//2424466ff1883666c98c997907b2b8ab9c677d6c838f2cb0d2feb508/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//f1818726ab1a081dd40056e89606eec4679b0f68f307a914dce6968d/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//a49701d7e55e4a8e6df4a0f6707b1495afb9482c8f931aa243257e8d/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//5c67244c6e462cf9671f64237d29b9fe65e88bc961a84dbb95481525/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//7ff3bdccbcaf32de8e162f2030be8319c4457eb827461af21cd25040/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//bae91ea5596b5581e451e868b0200170806aa2cfe883f4094bb8bde4/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//dc854e14c2a1153c028e83ce7ba56418273099505949bffa8b7b82f4/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//ac94a6f8b8bb34e50452e5e28fdfb9755046d8127be128d2b1b39bf7/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//612584f55d7f9915ddbf99d4c6c0f5902434ac30e210d24e29202b64/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//b687317604412b8e5c45bd644c9a0de72078f68cc1e16fa8ba721acd/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//e0a9a3595a6158771c73041946b0706788f968a1e27845cdff939ac0/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//9bbb21f3beb47425025a0932ba7d211319de46f369717a629a577d8a/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//4a01703c939a28164e21db21e16d4429e52ca5c1d9755266e9019149/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//479cd5a785982a038e01c4b56e132ecbfca4a0ebb5c8fcdde06487e8/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//85b38645f5795cb3155c8461d061a6c8a9f41323826836d8894f4a5e/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//f851a2eee1ef87f65cf4848467e4a96eed9c7b1f3acde963c08619a3/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//cf0f043228342978ce0e47a3ee45d39d8df5961c4e1ef8bede27e952/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//50b4f9a0812c838bb91f2d6e80a79809010c5fa31aef5c61ac748a2b/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//32eb1f6e4f39b69be3f66cbdb1cffe319f7c2cba0b00e3f3a1510386/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//98024f2d74c4f2baa104009c3aa7242e5003ffc2dcef3d9950364cfa/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//21b367ba89fae587ec88c6e147a7652e3f4f4921de8fa11538dd800a/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//6355205797c023c00218e83397385511afeb824c43bca0a95cf739b0/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//bd7dee73f6349ad8e4e0c429a1dbef3678bdb5868151aaeb227ae838/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//760d89c1021355096e7d03997340d0aac98c04f0ba973f121ceecdcb/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//8085d9d0848422e851bcb7dc51d2cb7ea3dc1d3bf344800fa66a407a/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//417800eaf2e56a93e5884422b1b38064d4b93a377549ab87ec0daba6/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//b599ff98ef4fa2655c11b7a95915a57a8ada23049fe22a39039b1ce2/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//8c8377025beb123d55bd3962ed5fef72858d6b96dee2c2b0b8223c3d/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleEG//ca1d57eaeed3060dc6d9f66a26d86923d60bc9c8c4365dd743999cce/000000_000000/0000/tree_44.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/DoubleMuon.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/DoubleMuon.txt new file mode 100644 index 000000000..95eee96e7 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/DoubleMuon.txt @@ -0,0 +1,77 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//d3409b103261e77a4d900ca753ef2e2ddde775435c7f431e8d4c9ad8/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//e94835b115aedf13a671feb187b2f99ae525769949ebd9cbded8dd0c/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//6c5a049474adcbc0246df2b327b7a1df43dd93dfc5416a0db9c41354/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//da68a58ae0b5ef2d48c87c567776a2d1fb9b333b962cd82b7785da1d/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//17bb9815585cf647e52691da92382f6d7c2270c58542f4b9ab888cfd/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//6ecc69ae17cd427c491c47f56db94d58a78c5dda3c384db985935255/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//f9ba8b0f9930a86a1c609bcd3e1b021ca1eed6d092014d8a6d79d4f1/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//41eaa33b20269d52168608d3eec17db967c6abfba9eb1bdaab3cc8ef/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//1449eaad378927dba24d1de4fa53801b0c5cc2820b49d9abf79558ec/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//e3370affe637b7a1eee85f6c526c50cfd59af565b767cb41fbfe2b10/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//643304aaad6d551b63d404fa29848061ffffcf97b186a0713011b321/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//6d648aa7c12aaad26a781055676beb34ab0fc039e67478d6692a7eab/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//c5c96886f509a86cde533bb10ae173a1e180541c1696ecc70fd90a92/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//0786a1e54a11af492c535ce8d8e5b7edc3f337fd4f90bdbe4ad6d94e/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//d9dbe2a9d0201a83b9fdd0488d227c4f12119b5c03460b811b2e05bf/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//43a4ee87b56a16e9f1a59a20fd0438e75258b07ce513a36dad3c5cc0/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//e256a26d2fc2c5c4427d963983ce1b12b1620f1efc73abef5355d44d/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//c2efe957a39ee64cada2e4b22c640c662aec3455f62eddb09ebadefc/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//3a7d09d6c973163912808ecb41ae446f2c5e3f86e88bbbb8a9b3fc53/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//819023d0e497a0b89bddf613624502a912f1e8eb68cbe0fce0d74906/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//86bab45757aea8c2299e0af1b4548d05405bf9f5d0c35b7b9cd1d2dc/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//3166158508e2d4209039c59140e060b26fec9e2efdbcd8a54f9cbba5/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//ddb89c25e871c09a2bd3acdaa9fc7007c88bf2e5b83dbef29545108b/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//ed5b41a95400826a2018c01066accaccea788b3df154a968e67e1f9a/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//a37c19287bba55b5c321d1614ac4b116d6325e6a984e177009c32bea/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//7b7c513f26804c65c5e912f72476c2de0e20e1e0be48af338d55e7fc/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//229d2c58bdb24645c835ca8fe7f09a3287c9df2681366f10dac5ba21/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//aafcc07a212f5dd149d6be4fd1dd2f05cc6e846bf2d6fa7b23d2c40c/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//c812bbc554a52877840e3b5a9df150cd4628570781eb3ea86cc1baea/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//d518ab23464a2b2c678b5f4ad7dfae37c00b358772baca949283e05e/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//c3b1e21110c96ee2e3280b05498e894319097f1d7a5ed73a6b3ccd51/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//c514a5b08ed98a319321552486086d52da7c1253f230a4d592394e5a/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//a143625683e34561ec0b95f973fe2e64ecf7030c35a3ddd008ea3504/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//16ff04920f136640f18e9c44a61bb32ddeadcf62b23c825ac58c8908/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//956da99df240fc4492665c16af53cde593512437f6eb7ebebd8985b8/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//ebcdddfcbf3d0eca834c4da95850cd6702c18baa906d0076c8ee4a15/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//73f94a05ac14b72a3ca4018e7a8cc2398db55d8d79b3001e67071157/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//43fa065a55c13c331c1a6050ba0a40d8b56670f41244decf5b551479/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//bb9065e5d90654ec77268e4684be4b7ea87d3ff6c2cf3e2dcc31be07/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//266dbfd6eda196d2c848ee3a6460c9099d671d2d6687f2c5d2b6b481/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//1f4e9b57af6ca037193fdd54ffeff8677285f776784cadc81337dac6/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//fd59baefdb19658f9d402c44906aa9d18c3cf03b45f01d6540f57a68/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//7b78c509e33a99e1eeca764a24acd5f2af69ab94ef031e3400956b14/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//9c94151d289c619ff4ed60b6b3cf9fa8fe70f52d4c9e0be2350ea627/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//ef128fb81aac4645be9b61a9cd49f107116cf03ab18c010bba59e708/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//4ce682eee5a1a694470cb5b8a647f6071417732c7777f8c63046ef9e/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//c76c4212b2968cfc11d3fd7b3a7006419246c54bb8169e6144e08875/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//fd4c1d7916b4c0232a58e87f320ca15d21d689a34735b23f3562859a/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//1a9383f96b60443a640834d8bfbd3a5d032524af51ce970be1b22173/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//b063fe914124630dfa82848da9184ba3a5bd06406e943e9d9802cbd0/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//8069d9d4156bae231a89ff2c199d2a7263d3752a682a4efa46db0f10/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//e8ea8e652888bd2ef9e9bd59a11170878f2e489f341020ddc3d803a5/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//2736ec46eb2aef950b3dfadcfdc51f1a479b80b2b55e9c67269266e1/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//f63b9d7908b5c4afc46ee4bcf685a536e37d48a141ca232d3227f1d5/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//195fac04bb880e1b7288850bfa97788f0f635d886bb57bacda6032e9/000000_000000/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//ae51f298403322383b4392d229cae5e24981d070a9a6c5297b2cb49a/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//2a6c6ca6d7df2cfb0f2c13c4ca9a9aa1c31ce25b3676945de98b1308/000000_000000/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//a3923fa1456b547e151ed6139f5255a3f4443626ecb599b6ea0b5e7d/000000_000000/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//9da376359ba2cad799bd984d0745c519ab6a503090bf57cddb2b0d25/000000_000000/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//4c1bc23011a6e9cd513dbb174f1c7c4ebfb46d15e116bdabf3e44cb0/000000_000000/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//897f4451450489f004624c50eac3b566afc45e6b4881fbcb87440e58/000000_000000/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//9e12fc549182026fcbe5c9e570383a6654cb749b3bb5f1eeace4098c/000000_000000/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//20e81f5e6d02e78a15a2d35e223647e319d9447a1002803234bb9b3b/000000_000000/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//baff4abd792f8691d63e69f664525280b09e4e0e5548c1420e9a7975/000000_000000/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//8726665bd6bb6e2e75b89c267479591bdfbf102eedc08bb7c0164cf5/000000_000000/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//85c2465c12a7667db0ef23b22ec38fb3ba917798884b65b89d75e157/000000_000000/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//a6ae6d503fdaf7fe9127a72c353b59311031357201de064fa4ebd8c4/000000_000000/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//d4032a32e91baff0ffad40fdf9d1af95e94e522447032e1228accc57/000000_000000/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//2fe8b783f3ae9b7a37310a8dee4acba468014ae24e25b1188ebf25d6/000000_000000/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//ff471f3d728ca0d91bb16c7b75b8a9019104f1bae77898e1f5d42ee1/000000_000000/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//d6bb94f641b9bac4ffd71412c8223efb642a531db48706813c6266a7/000000_000000/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//8bcf18d0e1825f3a9464a7a89f5e492bf7075d651de119ed0d9a943f/000000_000000/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//c7a89d941898fd42242a225f2494941c6e3319aad2b87245ee1143a9/000000_000000/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//8a79a3e2684a3e37b7a770aa732bef9fb4534b01a576a46879483fd7/000000_000000/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//f29795d45dfea1e7846857701d4346e3e50e4caf43b89a61e93639a9/000000_000000/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//c0ed3ed37aea3b0d1befd894816f34c7814b3f91e175336be05872a2/000000_000000/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DoubleMuon//3c0e82c5cd78822ed32b44de095b9085a2bd1d6a366734ab76aaafae/000000_000000/0000/tree_76.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..e314972e3 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c8bd09c0ebb065d25f9a371060f45aaf386edaa8786898ef94ae0cbc/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..91622deaf --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3dce18ca14e0041f7d7dad0a5480fc5688f9de1ecadeece8fbfcd454/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..3fc5abcae --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9d30a3b882dcc4f0e61fbfc6a02f211aefe4dbf7a1a6f3f37d57aa13/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..002a31205 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0e1256f1b52b34f510569c8a69f4f101c37c1d77a091c44f6570de70/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..bd21f7b5f --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e9ec3ac20fb2139e12f8d7c55972da01c3fcb174ddf650b611588d1d/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..641dd7ab9 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3e5d11e8531d27d2dc0c2724b334b5c5a175f8456e2313f6f4aaf857/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..452dab2ef --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d211e7d28c3ddc6948b1e0ab8738484354745c1278792e8541de456d/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..7490b163a --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//31d2bc5f85b1f071b33a4d2acbcc6126af8227d78521b446bd0e6c3c/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8.txt new file mode 100644 index 000000000..053752d7b --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8//624e5c84e387cdf26d69b11c239e29f2226d61a897fd0267033cfbfc/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..778d0c047 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//edb03409f92af935cc097a0851b1d13e605f644e217d536711e35c1f/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..5f763cd4f --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//567bc4b10bae3ad97eae0d1e3ff0bb9a0c26e70cd05d6e0ec17e2897/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..bc61da99b --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//7d7de58e1815820e5dddfdeaee20bb333e607f3e44ebd1b1282bebbc/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//e2601be615fdcc636d3da1cde20af5143e3eb757df76ce3d0e70b449/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..1285293ce --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//6a62ecc116e11220caeef2c93ddbd4c034bf2fc7d774a77978f30c2a/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//3067223af5635f406059a9b08edfe032ed9ff9b5801c4bc998b811f7/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//46f02ef12c22e852de75c73d629f5fe87f5bd4085cb36bd78fbd36cc/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..f29bd5ab2 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8.txt @@ -0,0 +1,20 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//bbe62387d306b6bba1f9ffed72f2834602877ac9f96817b810f35251/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//1e72af2fce6c6f1c548a720d6327bfb7ed9da89a0473c99b20a2ae41/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//c003dc907dcef5ed7be24efee841c3d5d7803dcfa68cadebcee243eb/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//6525ad81f8db17f3dfb2ba16e49a14bb572a136208bd52a21963fd65/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//f98008c37adc9fc14e4f939f883e48712700487bd4d6d3c1b416fd7d/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//cb180db6a941119c236fe2dc01e0ad56ef079cd362aae9c100c93818/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//99c43175df10c801516e32f12505bbf35716dcccfecfcac85f059f67/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//4cd98e9a09ffb94b6dab7f0e9a29394502e183873b6451157eae75d5/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//5e28650cd1836419e562a551dc6323d09b29d47ed1f2eb09f11a12ff/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//85db1e0e91f3dbdb3632d10b4b6708c7bd9efdc801e554d7bdc08cbd/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//0e5effe5145670bc6413a06eb7d610222bd0f3563686f7b8ec17f860/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//686485e260ae461861aa908c116bfc4be32c5a17677523170803cd92/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//218f1f889f563a88692b61a1088386e95a98821b7aa759fc76a42adf/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//e4c229460349cd3ee5cb41a1f2124432c039cfc9f10f0fef93975274/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//097780ccce414269daa45eed03a5f448afebbffbee9254ac987b63d6/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//724218a87bcccfaf5e7d72437f2d6b5840d9ac64e1b19582a96a387b/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//b271050dd211f456c0520a338eb71ac40cdc01870f1c0515ffb84f75/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//b4339ab85996a8bb14344bed0dd83613d983bba6d3d2b49007626d5c/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//285573b4886d9991152f2cf1886af1e8862b0ad98d13a0e69930f5d5/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//91d8c54e59004f89bc36125a9faf47dbe305c460b856bf70d01fcee5/000000_000000/0000/tree_19.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..c18a75265 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7ba0cd5ff9fb8485838ce6ae83f332d3f84f4c28fff7acc7941e7505/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..04a45509d --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//86559dfbd763267606a04dbecbc67993f3e9a7aaf0403f5f61fb8651/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..ea376a5d8 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e2dc383e0290aac5c350e6345f044612a540ddc0f659d59a54ef7927/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..5ea9abb26 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ae0ec0053ee463f82e8ceb7ccd5b49cb818ad436efded75015e3bb0d/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..7b0d9208b --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e97df9ff767840301917fc1b0715a03bf1abf6e5dfc69584a2d90f06/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..7e3eecae7 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//72b1a4ad2faaddb07f6589ec3be357bd8dc6e778891c78b4a639cdca/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..a0f787230 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//afb7f875be0f515d7ebe28cdc65815213e8fb7a014e4752a8ab2b3d2/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..277a32663 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e2485d352bdc7c3d13c39b73525053a232f063d7669c2cfee7003105/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..d84dbc523 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1035d48a5b2dfa9c99244008fd4c266d4c091b4eef9e74be04b30db4/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..d4fe7fdb4 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//17cd12e4f178cdb90643002085142e61c9afc01920101fed606b2ad0/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..485660d34 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e699a0ea905bc0622376fb241005ef834e5a6796605fd17ab364bf4e/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..af3d2ac31 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//225c8e6ea5c0ee3db8ea40a5eb12ea8424d389c83bff008892ef14d5/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..2d2447e40 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//5671019cf47828ca5c9c650bcf128cb4461ca0b04c9db6eca85efc4e/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..0c575356c --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//a21337a7b05d5590c25732fa87af8f57663236765c36b4adf1fc5f52/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..8edcce037 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//ab58ab561021834b7471ef757acf96afa748256dd41b982a61f231b1/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..290f2fe8a --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//bafdb931ec52fbaa25ba43c788305c5e04968ba552861e216b3d8c6c/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..8772e4402 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e471173a9be2b4f6c449de96d1e50c876079b2d086cf5ec92a776def/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..8bd7fef8c --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c54dc97f2c0faa14a38867302216288087588db070178ef12767b40b/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..4bb245db5 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,13 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//7928156982bafeb543efc63be5950b2377a2b2d1c011bb1dc8125c41/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//a0eb3cc00fd2b9b02847ce33545e126fb2270d6df06516066de38355/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//8845ba2d7192fec2813f40934b5f6ac80cf4661c95cbf257772c8068/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//3628ca59a4c98580fc9f0d49ca0f12937446538c2f98c252660832e7/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//8d3b586392982acf23f8517a7a86ddf55e93d67d9e64140de5d7ba31/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//98085fae267ab298717c6747b724e1d889002b45bd20da4a5dfcb4e5/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//e6fbb48e14ba01caf14431a1d182bf0d4a01599bc6513788f37ae27e/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//7e668041810271af105d6e58847d244e9fc3affbcbcb828fdf0da0a8/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//2719cb95d246a5e5768d582e9d42ec549031c67815c8081e6915c2c0/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//9ef786c94efab5ca3810e5606c78dcef28d0879ee55fb917dd1fade4/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//640f1f5efd7454c7bb2f5133d44752d4c8cda5aa50fec96a0a87d8a2/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//4c2167a9c10eeed84df8526dff671d3c7d7269ce5434e4d925e1dbe7/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//560b640dfe6ac52dbc5059c443525917b3d2b1b2acab0874476ae3ed/000000_000000/0000/tree_12.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..b0686bd34 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//7c55d91cfc85048dd7c6b56c54faf858e7c268f213ae227f09c7ca14/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..6e1304419 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//408048f683c07374314968d97fbc13d013f1cd02bb5275969d6466a9/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..3f9f10515 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//609bea22206e8ccec6f0612ce138b794151bc5f3a4fb7f82a0693cd7/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt new file mode 100644 index 000000000..fbcf2087a --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//4c2a8f1bd57f1202183faac1aaeb646e04ef681b0b07563e0bb46c67/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt new file mode 100644 index 000000000..a2773a4c1 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph//512e8d5ca8ad272108fe99c3e9dc62c684df367b69752e3a7b6b9163/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt new file mode 100644 index 000000000..a1899bb25 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//3decad9701e7fddf8b3b5b067927b165d89c440e23e1531004212762/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt new file mode 100644 index 000000000..cdeb47e50 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph//6422939f0a25e2b80def279e5255ebe5c039d94d770487c967ef71f4/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt new file mode 100644 index 000000000..64c142443 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//99f1a77f931366a9574163aee569254eb036c340cbc90cf3d246f999/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt new file mode 100644 index 000000000..5985172f8 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//f243597d2e530166921c927f31a22e141f0eec8d975aec883719ceb2/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt new file mode 100644 index 000000000..32c732887 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//d3f7304e355c86cbce3cecdd2f7e9010d7647104c3c6da59892af209/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..28e1e2bcc --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,62 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//6eb81b1d06591e697fc6f83d4406f500c25d5ea153fa5b25c3449500/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//652532fda853dbab1d66cc0c40078969a3f4249c8be8c9363f2471ca/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//3e57b80d09f0a9747983db9f11ddbad6b345239dbe35bf11b92217dd/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//5dc257e64a91d5e33c6fd66a86d59b871d3e54ddef27f0538502f893/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//4081122e3cefdebfdef664b144e49c0e0db93412aea78353a75c8bec/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//8fd6b11df266ffc4f206dfe8218e7b82f6bfe383a797266d12a78544/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//dc89f500ed15c1de572bc46af15cd5c668930ad3912b4d70a368eed7/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//ac3c892af852add6b4cbe517eab96ccff243d681ad3a4d2e7474c3e6/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//40b4868972316510ba2e035f93941ac39b71e9ffac9a2722c9efd785/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//0efc38554aa4aa457238f14ab66eac5ed109070dc15c6751514e38ed/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//602a891cf5b3f6ec94e4987dc7e07ee0bcebed71553badd1edf46931/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//623b8a7b3a801286bbfe0d94ae20df7685b5675794772afe85a66ca4/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//bb37d6b071ce7fc55f38409dc78a0a7608e744673f09c70ff9332bce/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//3553fc7c28ffd06888ac7780d32bca9c98d4566a1551f5d258fb466b/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//285e87d1627c665d9e99a188589b2e7c6fcaeebfb7630d689970b087/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//8838948f5958ab120876c978beb2aa40978dc138b94dbfb906ab9ce2/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//c8cdc315702e988f0776130ad0f2d4356c82083c9f9a6134928bbe57/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//a52c7962b4d12319d2aa6767212ce9c13777f9ceb708c494e23c8275/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//b768a6393493fe0eedc4794737807d6c0405fc8de689d22488dd2601/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//5d39d44f78e03ce020e036ca99b099a5d8e85c7417733b0186b6c8a3/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//814e23d2ee35b59c4d680a98a9eff98bbe3e70ce4873979217c0431b/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//d2ab3e376fb5affd8db79956c9582ecc72040971b13de73bc06fc3dd/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//1ae37252b2d71e39fbc513e31af4613cb18b1e52d227e58dbef5e67b/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//4bba3d02642c889eaa79a824c52b0adf483f1da9177aeb2abc185903/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//3835c9fcee3eb9c73e8939131e48a20e2c0ada729cdf1204bef22365/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//190afc51d71a57b6f5e5c76d67ff57671341ce4fed537e015228e3a1/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//74132310d6b1ee52622967d8121faa7d9b59c413a51fe70cca04c0f8/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//76a21cb24fe1cd73e262c8590c07db96c9e07e69173d09110903b851/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//8d322685dd300f0c5df9817126b7820680d89c1dce15b94a3a0e3ddc/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//a64fde3df1655435c603458d0746111f857da4c08d179b76c2d4c453/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//9006c604765942ab95505e89ce05934fb3e8e460e4bc93ae1d914803/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//b5d9d1713e9f36a9af8dc4fd6c6697bf1d7a20b505a26f0cfe75f44a/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//fa0b2bba5f50332dc0f7940c70d1807fa54aeadad8a26cae750c6fe2/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//94ed903148fea7f654e0388576f175bdc5b89be0f6d21dc7bea52b66/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//b4b6536b85b0355a0b6a50da40ce90e3d44a99e3def5df6190cffff2/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//dbcce0f7ee361c319cc32b0349884971b3c2954515d7baa6d6feb928/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//710bcb91e69beb2d7d0b555fd60a60b2eaa69a8a9285fb9adc30f54d/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//4bf6b94d21b998c8ab71adc79e1c27509953d6a5d548307fdc9a795a/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//d88100b134018a1ded88838dbbdec3048ffe658f8cf0e2e86be0d84f/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//dc1b4ec8a18c4a3c9c29a87dc10d0d3b4310b5a9fe1751b3377a5eb3/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//7de005fb796a3b44f92366c77a668dc29e1a8723454177183a99ffc3/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//0ea95e20a6283f0d75e0f25ae051ca13523260c814cdc88626203bc2/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//118ad27aed1e43bd9daa5a640b6ec486610337e5944bc7f4c2f53e29/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//b83d9e315abdcd6ed19cfb848ee7c911475a9c7145a8aacf5daf34d5/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//7181bd863b90878eb8aecdab6b03e14d6dc53967611b6f700e55b825/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//28816f0e5ef21a2796bdc26ce83e46ea04bc2968b194a3f03f006959/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//7cd4ea8321e9f555fbef99357c1b1a0e12d38ceab34d519185a3e249/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//1b74c18e73f0a1c92c7ead46a331156d3927f7e8836ee4faf281d77c/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//480b7eb8d4328400eff1907c663c792dcdf265be0f552d09356f0e03/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//a6251586fab50dbad32e0a4b1ba87745c9e386957102ea2ed96759b3/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//f9edb276332642577fb510e7ec407ca1cce1e8356ea2db0d0fef1c0d/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//457c5bd6f342cf2b47d219982e79addcaf3cb275de69628da1ed463d/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//8dfc89ab373722deffc110296b0c4fb4d3e783a09a0ca015ee263267/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//83676b1656edd20e232078649c8e73514a944081e1ddd360c1da3f7e/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//0cfb80b90e22d1e09bd39f5a16514cd27a1a2e14ae8e36122dce499d/000000_000000/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//fe01143c4772962622b3f5c7aa6d5bf30a212860907d97568dc743dd/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//03925af57407eb6b4dc29f6322604ecf07e4b209dc19a41b25256fe9/000000_000000/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//8e8d677126f4ea7a43befb3053678421ec6b2576aceb3dbd9b346991/000000_000000/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//f3880e5874e3b475b46b63ca74c37015dc6c4c7e495aaf86f13d8c5e/000000_000000/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//65a2b906b382ca46fbd1f9405649c97731e385303d4d71051b8c25ff/000000_000000/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//d0c8d893a80eecac59517f1affec70909c9391854ce2289c8bc243ef/000000_000000/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//b3a9a85ace03e6dfb7a205c5f1d9d3017291a4d11fb8b12d932d16dd/000000_000000/0000/tree_61.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/ZZTo4L_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/ZZTo4L_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..d7974a608 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/ZZTo4L_13TeV_powheg_pythia8.txt @@ -0,0 +1,4 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo4L_13TeV_powheg_pythia8//7ef226d56f8933e8c78bc49176297d4613db163438f98034c7a1a9f9/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo4L_13TeV_powheg_pythia8//e0d070787bd407e4e6d6adc0906707bec6b17cd37da720b5df8d75f1/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo4L_13TeV_powheg_pythia8//e261fcc89b3b7e4e3bc049d112f5cc82df2a8d7744d32b8d6e4c9f23/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo4L_13TeV_powheg_pythia8//5587b3ddb12a274356b2f4b47805d3863a4727243db57cb7cbb3bb16/000000_000000/0000/tree_3.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..d1cd45f97 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,10 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//6c65cfbee9c81383c66533266970fda8a7f437de0d26eee198e91b40/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//cdb6a391c33d1df38c0bfa3e44054cedf8003d75d899464ced1c7603/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//f2f580a4399879345190048e21f3e833bf09602e9260b167356f9fb7/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//00ac21546b9bcd1ce03209faa7812f0daec363e779bf9f03e4dff44f/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//268cd6717682d614435c1026eab7c13018f212f90f33054c741514ff/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//b71db8cc988fb48953b5e529a859410993bf1f5057f33a178c7c4ab3/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//bd409013acabeb7578db3d6bbaeb639a936e36ae752868586357ce80/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//549384cda5ca122e0ba29ef3b02de5b6a6d150948fd90e4df2601dac/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//afbd62866ef2be91bccda454a8498af921fa58b61870c259a0149d0f/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//53e4e939f4046eb7cff39cd5cf87bc5de7c7b284f6d88ef9a1292126/000000_000000/0000/tree_9.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zll2016/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zll2016/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..8e7c92b39 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zll2016/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//7d3b9e9c4d10c6f41f516e7ddac82009d2832ad12a000a159bab0313/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..a93810109 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a1bed9f0d0cdcdbf7348a40f8d9b3ac4b0e3b1397976b8de81360d88/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..d82915d66 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//968c3e07dd2f912ec8d4282ce8133363df61f6adab1126130811b196/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//025e9efb2f30d2a08580d4457f14c0f6059f99ffa28ba31c406ee9f9/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYBJetsToLL_M-50_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7f436253645b6276ed9d9732f362e39246f412ff55d56dd6af36f4d2/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..91f3a8f2a --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6aa2c9039e566f1c6b02108c5427166560b1b2beee7d862029bc4ad4/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..dc5272399 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,4 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9de4ee1987b0963010843618d080759159cd6b94aedae52ce6fd6d1a/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6164097de7b5ec96a53e55ac6f06a77fe2596b40a5a1aabededd277b/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//aad57579f74706af3594abfafdcba2c4e2a31711932f7335cd3c359a/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8d6a6b1ec9e0dc6b2a141eed7bc2fb98cc93c22138c05eb46d352048/000000_000000/0000/tree_3.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..feff0a860 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//69edaecc2b6879345e3b9667c95eb554f96e07dc7222ce18bd380f27/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..2ab2795b3 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-1200to2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a642ecacce105fbd2b07022fc4c6861f9ab8ab4104f3d71ea8f7e5d6/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..16e0b8df8 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c239f6d600ece08b9dbbb38c5d23be88f0ea707e51f49e1cf4809b47/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-200to400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4a2976f2b012c77d1ccefbd1d1c66a0e128ff5d8614891796e3b0398/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..17a51f304 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-2500toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//50b8d26a80bf45c9d4989aefdf081c0ffc8ad83e5ffa0e00f789f23f/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..be107e339 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e943c9dcc3447375feb44e12ad4a75220609d67a2796d89e5b021728/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//659c5ea17c28fed0f5047b8c378490d0a63ab18bb90284054a695364/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e611f69738f0f2d5cffd4e5d6711546ef9caf9fab231355df7efe620/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//82105ffb999a279455fd26d05eb53c3bf751966500587630c617b114/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//522255a828be90e1d177f37da18d90a23546b8fcb2655db5e65d0acd/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-400to600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d82b823b7c0a9ff79fc25838e831a61f1e323e80a17975bdcc20e2df/000000_000000/0000/tree_5.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..0b98cc106 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,9 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3400f904815208f221126575debece9300959f78c8bab9739e29a2c7/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f0718ac8642c13dc42d88d6eb27f73531129f8fbae4cc991e5606f3a/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f2fcbf673b811888c5c25b034fcdb53b94dd6720c5ebb413164b0300/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//351356adb84ab702cd79d1379ceb292fd4e0c8ce801170e0c1da413c/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//61fe2779fd5cd83544b3a885b8069753ff310b7a0d079fde5972531e/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1c3a2dd9f8401608f936c28f7b9be7da0013a2df5b9f6da04a5994fd/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//40089381747ff5c748b72fc5938066c6a39db7d43bb1a03263f5ca25/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bf00b821333cb0bbd3ae8fd05e4c1193f6777354d0b31fbb64ca91f1/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-600to800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4733b5fff18463bb6cd0b4b6daa7b099e186cbf03a8b6e7825419911/000000_000000/0000/tree_8.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..eccdc8fda --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-70to100_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2681b9aa685a5baeb3be86380935a0fc404efd0a8ad6dcfa3b2da528/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..b7e5c7b63 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e9fad667d290f0f606a1cbae26e69660821edc795ab954a8948f1873/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d78efdeb381df83f72abf998821acb6215d35d8a580e193b96a3fdc8/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_HT-800to1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b0534fd57d0055f716d3b149d4fac65632d95743a75c8e4413b56f0b/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..ee1bdbc8f --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e6736de066ead50d6650dcc1d8a8c37db3f02111bea0ce22b4a1d25d/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/MET.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/MET.txt new file mode 100644 index 000000000..1d974d739 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/MET.txt @@ -0,0 +1,109 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//ed96cce932b7c8c47cdce67fb8163d6faef2eae844e9a456aa8112ee/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//1c6ac519053a9b13c524644a592c9a02b7eaa53201e6e864454855f1/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//7e8e64f5846c6f3ce45e3a3ba305d386994b73c2375f25c126a13b22/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//04a5f9fcb1cd5f93318b9c71465e2fc897dcbf8b090a8d242848d72c/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//711414369f41fd2225e68ebcfc0a62580d8993bc2e03a0ad4a60f9dd/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//69d14503c88d873d94db736d166a3f9c44eb5e694d3cb6cc3c7f073e/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//c7d891f2868b4c2756f2a0430bff6bea312671735c8a3511322890b4/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//bdd188e4064933bddb0fc2ef4b8ef793920cfabdd80683908414d46c/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//ee1b7d0e3c1d5e1eab139496767e7d5505569e01758d39218e675301/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//1aecad3534adb1d33b36c4b8eb44d9e4659ede5f98cfc4519bf75b0f/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//087b3a35bc9886ead5e819cc92ab7451065e0b2d386506cca376fe15/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//5c3d285b6bedd0bffaa214c4112d357b892066a2ae499498a4e90753/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//90f041621c9f93712e4afbce8ba65a4f65accecac83547f0828e997d/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//3eb2c863941013c965a19315246ed146efcb5210e05ab511e44f1bde/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//9775fbcff5d09c3602122ea89e8163c4473e2164ef6eca5393f910c1/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//4e00f055dd6d875ca4c0119c6dafdf3cdf509d14fb9b6a9da8ddea84/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//04c19d8f2b09b0961fe642f8b3822bcb8e6e61bb2036f4692245cf19/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//270128a4a7f726aee7edca2def614dedcdb6047365f8fd041306c2e2/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//cd8c7eaea27b0fafbbf0ff53ba7b24653509765739e9ca796f1c9626/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//fc230d5e77e768dff7ccf7d7fb7d5e5d7d855350ae98d349115839b2/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//447518abe5dd7e7078c9a5fb43fd2d8e8c7ce65cd8d36a5f7edad581/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//4aa72005453b4f94f74ee97e84a686fe85f5eb1046394c755d562949/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//2d0c86d46d76d0f766edef8eb810d3d37ff8052324adc3e34fd062fb/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//21f97343aa6f2edc950027cc36493bd75d45f8f2bc83d5a7ecf94e6f/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//1f3a7fded473f9d31857c16c5f5e019fc094eef9de4bea458fc9aad2/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//6ddfc6072cf87e2d4177c38dcbabec8d173cc54088face512f02cb37/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//ea6078032079e7391b7e49bcc1fd6a8ec907caeed23dbdc8cc7a0ca4/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//297fdf07c66f06d638b801737bcea6b6f0b9ead20e8ace1e9392faf9/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//6a83f980e354863f07ca01383c2084312f02465ce251d5090566edbb/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//6d818f7c4363c91f1c3a5feda4910febe4d2225154bc90d75970fd36/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//a29b3c08703890438eb23211c33bc688f34518e06cf29ca22b0966a9/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//8396fad6af080a0d12cf3dd0d2b3b4056f6e4a714ed2a9495ad8624b/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//d857821a264d96d1b2026637275472248252107bc8b332ddd46c89b5/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//a9ee17ef684b0251630c9bbcbabbae22bb6dc4026e70db937001aaca/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//1bd5928abcbf6e2ba0b9fb7251a4f23d026f2f195543494837cefd84/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//a206e9fa42057200d2c695d76e66602a39d40ae28ed79f3528b24c0f/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//fe529a21a295d9e420514e72b717e60b9d2c8bd0eddffcbf2cce1739/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//a9714376404ead9cb2705eea371eb86a9af2db61e01dd54a789c8429/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//d6f930a44858056e022b67c16781fa421a30f1d330d05ba9824c1ec6/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//258e202b5b8b7284f3403d271561b2ba2247da3484da3121a9392fcf/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//09860b452b67c4974b15932a611450798b37b0fb517108c6c2534a0a/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//f4e4c86190dc055bd9639fc0f00a26b9cfd367e60e401b46ab7b4e10/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//6bf87c76119d51d82d90780d250a1957b0a8d083a134abaf5a6c6460/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//80c42213230ec508f8cc1d742db4b37304ce6e763213f595dd063fcf/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//994b3544eeae8120f839a1e9c6820d1635b1d20b8576c6b5e7d6ee1b/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//748f41d27de3a535dd709c8c29659b770816f895b7f601216d7adba7/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//c82fff32649bce444671a5055556b29c09cfb0596c27336b278b0f3e/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//d722b27c8eaf11f5e009ba9ed415e52a22581a63872128c87ce4039f/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//8fb549f69f03bf1fa5f2dc1f8ae66d903b777b1e6558aa69d0109770/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//a4863b16ea272da4cdf896d3bf37144c43db3b6870770dd14ce7ac3b/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//0ae23b19b1bd5dc14b7e02b29e609ee91dda5ae081b176e91566ca82/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//04c53c4508bd05b932ebf20f4ae1dcd0c25e4bf8aaa16a5b6bfb803f/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//52c98dd72494947cf7f02b5b5052ba6c15f01eeaebb393695bad3ce0/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//1bcf92e5f74362c7b816d2fae68db7e1a29d553a759cdb593715f489/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//04cae5a9d2e3b475c0339c7c3ff10ec6d884f5356694fac74c976619/000000_000000/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//bdd91b79283220224796cca60f3efd8d927858a03952a8e18a9c561b/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//cd9df4a20cdb9a72818fd35932549618a9f771a370a77929badc4992/000000_000000/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//44bc4d380c06194a454d2b2f181c756ca061290b908d35d49551d4f7/000000_000000/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//d5b6cf2938f40748064d50ff0f3c0970b0a3f0e2ed0cbd6885fc8ab0/000000_000000/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//cda27106f1edcf565b5b1419783ac5682f29012bb8bafccf03359470/000000_000000/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//58721e9252d9897b470f9bc804433f7333ba22cd535ad04a0d2996b8/000000_000000/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//b0bfeabd7377ca064b2b369269c87be52744531ab3664f8e4104b889/000000_000000/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//b9990b34deb2086a0caa8d77eadd2d367f31efeee1ee3040bdc3d65b/000000_000000/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//e85dbd6082edafdeec59ba3c633ab3f0c2bc217d16c1914a10b35c08/000000_000000/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//14f77fa8e3fde72dba21d5cd82916366047bc4a17e72a72c425e6a54/000000_000000/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//15ea7a99a10e9f0c564aa586b08a0b955620dbaae343c1c4dc78c4a6/000000_000000/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//210ce2d16f9994f5d0be0ae94dc8123dac46c0541c00d18bf8508c60/000000_000000/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//5e1bd840023d59dc5806b6253fd9ad954b6bc47bef6e44d5174f9fb6/000000_000000/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//7e8e09759057b5b1a8201d76b0aa68590ace59a771a8d8bc0977ad3c/000000_000000/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//c293dafcaa556b3756222f98ac1a361bd4c222b688b405f1216839f5/000000_000000/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//2f03e34f0c878c746618e30916871b238b2d3a4f1939eac64512a5b6/000000_000000/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//7439c38ca3ddd80a6ac0eea5b031e95e585c9320aa01e692789fbfc5/000000_000000/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//e2144c8911cf5aef3034bea4d44dd98accc0b2487fba28cd4f433d7e/000000_000000/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//e328b12e4eef7b176ef78a90d1b2634fbfba3d0c9809617d67407462/000000_000000/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//b5218ffcacfa63301ca572307d74f0bc63bef93ca1ff0f267c35b1d4/000000_000000/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//6f026273c14e52441a9e19d4e2494c81032d4b22e37a248943e4598f/000000_000000/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//a8cd7cb149890dddb236d6892fa5088ca23b1ab4752034a7871b699b/000000_000000/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//f484bf179da4e66369b7664138e9e73a35f85a2f97ecfaf4148fc127/000000_000000/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//40a6e4fee55fc5c7d3d8bede8ac82b772656f1417313a085d14bd5d1/000000_000000/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//0f1bdbe8291cbc4c5d7d9a676bdbaf67b2fac8df1dbf8fee541b81c7/000000_000000/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//d94cffdecd5d4a8906702434f96f0ed66b2fa90227abf0af2d58e1b1/000000_000000/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//2d2755a33b671755a025a16402c49785644d9054d1091f7113ac178c/000000_000000/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//b32578062edb17d5bdd88f75515768b26035edbc883f509dc88c41bf/000000_000000/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//4fdf89922b05bb8b14c9f26c79fad25b4ea53462c216972b65fb0b16/000000_000000/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//bb27454c27ca07230a414ad4132476a94f8dfef2507960b9e5f8bc20/000000_000000/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//9084d92ea8fc8ea79a5f70cd75addac32869b7553adbb151cf7f93da/000000_000000/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//314fd2e3eb845dae5c64593fab6ef0f8bfe10e046b1ef5d58e00f5b1/000000_000000/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//3a7fdaecd1ca51b700691832d394c8490698777443dffeba365dfcb8/000000_000000/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//e02b9fa8a3b02efdfd2581915b6006434db415f682b059fe4942638c/000000_000000/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//81b2c6dacec8396f9ee2bf10bc4a425a649986ef37e6fbca5ed4261a/000000_000000/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//84db09b0af44f310e7cdab8e43d272432ff62a38334af2eed0ed4690/000000_000000/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//c804a9497dde1fc3e5b39251dc93e144efb9851a2b998092f553bf42/000000_000000/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//853f0dbe8ff8c5dac2c6420e4c08fc2fcc6640d95d2fdd867d3ebc8e/000000_000000/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//9cb73b830725505aaa8a89728d4b8253af2d2f79a3a452060b3ec7f9/000000_000000/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//da775574a1f50e891fb39c570a1fa90174ac8d7dcc4f04fdf0fe16cc/000000_000000/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//361e62a572a412e90ad5b529fd7f7903bbbfdca603f960c6e1d70849/000000_000000/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//49495f8e0404135902f606cd0c9ab72d0c515a46ab015fccf0416333/000000_000000/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//0a125ffcfa378f39a6057119336bf556216728b69ca54a192fe7e3c1/000000_000000/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//12313c9eb926e1a14693fe02d6db1fc0c317d8bc24b0258fb1f3a41b/000000_000000/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//a6c66b97b347bc57ae8421ae09331fc915249997533a5ee56e105fb9/000000_000000/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//4719e4e88c2a87040466c51a1badf43a2d956585f1b8eab9f5b2eaaa/000000_000000/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//40ebc7452a0e3b9dc3f8f337dda9363487674a3534bacf4f1d8d7c89/000000_000000/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//2117558d444773b60c3e51d4c5282d5268d9bb3e7bd7d2b6a4c0583f/000000_000000/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//aa2aad9ef3a05d5e91fe85e386aebea32fde9a878ae3477f67f1d948/000000_000000/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//72146b7aaeec24740cb54abf517215e973d9cc9b85b24fbbe17c94ca/000000_000000/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//f7c8333c36357d1e042ce47e5ab736382620471cd1079d7221972cba/000000_000000/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//97222bb93f7e2dce985b685639b33260748ba46349e112cb90ed3e6f/000000_000000/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//64ca23a8c115b16dfbcf77881e3cb00df32b4d0cfdc0bcf86357250f/000000_000000/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/MET//9518395cb069bff590a77b20402d7d4470a74711c7be83fc44c97261/000000_000000/0000/tree_108.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..5fe4fe177 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//25bf562c913f0d9ad44bf0f5db207ab2ab88168805cd4803330a6dc6/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1000to1500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d2b6f6e37a62b7b22b5af04c85fc72054c15a915898e0c56117b84b0/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..91622deaf --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3dce18ca14e0041f7d7dad0a5480fc5688f9de1ecadeece8fbfcd454/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..cbfa48d90 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,4 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//54fce5594a7e72b8b5fd9c2561a936dcc7f95935bdf52a3fc5b31dc1/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e53a5aeb713dd3d902059e0c5db59763f40e59cfb212875d85ab4a69/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//203bac88e6fc059e7394ba0e0c570c1b69baeb2f4ecdfeb973a1e187/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT1500to2000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//85fcfc6c32be240bd49b705600a055496f3c49f57731db3480346d3b/000000_000000/0000/tree_3.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..f952cf5d1 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a0fcfc73595c5037caad51b3c85f669c898aad753cde738a33151d88/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ba4766bb0af3f6b78cba20a90b4f636c49542d77d91bebdf473ac393/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT2000toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//de6fd67e3e803f302caff245fddee4b6d5a198d9cce2f653af4a4cb7/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..bd21f7b5f --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT200to300_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e9ec3ac20fb2139e12f8d7c55972da01c3fcb174ddf650b611588d1d/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..641dd7ab9 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT300to500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3e5d11e8531d27d2dc0c2724b334b5c5a175f8456e2313f6f4aaf857/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..452dab2ef --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT500to700_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d211e7d28c3ddc6948b1e0ab8738484354745c1278792e8541de456d/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..7490b163a --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/QCD_HT700to1000_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//31d2bc5f85b1f071b33a4d2acbcc6126af8227d78521b446bd0e6c3c/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8.txt new file mode 100644 index 000000000..053752d7b --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8//624e5c84e387cdf26d69b11c239e29f2226d61a897fd0267033cfbfc/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..a7fc61832 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt @@ -0,0 +1,5 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//17680a1ce0a329b05057b27c2c2ca2f434ad7aa44de462da1922f3ac/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//5b91d4fa33b9d2b4ab05c4d6be7cb14aaa06c41790bd511f2501fedb/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//d939b25ff2767e4257ab6bdb202253f15d57ef75ccaee9edf4bed54f/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//a093423cf02bc422b01aa33c645c61463b1638a32cb7b4aa38f46c51/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_antitop_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//94fc25803e88224c9577d4fb1e894a822d85a0326286fd216017b66a/000000_000000/0000/tree_4.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..e714b0d4d --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1.txt @@ -0,0 +1,7 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//07a41f5645b0ff59016017227acb47e90ad2e55db7e45fba55780684/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//0172c22303f930e4eacc6b858736837f5560dbe548a0579b2c5e82d8/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//e3862f2899698f1ff0f6380b499a865785b3db0929ad693807505395/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//ba5c14f87460af2601e91e62da6b870038285e22dc07d80e19c66f18/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//89d000035de23376be1223e7c499fd8d8b3d6fc561df760581d35ef4/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//1c0741880ad76251f910110866628815c16d40ba47fda06ba10c380b/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_t-channel_top_4f_inclusiveDecays_13TeV-powhegV2-madspin-pythia8_TuneCUETP8M1//a0e60ab85ddef9b5d1c938f5a947c6b22c4d9a71f6e26837ba28cbfc/000000_000000/0000/tree_6.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..1b801d963 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt @@ -0,0 +1,4 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//2d87a0bcbc781a1780a561b842f7d707c1f128fb061b33f0ab3e5d53/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//a92841f3e1902d495b6f37be3d7149a3d74d17b460449e125ce97993/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//89b09f03d6da35707a66e4a0105a1119c5bdb4b30869c4530792fd9f/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_antitop_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//d6c13036739a05f9b3d778bb5ec5455d4dc4651a81deeeed0bb398c1/000000_000000/0000/tree_3.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt new file mode 100644 index 000000000..6a709f380 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1.txt @@ -0,0 +1,5 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//17d154b0061666a4eb97a2f86dc5692d293c22ff3bcc477db91eae8e/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//3b5edf4449e94797b6b1e3539b5a364d46a63e687091267a706333b2/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//f97748f89172b8a943dd5ac49a11c6419093e25b17bad6576310bdc3/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//f44c4dba653145c367cd418f9ebcd4b41d330c808505ab2599e8c09e/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ST_tW_top_5f_inclusiveDecays_13TeV-powheg-pythia8_TuneCUETP8M1//46f02ef12c22e852de75c73d629f5fe87f5bd4085cb36bd78fbd36cc/000000_000000/0000/tree_4.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..66e4a5b12 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8.txt @@ -0,0 +1,30 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//f9d8ac192a697b6e0be8841eab1b8feb3069dc655ecd09fabb892168/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//34b82580bcae97954d33c608a25ccb29367aa21d47f4dd2a23f22ad0/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//8e42c1966e9e1f77645f8cfffb1cc0ca944cc1151a2b8d585c72152d/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//1589c2a500b3ee722309c2c8dcf1e2806d5c87983acb331283e6b7d5/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//271fa252271047b8e9c9851ad7b4fa41e3494e62cdaf735f1d7e2369/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//f86008117921101d432a215430638ea756fbd13c83852871e0a5160c/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//c79333df7c0c0acab8861524ea7b46755e22b9cb3fcd62eff6ed2894/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//2b4a192b4f5ca83d6252c9b5aae72fc4e64f88119e3f0297bc5e235f/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//a944412afe7d3f401324b3cab74af914268684c599d341f91aff5114/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//0856e668e8de5ff66b2752974b3d2d14685ebe4265294a76a8d00078/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//debe29bd45f5fc7adc23b8def92aac4bc3b5adf659127e0caa5b3d63/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//d42390b5ed3c9796abdbc3a21584278146c27702647b8b4d7ac64747/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//08680d33ed0f742c7a7d4a594e763f1a2d7cfbd947729ce39ef8a631/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//1954e9476d007345b9b94a7fcffd132c29fc0a6c5b128f3e6efde8b8/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//f681753f7be9f4a7199756e92bd7452bd1fca1bd23d834000c96463b/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//d2e6da5459f9be7fbedbe8a9340abd09f56396ca99c3d24bbf68f585/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//4eae7df3663fb3b50a269f78378eeaae928e735d012a4217ddff4bc6/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//62824895262325907a74a681ee774ad50965d2921fb9126b53593ebf/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//16f82a39712c6f0b09f6845ba90cb95fa765ee929882472bef653212/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//c48c727b348f168c2b6e10c1e53c7f46497d30dd23412469ee26d587/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//d42df830b54a217290e105a0196f6cadaef9e76617de14fdff124e26/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//132daf54181a5eeb3e42a122d474b53e90bd0a6065de8598ac96de6f/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//27a41dae45829a1beed792e6df369ac5c72c379d36019ec944304210/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//dddbacd03ab8451ac161280cdb26e740abe4cc987417449b756ce520/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//36b19c6c5d4f1ff570e55499e8f35d4f575564fefe37bea0d5924564/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//130b1552febb2c91aaf16ff23009db7da90fb5f438058f1d44ee5d09/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//7bb6a59eafffa5189756a347d10d861a798a58c557169bc1310d598e/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//db89c008c07ba41dafa0d5e8a4576ce6ba06142e13b1a56cbc2a092b/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//7c6d7c21ab4a1ecc382d0fb94b127c2f7e07245e99762add3bca83d1/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/TT_TuneCUETP8M2T4_13TeV-powheg-pythia8//9fad87af8887d64a7e9ed369893adf4131ff9e6327fb692489ee1027/000000_000000/0000/tree_29.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..158503f10 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d3014015f6aa66fdf892c2bde7ee6320ac4dbb41022292de23287b5b/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e2689edc5f726c5052d17baaf6a3b7346563cc06f23fb422bf9ae664/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//29d4ea2692e6bf02079e6a92a707917eb0e4541f7a73e5fa4ab55332/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8db08c8946c9b52df7d934eaa4a4991abf746c1238c2df10fbecf0d0/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d344e55491f847ad18ff68afa9d65e599ab3f8dbf4fe64f153cc509e/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//81706852baed1779b2f4d46ea28fdc347b51ddecfc414e90f5c78ea8/000000_000000/0000/tree_5.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..546520f31 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,42 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//64e98f1836bca4103c35644b4cf13f3a0ee1462a8d1afe3a13122c01/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2f011de77461fbd867297ea69376de5025e5dec87dd5e996a1a189d0/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d4128b6f2e3290305d0eab3dba5b86b3b60c6b9ae51b731665a50b86/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8995da4a735eb73b173545428ffbbb31c33b8dba2adb83e123507f5d/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4ed445c3cf16e54880b72d2186c8ca3b8fbb43ae1dd92330b7483719/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d09f7ec9d36d6b86fbf00a498e5c2aeeea3808e55507699fb7791c10/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//097d1b266fd59119a91ecd4c0ebbccaef10621b10c7416109a6cf9a9/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4f3c59c31516421df50f51d54426e801d29492f1f119af60e80304c4/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//dc0f73dc20427711e86e56994df25be6d222ff822f6faa45d1d5fc2e/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0649bc9dcb74821bbdb787f3dea17b8272eb840643eede2f25650c5a/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ad60192641d6935cf14d88bdf1fadf968adae092b3cf765e90281511/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//cb9dfbbb9918a4710f83486b6de98b047e709a44b729348edfcafd7e/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1022b52328e26bf102bdfa2df5bc380bd18ef3a2afd88b7259a2a6a9/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ce343b382665c8894472d9d51e3f7697791a80bad82c8adfa4c02e30/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7a94f929fa41af13d23ca6bb8d9e54f9da9ee0850e414637b223e331/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//38d6e64f5535c573256307173c69f649dad14bc2e4d22d83333d1afd/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d017a4ac35c3af7abd9c190ef8ed75c231f136d2a22e30d48508bfe8/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//dfe8aa168cd3279cc43299619497914acc2c780341e27f9381430a97/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2a253a146c64eaa20199757b4ce52b7a83c060ba5b1829f60ffa8bc4/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//040ad10c33511cecf2d6bca8b1a05cd99aab998b7e0b06d340e32972/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c2f8784ba78d20e00064c9cb1c8eb4955a2336d84ad100f91e213bd5/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c6c09c1330761b7ef5a08fe0260ba1c15efa508a8fe5c0189dd48a1f/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a52fc18dd628b8d0adbd97326f730098952b4913dfdb6c67c903040f/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//598bbc40a775ebf9e78b8f3605f01e23e5854fbcb909b611d6ef62f6/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0d7cbe0121d00418cf5c7b3588fe6e867537f2ed893cc2c8b5dd635e/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4f26d28507fd42f04c2d481db256aa311a092d441c1de6cdd92fbe8f/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8277a64a9592603f49318da3cde081aee9517180a711928d27b905bd/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5a015c28d99a3c869959dddf7bd0e7268c836d7396f2e32d4b5387ae/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0605b817bf5f8dc45c7f9883406985be13f95f9fd24b6bd4f5a1b10e/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f766572d56f6e2cf2f9d4c85248e77dfb22f91a57de501a81e9abbad/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ef156421424010325807b996abec8a5be62b4c71f9346388d485d9cc/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//cb381386246842f76150e495f423b6e287344a13a087c513c16af343/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//358fc996c194ca2c44afe150e3ec2ae957e1b41aeb24e0490fe3bebc/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2d2e3cd5c45fd581a9f8bba2ac639f4ef6994f972d0be730a112c0c5/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//93d9820b28747365e8118347e610f1f440d3133a27f703faedd266b7/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3dcd2b13e5ac4cd9916d4eb449ef83864894691e55402292bd5d2224/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1cd0c57779ba29b2545a8a5edcd4caec64a214d205170e8d1abd34c2/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1cb5a10c07df230f509a65dcaa0d1928851eb4d5f7870180ee1c84d5/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9b21fce21fa7e86084bea892acad9b15fb43151d55725e2c6e8687d6/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b6ab0c1e82f01667fb7c8b003905d3d187f10b99ebb4ac656702ab87/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f215f8cd792ad7184b91fba5fec5b01ca31f9333de48c6466e20aeba/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WBJetsToLNu_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a5b75a869fb457b7bb0d52acef027efbe3988f3dd1ca5798aa4530ce/000000_000000/0000/tree_41.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..9a7e3cad0 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,9 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a5d26b5d1ffb2513c997b56b29de2fe9e13c96e1d87f8c8583f18801/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f99657ea96ed1907aca682bc45a5d29fa085bedcb650ad7574a85a8c/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0324f7f5157cb73ec0c8d93f9b94f847b4cf7947144f64cb1e984b78/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fc4538948e7e4eed59d623712b00dcc6e55a9f8dc700fe74496f6cbb/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c80f41e3ffb8ea2debfd2c8607367a8c236d99d0396ee5435996eb2a/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//19383afa0f6f593a804e0ee235151bfee9d325d42f31b2ae413603d0/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//cd8a0225c6d19f2d48ef36f884ff42547857e5cc0702586631ebd595/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2c58504fd57abcd6bcebb2663951bf051e083249e73b98fa7197adc8/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b8d1e1f151b36cee32b42d913b3a8ae356c36122ba389bccd666a9c9/000000_000000/0000/tree_8.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..cf0a81cc7 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,41 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f10152cef0a491a8c0c13272a7a5cde3797c64c7a4557f78154355a6/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6e6eaf097b96a64a7fcfdd29c38e8d70e139a0c48f0ca8f1d382bd28/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//66bdbc7ced9825ba3c223d15543787afd82526ef3333283d3187b984/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c8ff71ddada0c4b5888a233629cd5fabccad6239b8c98974aaa98339/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a69d95f7ef3b9ade395b4921e53c590c72cea1a75df5113b7778884b/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a99ec9aecfcab10c398a43929b35d9b9e397ef18c5bcf46d53ebe28c/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//496632d344a6689debe4f0744120fe4051f6904d96b0cf6b3d684c34/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4a3d64bad5555012781bc57b226a26ca075205567bbda08f74ae23c3/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//df5a332ae1ab33235bb12b8015b1a75ca66dc51ce7235e26d229221e/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9a79a0f87e563bbb64492cc0676c836d641a599242d1e1a22e5c234c/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4d3f42fe42ec557b3619dcc3dbf70330d7fd68656778f745305cbf02/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//de168b2793dd64eb0f824b64dd98e650cedc067ce2dab283c26d4e99/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f2f11e85967e1b91727b30675b70d65855ee32329a8d34226fcfb8e8/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9720e20d037ebc8a0133c8b0959da837f4a6c973261c1752888ddf6f/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ef80baf1548bd6bdf493705b54d438759499fd23103345b30c498a74/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b31e1b071fbdaba960952c8f50e9dd9e4ae87320be3960844582f87d/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c7300ad5ce8a5ac88ada8029490bb06b69bdbc11dc39331ad0c26002/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//245a21235a9e35f87d0ca1481484ff22ee1e5abd198e8934b4b91abd/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3e948d44febd093f520a3a356bc157241a599e93a4621f5388f6bfab/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5490a771487b2e27818297303d996e6375297985945ee0a51bc24de5/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//051d755891e9beb0027617d69c926398a13611ad722a71138a7ae029/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//22c6325cc9960bc887c3fabdbd691a2925b8a5af31d3c448d03eb2a9/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1476a539f4443cd911bed50cf7e3cad790d2d5527f2fac0163d05e89/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bf25197b00ea65ef21bb4d68105867dfd0274f1d67e3043e6748f454/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//aaf88153512a0523274dd4bb303405551fe2bb7b0a4ff16b1a6a6cce/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0658128b0bc4270e8cf2b5d95b7e01203846bae0fcbc46287ed77bd5/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//18a65ea9a0d9053e1bd277748ee74a00cabc38d29b9d944213912eb1/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//82c80a4180b4e04fe6628bfc20f3adc01f25c8567347308b35b53264/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//931e7fe0978c667e22927fc503d1ffad16edbfc7fd9b46214091a5a8/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//01ab41b7d404586219201efd915288fadc2cd5ec3f13bcba8e542ae5/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bca6bdc643e5164e7dc96d7adc5da816d074abc7b661bb847e5bf02d/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a85d5fef30bc33f5660abc39e818d806b49f0844e1b255511708333d/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e98b5a55ed68d80f8dbbdb726b64e846aec0ebe8b29de41fd557a67a/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f6669263d6b49df6b9740f5491e47282109891a62433603d610e499d/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8d3e0f0b4e3df17ff39c77baf09900aced8764ec8b05920d1a7a82c7/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//677125e1ade6efac8fceb8a9cdc721abb806b62a09968eab3e972801/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9816b7aa207f5c3faf084f606a3a197e13202d87b0ec91ff62234857/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bc9746ce6fc9460ec1ab13af58fe3ea37d91ab3ab70f4509e9528991/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//539c0e03d7606a4a0b4f15e2d16451d4ab927f0f0a61ae0b0502dd5a/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2aece2165af5cb44f3b0a484f5ab639fd0671ac409fbf3cd213c5bce/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2887fbbb976095c6eb36196fc27559de3182f36500c977feaaba60f6/000000_000000/0000/tree_40.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..71ce53cd8 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c627d2184fc7a4d2e65dc36969dfb5d84cc91119abe9fc74a7abf2e5/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-100To200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//095c7f758487c6d813d15c76578d94ada1a8093ac176e9e3c97933b7/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..7d74ee4cb --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,35 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2539ec2a439088927c332ed4a76bf953fca1e6fb04051e687804e6c4/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6fedd0fbd996dec83c87881fc6da59c15eb38071a12b45aacbc0955e/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//357bec2741cd39bc5683d57ecb106a0ef0faad66f1ce70a3409857ea/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5d8a415e606cec22f8ef1a4849a567a5699da6d324c6a07cf3cda8ab/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6f7fd9b93df9b55970aa3b5d8cc7ad632a6655c634f0ab0222e857f3/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7ea3fc8573b17b42d12f69353c00c0575362b00aaa11276881c0d038/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//31ce376c94dd67a4d695c455e4ab54024986272399b4104bf250373c/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4bc1489cd515ccfc6d2595dc39e16d37d2cd64909c837a7a05eb5d2a/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f39bbaab004a51685b5deb9aa32089a0818b13a4b97e622ee02d2189/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//79dbfcaedf830c550f4950e44f2cd29185a7d9eb17b33feb36f47dde/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7a8a23a315c67f82a8d1bd9c841105fc30c03fd221597ccd399db9f0/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9ae0ca014429c0aa8f30a0491f162deda69ecf1d00a6ec2e3719912d/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b9c6b96099684b7548bf9e0d1b45281cb3938ed00b959d2b2f77de4a/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e5a099ee24974858f7da831cf5a9f6e4079e857b7f7574cdf3268fd5/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//df9e5e1cb1904fe804e7c3f0b78e62b4aeae420e4c33aeac33df9220/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//41507aaccd85c61e3e232eab3b2b6e1873dcc2ee77bda4f613e05f2c/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//28dc5f2bc8472a6ab0cacbc4e26b182b67c9369f61471ab46a9ba144/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6add3a3b135045349785f3d36f2f47b58c867b0a48ac016fae283ec3/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e61de20b709ecf8c5bc08660aa245bc501caad4444b0aaaf566c37fe/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ab11c2208356aa62f3ad43ff1caaa09c1ab27973fa8d8ab9122001cd/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5a363b36f8aebd219d5e69dc3d95d28824d80a04a6f9ce17e570a70e/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3fc24db47b6bf9f9171590ee4dbcdabb6426f61a0ea40945fbd28ccd/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9ac7284f0f784797aa9f4183e576cb1f73bc890516a93bcde895dd36/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3f6a6e8670d255a543c4f4d685e5e78330d6236d4c124254d61b9340/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//305d6bbdfb88f473db904fe6066bde395d3740550b3c63bd8e8db614/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ea485e276f22f474eea726dba3c772c6e4fcf85409fe78cc6d7baf7c/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//27bf5ebea8f88e64b60037ff014a9240ba9d359d4d98503ef37f3946/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//58a85151db21f0ea47a7af8d3ee2fa6e92cdd12902166ec9b51baf43/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//65925284e1201ffd821653d4d6561fbfe93f76ea32c32baad1247d60/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6e0e90052eee21c56a931bfb32cba3a3a8d5155b72eebbfa06e6eb00/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bc486b73549c1ea525022d8990673305350c21d3dc1a3b6dda4f4b6e/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b3fdb91a2da51c2f60141bcb272207c0874e9a0863a89e77b5dce827/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//56fe54f48e0c1eff65b1139c694a253c5857d5ceccfc49eeae5320b1/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//895307887b9028f0604cbd5ee8a39d7edad86fa2386af7c93e48023d/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-1200To2500_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//aef8f733267c394939141502eb25dda41e22a589dbfaa772a38e66d5/000000_000000/0000/tree_34.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..432138df0 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,24 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4f4c5f93203a50f6602aa14922e1572526d894b543736085588c43f8/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//66061369331224c2c1513a3b861ac861aa38324062b232217bd40ae6/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7a5c9596cb69e6de459258f4551b2daff9258929b8322dbbe4799f7f/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7356a3e1d00bb3a135fa7058383172afb023ad8fe6da9a19dfbb7006/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7f0943efc25bbb1394cf73b7e317cbbc4de3a4be59abce18bcb8561c/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ae6cf6aa7cb1e77ad7e755dabd96b32aadd96b4d3f024787d20119cf/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//74ff5de7020ef5a24c968ee7435cee873bd9f5a309c8d0fa9ff8bf53/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ca8ae86ec5f1630742ddd5d6af3e0cb922c500f229516dc3f717be0e/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//edd72b8bdeba4588efeab4ec1b7d22b5be3653fb8af15ed0b443b22c/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//def083930ec60b02b9dc17a0337c7838769fa3ed7bae103bc1c3e82f/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2c02ca8bcc2a1a76ca302b9cf7e2fe0aecdafc3f8638c879a74f4564/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c5b461e1515f2cc910a58589491f54b78437ff2912c31e36718c5fff/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3e326d175dd3c010872307a0a19269e207c20473f641afd11f1a1780/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c34a9140ba306677b3fc4d7c627c6c66f525062e8e314d72bf8d9781/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//29c7416dfd64a55dc1a6d60b15f1834b5569578922f4e165c07acf8d/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4652c8c742c67d0335770f909b067711dc045a221efc4d810334b588/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//84a41f736d4c2167a5784ae61305371df2fa2fa24449a6aed033ae46/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1f80bcee63c9228801f53280c3f409ae3bb4cb4242467a20abd4c847/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//47ee6761e656297d4a2bd6b192b5acfd9fb076c64a14ea97a5f935cb/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//306ba8db6bf6fa2d5afce27bb27ee3cc4529d02e4a9fb5290338fb37/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bef418d4a84e8dfbee03812657051f08e084708193dbc4e5c4a7ba52/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//be58fbc348150058387dd3b425b81764ef412cebf3b1359bda82bf46/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5c5c4f570e008ce5a9537772e58d112fa67ae74e3a977ae66239ab41/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-200To400_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//53411ec107c263f114298379f26862e14f812fd3ef3fe4cb8349d485/000000_000000/0000/tree_23.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..090762083 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,13 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1bbb2c69695354b2c823f8de1e146f783287f6c0447f41e767c9628b/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d43444ba940597a482c683794255bc50ca5bf160c4446462382ce9b8/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a9f7fa050633f9cd64b2fc51d7f373bc93f592f32d8a98226f7c8641/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0384b16c0fde112aee7bcf7be7312671aff0f3b8b1728db85ba5ae78/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e1491d6adf10d210932ab6f25fed780746c95995813d19cb2e53e514/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bf5419af7f02a13cf545650df17020ed481548d5451a5d8419722d33/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6ded3733d69869043499eb3ce64121e2fcf9b6fe426186aec5df086e/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2a565b48df58fc5be24e4cc83a4f25822388846613497ce1d70f7fd2/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//993b3bfb2b0999df6d8826081a56b9defa21b4cbfe62dab62d8ac27c/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ea30ea39d19a1a440686bd72889c158df0d5f99454b681ca02986804/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a0c2da2e72af3faac84f875c973d78ec290de350061f9d7f78e7c552/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//54822594714a413d30fcc15952a5c97601922168f033d92a708f2347/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-2500ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//70c5c93ff687eb040366ffbacc2a4ba32121e8542d9f061aedfba982/000000_000000/0000/tree_12.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..d14a00d24 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,17 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9d4fb0c637b27220aa5c0b7d33204d6266af7af5f8bd9cf23da3d05a/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//470008f07e1c42aca0bb702a2aa002158e4b51589c09738de1d4f06a/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0531aea87f7c546c15cc25f5ac3f06dffb0338e32a94eadb1ba53e96/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bba0bf6480f18bdad46ef79a2c1b3f954b316c566a984ca75c8cefba/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//06b359d486b4e5d346fe76e81b24d1b74c98be434a1ea16072b4de6b/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//afba8c3cf3a4945d3b9db94c94b347c6a1ab40851dc869de06fb263e/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ddd506379872c2115b2990e93d59af5965f4accaa7193b9e430209b3/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//36d16967fbffeeb7a398a230921faf4421c2b3b57e4b46aa5eb664af/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a1c60e1aa87385e3f509a49fb072e692db8f05f35c94d3666b64eca9/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8126e65e037d21075e4559ee37a6ca962a30459dfa3c8f156c7b4aa6/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6b0321192752e62bdbf83338281993ec25517943db629796eff5dfc6/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//20fc612612ef603ed3bb7e03385b6c5ddcea923fad67aa3bc649d09e/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//07f4cd9c77a0dfc8d0e9a411bcd1f4827b9273d9864d9f55de417ae6/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e5fdc7339d6ff4a95acc7cc71d3dfb84889c1f622d939357d49860b8/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c33eddc7faebcd4f25ca11f1fac9dfa8b82b4810c57ee5ee4a5fa066/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b6ed8276eb3c03551ec4f6d3be9be377d530818f4c0b3fa5fb7839cf/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f0ee1d49d38b072c714cea95dba704ae806ad3db28d532a361bce67a/000000_000000/0000/tree_16.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..605db4516 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,63 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//79b6bfaa0ca66a0f7855033bddace21e00f9d71fa8c6a06559c4459b/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a88997b8752cd22c07707b681c55977e44b83da782d2059a3cf207f2/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ea33ed7bd2c9e0fcb94435b981b6bb32303deecb052f5c7b4cc14122/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//27a138ce92b04904776551ff5e5fbf945e09017bb893a8ccdab953e5/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b07885684f03a3a2db03abbf7f219bd03972e17d2c9db62cb5333042/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e0ca679f04561f7ca391d5d633512a647e6df4b4ee1c7de8e430f95a/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b35fdd9b98b5f5c90ee78e0bde6d4eea1173667f8ca3bf1a1303ee17/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//88b09b29f0b4fd265dde4a2fc157d1a0a3b08c920a1da2ee3ee7c831/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f7c7c1ec6783c3e4f1019fe5a8d19afdf18ef83278bddb091013a3f5/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bb1ad0207a37b01d4be14aae3738fa3e36392ccf9120b3689e0a9f55/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//268a79189ceed6ed8b654d52fc42ce5612528d117d51aae0b11e5b33/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f66cfe6db62730b858179d8f9b8cddc22d8916f50bf542332908bb49/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1c45d811f31279e16f18e9ba7e8272ea51adf20591b7c68484a0743f/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d36c2a869cbcbd38a808d9dfca8484650df10081d671456d476513ea/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c2344d2101cc9e22a0a34996b8db4caa8fe0ea856de665acffe36c4b/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e63d434a5339f7b5309f31926c0107f5bdff916f65df2b461fcb15cb/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c4410a28f10e9b676cbf55a9ca6c96e618192438d3441f57f00dd291/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//db88126af0a467c16b191a79fa9ddcec63f39556c0d1c48edf63c76a/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//92ca8f91c77908acab39fe2eaa01a27f5dd0a9bad676e982e3f914ad/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//94ac48f7570ac17cae212ff3110e1c855b25e69c629576361d823f1b/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4154457339c6ea9b86b020f985ce95770bdecfb902ad81a31768a7dd/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2c77e1b150a4f1350823b2b9e3f936870bc9cac9dba69885af97990d/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8da8c12390709ce917d8ab5e264dd039527bd36dd35dea633a3cacc4/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//34468ecf7c94e200e1750a1aeafd8939705734d0b8816f9ef934d99c/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//11dc5ab3d99f5dd5c147773ad5265c72a4f49c52d360ea09fa298199/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//df95d69d376010d04588403144caa0af62c5c999056876fb7eed8491/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//38ad1ccf36dd428b11854827c292888bd18fdb8f29375788c3e3098a/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//52add767785546d68983caf4e47b2f6cfd20b857524502aed21ec436/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//02f4df92882ae6b40d544f24412aef709dbe276bf8f4924d06d70639/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3a7f5877edb492f5d9134554ae78270a70932b69121fb1d4b87ea500/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ba13de72bfe19ddf279482bd127010d9273c1400ac84687fac8aea3c/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1ce67f57d91c1cfc539144b4e876b570d0c9aee4291f1efdb9c4da70/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c9dc99ff4061362f0c99f635422fe1ca35082e2d111b23109f7613e7/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d7f34a5e2997c8f6f35323703ea7c8274bf17d4da7bb136f4b98778c/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//83bde73fc31afe64991fb01bee68276dbb6d1a28606a0c974cd78c8e/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//05e93d8dda022097adac94272d11899e1e87deb07f63668862b06267/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//68d9bb4753ed9648a6a51f65361b92347b8a817feeaa4c0c71bff26a/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a03020bccb85871eefa6fe0578ec08bba9f03b1e85e17f53a8a3dbf3/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//64a6a24d2f9676cccdc6f00be4fb381dd8fc8f7c8e391b2fcde3ae45/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0e979420e4b31646ab96d22e7676f25f7082bf1a648de375235a8967/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//18db8142738cf90370d51eeb3e26aead46d07c784fe8d11fa4b01d67/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//cb6e28254ae78870c45445c548123c958d1ce27067ca4dc15f081f3c/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//82925f5cb4e5bc334dfa25e86011fe41afff669f111a9b3eb4fab1f5/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//837c101860c03d524a0e514d83998b5d2877f4d6bf6e8f3ca137ce68/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1badedf371fa23732fda6ec5fe4547b61db027eda53aacfaf0635cff/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d854c03df04b16e75d457ff32fb3e9be42bcbc2a91b5afbae865d1a9/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//877a7d194fc6e16b8c30f607406b0d41570d80abe8de33aa5d184d01/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0a82598f210dd8e1f3f2f07c3252b570d2776d70f608380af7dda6d5/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9d7760c1182b4c52a586a08d67a1acee5df81cd9daa1cab56b03954c/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7b67519d4f03f04409f04308c7bfa5c0f8aa9c2e37814f13df821329/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a274ca69e80616540c939d6a02e7abd8679c4703fb8adb27d2fff9e2/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//197fcf34965c0717c8620caca59eb5a57ea97d2e0f262266651fdc2f/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//76815daf9be694a01c4bcebec3ea891277a7752050085539408d52fb/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1313315b2c7d5973b4d006f1d5813ec6c0d486591ad887faeaab248b/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//127592b582172c76fb57fad38873bbf27b3f3f88087e745fcd978242/000000_000000/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//901d1a88065b282245b85875a69be63239586228ac260026945ccb2b/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d8840aa9cfb38440ecfcf9d366bf5d784be2a5b3229e948dfe3eda62/000000_000000/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6a50ed9beed1358753361cd6c5938195d125b3bd701d81564f110b20/000000_000000/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a1a684e46c1d20c590875828a16c3fa4314b89fab63f82374a5b103a/000000_000000/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ca71eb25a89179e006fea1a375689b8914f3a4765d26a0c59571ef65/000000_000000/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ac1ae0f26d2127f2e23f8102b48556f661fdd849bdf0b4170be90592/000000_000000/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ca17adce6543339771687e5a4ea35bc1b3f2dd383d5d0110765c1f63/000000_000000/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-600To800_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a325a36e5e73fe433c07c9fef8e85a9f485799bf468bacc160a33098/000000_000000/0000/tree_62.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..4bb8d0e13 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,33 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d82133e03024e959461eb8f6a1eca7d760b743dabb56ab74e04ee68d/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8ce260660fa0c090208eeefcbafddfc8058ce6df97eb8700facbe4a4/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d2a03658e6efa1d284ce55f8aeb38efb8345d87a4376467b74d55c90/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ecebc569fe06d9c44932a9c9ad63e750337383b300d8d59b03a350dd/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1bf44617d084ee47d5c16f7c7f2772987e63540230433c5f06d0d7d1/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9fb86c86bce90763d00fd4025af422a40a7fb4fe4c72d86548642383/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9821abc9b56f0c3cf9366f2b7898582b05cd68b45bc875744488f5db/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//62306d3017be74bd303b2a73ad3805c78e4bc87370f567fcfcf10d9d/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//567a34765ee87823eec175b9f6d7cfdf97b7ad26ea6aa963f31e910f/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f3137c2673689e1cfc20bbdfb9e0cb21c21aa78c0dc7591d8dbb6736/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f06bce7e6ed2174ed79b90390407aea56fe9c44a1bbf4838d19d96b1/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f6209e57ad0ab03d97b145fa713e623e2e63ed3c2871358ae0a837e5/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d27d553139bdbe81455927b23ce34c2b88b56abacddba9d762d1448a/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b00491874e2c2914c60541476768aed7db6c27c9d3b20e34220d750d/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//effad0efd3675112b41839f7cf7515fe9d35ce1c74022a2cd301d67a/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//97a6e01920bb326e06fda37da727807821a7519516604ea7b8b827f7/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//59ab8579880db299fe727fa3a460daa3f238c417389e69c4c0ae90e8/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//efedc235de9ac7fe1ee61b547359292e2aab9e47fd1ce0be03f4b2d2/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//546052a5bca376f846879ff95e9a56c6516006c26b21ed021e4c168b/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//205e77912fb4080aaadaccabfe8130276f9d6b379c19107a1787afc3/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//dceb4082b9d16b1e9795926e2df5983d478843e3a83fcaf0713f899f/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ff99ebbc8aed8e20d97c86bc6f43c45f91379b3b8ed183377a48d241/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b45ea681012997d267030471761e7332d5fb7390b62ed2b0c52d0ad4/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//da0c490321f637586a4805d783b8e503648796028c5b5cbf48c32843/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9544d095168fe73911a04c824d64f18bca13d5c7a30a5ae3024f1f4f/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//88e256e5817eba80047ffead1345bcb1d91caf01d0b9279f581db8b6/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f1ca044ded3691d3a1f086cb3dc04c795c0d13c1354864a21e932b44/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//982b958793ad37e873d9d743976e814f188c4e96e45b5620a601daff/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bbede0297a0e62c0d122d7cf6c2532a63e243079d80c78046cbe1f05/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//552a4f8107449a1840bb657844ad92bce74956e4952a7500a3660d75/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a319a93f121e3dee3f6744c0acea14eea13d044c6b76cd810abedd8f/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fb19abfeb3782b1d367496b349814e5b353e7aba33c8aa1e1b82f148/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_HT-800To1200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f88c18cf88fe955996945f22aa323b7a8f420ce3ee2bccb352c11e74/000000_000000/0000/tree_32.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..af3d2ac31 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WJetsToLNu_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//225c8e6ea5c0ee3db8ea40a5eb12ea8424d389c83bff008892ef14d5/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..2b7f475a5 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//ef691bac47d5d71b9b7c5930586bbe6d831c15b68e5c115a1f846917/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//1a4d550705dd931afe802fb2f1bd9adf05fcc541e3d769eb340ecfc0/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..7d61575ff --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,7 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//4c00f50d9203bf09de96fad6f62760ef024edddeda97c14ab12e3c4b/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//9fa0c341f4dc7e209c2ad34efe878fd44d18ce5ae14d071d1a9eaacf/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//e5ee4c3b1fa117ff331fdcd0889b227a56dffe1d639d9e9d11f09474/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//1c65f7c1240f0a2e37e4d4e6d2abe023549a79d0b0c82efa44a9e2d8/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//0085c9b005d651c2c0aa21744206d55108bc8290f1750007000fe3fd/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//650f00e4e4dbde7e38095f73947d6755c1370573730ababe8569f8bd/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8//99f9545bd0e120fe4a466c330d46436dbe91a105ee45e4a07d810183/000000_000000/0000/tree_6.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..8edcce037 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//ab58ab561021834b7471ef757acf96afa748256dd41b982a61f231b1/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..290f2fe8a --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8//bafdb931ec52fbaa25ba43c788305c5e04968ba552861e216b3d8c6c/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..df62e58cf --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,14 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//222a6a4113dce17c384db55827abe74ef6bfdb8f14ad408031683a68/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4d3bb0c597377d0dc883f33ff1c188e8b4a84b0e3afb14fc6a8146d2/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d43a4b0c7bf0c8cb15f4c0d829d26f3ab9f17c58611b3472b7f913d3/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//954e77c5882f45ecab6f00777c05413643f4caa45bad5162b221f376/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//81f5e9c219f25e25fd5951f18ebe4046f81feb7a33db0fd1cda5111b/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//31c6a340c0a29c1030eced17a0da2aab7dfd167f9c1cbdc3d01c2643/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//48395380f37b7a10d2b1219ed4679dc9ce75073e8ad0c5f8024516f6/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//eb78a542977e81debedda1774c7d273372cceb4b1cc730cf194264d2/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//66b823fa0d133a1f3a1a3bf673029c20a53dda8de5d639059b93cd75/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7c6ecc393ad6103f640eaf17a60af123c4e8960bff0ec1820f6aded3/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2a4c7cfdc75803524c763f583f0742a3db571c8b45f277548205578b/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//51823c2601f569f52561d1959159f0d397e9f1a920bc078b69f7d3bf/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9f05257a5c3e29ad8e9d375f58b9f8413482ad3f3a7a3dacf2e33814/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//129561e57cd65bdc2029502e22f99058f1c9939e197e97fcc5a0f56e/000000_000000/0000/tree_13.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..2eb70bff3 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,26 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f406859297f4399fd6170eaf5cc6ff905b778bf3654096a4ee1da213/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//cdbb5fbc4555c280358d4444aad58c1aabfc03c3f2bc9164c4096465/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1d3a0618b4fe1a9a5ab6dd69a52b4b6e334094bcb565556c77b95dbf/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//fcfa112f4b42f4930f8021395cee3f402eaaf20e10257ff8b0a6b52a/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3039b6841b46d120bc672fad4317f477645b622ba2f2c8fc474e75c1/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//6c61d73b5299c6e252aa29b1eb29f729c4283221d829d7e6861249b7/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9875907475c4d90722732d91304dd5512fb729253d2564fbdbad60b8/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//de205d1737eab1988bf0285069ad8ad48494cab0b0a56fdd6282904e/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//28d3f4ea013626952196cd95d5137e08796365898dc8c61afcd784ea/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c7be4f7b8bf1199afbdb78ff8f57756bbb4164a5756d00898b4a1ea7/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2b24d20584c2267ef7cde41e04329d79d47b9a0a7ada8eafc6fc5b36/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0d697c8c8e80a79f97c6fe66855bc41e64988e3cb64c1f32532218c2/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b5bc2d4c94c4c8dafcb3afdb08d24b1a6732ce3ec36cf18b4d05b468/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f16e60c7dbdeb13c73dfbe0bded07ad67c6c31e94c69f71a28565612/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a5e6c719bc273595d9681fd0bd979582178257a64aee2f36aaa835aa/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//29438c6b4f2a6cb54bf64016d71bb7bded0a47016089ea3356d54c45/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e01936550926b05304674ea0eba6c3e3685c3872b15320f3052aaf8f/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//07a3ba3c1b4dc86f9aa7f91481a193dc35cc4f3c24e74a2ed5ee4cbe/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f10d44b0a9cc219cf12caa91ab6bdc8bdd80fbb393318888e0d16f50/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//d0c3db38d4d597843bf352b607f5fbdbfd9c7786552a8cbc1836f13f/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//59c67adb0fa00ec695272f8671fcfdc28c570f4d4c71339d03331197/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a8243e322708f6c79847573a05af980759d7c5a6cf2b23d0a1f5c70e/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//000cfbb58a44faa074b3a4913735c1d81be4df88a1a1b19c8bd69689/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7699b2f3bf25f7ee157d580c4b91b9c9a09aef57da68138c6871a60e/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//79536426710de5eb530608cbc7cc3d8f21ba26aed5d1acfc9c7a204d/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZBJetsToNuNu_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3098be9838373ac45d95f7352b608b28e578584505a1c65ec37e5c2b/000000_000000/0000/tree_25.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..b3cc001f2 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//be8c4ebe34391fad98c9afb1b02577e353d6a15c79833f15484d7158/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..3272581b1 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//260fffe1113d29760b95d0786a0d9f5f797e1a303d66071be5802670/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//a0a6e9502707ad2f57756ee3da596083895af445c36835386a72de30/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..1d34f42a3 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,12 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5d04da9e6e8a7b7a16605a99e9e3081138f04460533de15fd353a52a/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//1ab7e316b3c75418ffddf0540d675bfa8a53b40bd301a2984bb37bd0/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a4f33534c68947d12bde5f48b3d21572f34c25db97c692dd2c086159/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8c958aed2820cfa644eb986f84836f52a4b420427b8f1261fa019208/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5316a5425ab31361f56a0e3e4f6cb21052730b7fa0b9f2952ca996e9/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//bfb7d84e603efda8891c817c6ca419c5ea21c085f81e4601f9bf6262/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//a61800e6f16e00a4618a58dc320848cf5d5617ef7e5641ac15df8560/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//2be97785b27e6932d0baf61c32136d646577d896f29cac17a96e3a7b/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//120c4729d5536ae7171340c0ae8bde909d4b3993d8089ec5116545b6/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//f27b69474eb2b0db99cd840d129acf4b4103d9274195c2f8f283fa0d/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8b2207bef603c954d62c88f48e334f5b16c7edf732674f9dd137edc0/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//40b3706798875bf7b805a551baed2dee8d96eabc4066e63faf72ddd2/000000_000000/0000/tree_11.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..99946a402 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,33 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//556a798324c405b106c504da0003eb0a9cedab4f5abafc82c98e08d9/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c98c544f79ce9566441c795334e19fc80380f2f640481232e75e4cd9/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//5e89e0a835aa10d94b45d2d3a1d273ffeb9c5aa86baa3a9cd8436f41/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0a1cdfc3f275d888a42125e922da9995cc77266836a3721dc7ecd58a/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b8b4ed78908daf35a382fab23b25f7a2fc6b9236df6406dbfa3d80c6/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//ebae863b9a1bf83d4546bfeeee5e94505cbd6c244396ff65d5580d55/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//7dec838d70d280d36fecbe2905275be4825af47dfd5cc1df2696f4f4/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c1307f0ad4cb38d621da9d1895b2c62c5b0c2a5852fc19e8cdd218e4/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//0f6df4a6d54525beeed5741432896424d90aaf864e8d54b130856154/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b4a95d2108b1abb1c28e4e56650da8c8c6efc1128cdc10167abd15f7/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//e8e454cb2b427174b97c489cd06acdfd6938f96e64f1d23e657e4057/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3680d6d50aeb92092c4ea6f84cd336cf03a0cc621e820a5a1ef9e395/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//b7bc1deb9fbe8278926afb3ac1881af564b66b09cee19e8e670d3c54/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//24da6ff8feb1f7c9db5a16fd40debaaca09b7d42bebe9992a21909e8/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//122cf30f7587637c4dcec3915c991ac8ab727d4a6fc0598243125a1c/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//aca177c59161bb3ad7921dc5282004ccb6f372540d073d0a9b893e90/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//60b8c81416a99f018ebce6994263b3356967414e582e6e89b6722c80/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c4854102f46fb5e673d7d661d5d7ae73d792a21aebdcd397e009e01e/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9e08b8655ea4cdfebaa941b793022f414e822751f3301a8188dd5423/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//14e209ff5a627cae3beaf2f982d2164a50044f53c622e2ce4a241a06/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//25fdb94ba95246d6859a139c1705968fb3cd3af8016b73a8525a43bf/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//984e0f9f704d8583a55b2b54bdb68e1b54cb7f9ac2133f9f52525be2/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//36e2fcd6ae05586c34e91649850b215968beba3fcabc280ec05baf86/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4980ce366de5944737e7ebe4c7c84904c98ea42f1442f07a7e246bf8/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//9665b90ac32c583b16fa65d2b8f9fac566b2506fe568a0ddc848c5f8/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//3580bba6a0be1f8abe1031d6d0c42059fdabdc4e6b13251ca183a0f4/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//14e6b9561b3d174e0b941950d4c74a681fcb609a94f3ab27ae1d1bab/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//152bc914851232f101ef279a6b69f04f535772279327e6c1f4a9ce6d/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//8b42b4f794b182e5b54ebf1f22235bffae4cbfb14963e73cd377a3af/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//c09f5cb3c2e8fb47700b4b55231162fac8f3d6cfcb6a048390b3d5a1/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//64cb2ab82243652d01251c15185ede0658883921353ce71a153483d1/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//238acf95e94e73cb70ba1cb45a84f7a0cacd7ff4cb07fbb9e10e9406/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8//4cc20c43ef3e0235ea59b8ade4c17a0a8eb217c929e7aeb1a3325535/000000_000000/0000/tree_32.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt new file mode 100644 index 000000000..444920ed6 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt @@ -0,0 +1,4 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//38c6a8e9424537529f03394bc2197f5ba982896e3218c68b5e95c3b8/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//44d26eb36a17a925b7fbda7db00c700f94775c64ee37fb9aeac11e51/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//59685491b1cfeab7b1215754fd51969f0ddd31c006d71d580a6ef3f8/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-100To200_13TeV-madgraph//3950d8ee4cc759a21f93e6d220824926c5a3b3bf6327adcb756772ba/000000_000000/0000/tree_3.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt new file mode 100644 index 000000000..9b149237c --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt @@ -0,0 +1,4 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph//af35b7b8d91e4c2d90d00baa9b369370307af669718eea1dbc37273b/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph//b318998b67bcefdfecadbe8ac03386c5da256a871b9b27ecb90d5b13/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph//42f685f7291d29963b0ba3776424e7eb4f23db356aa42a4e42a10e24/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph//32359bb3b9bfd14e258632bf2dbba9abb77be7d91df71c445263460b/000000_000000/0000/tree_3.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt new file mode 100644 index 000000000..e07243b01 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt @@ -0,0 +1,29 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//e331a994b85f967c5eef716d9984750a3fc466da30e741a2753dc1c0/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//22294e900f6c81cba6cd626f2bf8e9c07a958be76319e72093a5c1e3/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//9eff519281868f7252056e2bf4a0b883abfa751ca41dd643fb7cdf26/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//afe20dd0984ba13bcf70d5d431b8d6b40de929c981096d45a70b0218/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//41d2ad8455760b3ff7a77e736f6f54b0209c07bb124741e48603555c/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//4815bc0faabafa34d84d636562ed953e64d5bee42c9a53e06c0aae9c/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//23a4143be956cbeb3b78e20a69b8b516b2dba6452bb908ad9992b358/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//ea868eb482447dab25ae5cb77b6f25816517770ce2e05342a7fe39e2/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//0bfca3ff0fe0668ca92c4215e18a8ea9c3e6bf2a05ce3bf1483d9a55/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//67561999f8e739d127c940034c3efb2cfb7d6c6d5871fb728987065f/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//0453e88f64b545051c5598f5405c78a2726e0faa60285d46b5d76639/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//1c75ed347338181050b98787bf41ed3fba29b320470379cf944a020c/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//754436965781c9be22b8d7383bd2d450da1fe2053e1d2b641a2b9132/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//97b8da0f053958cb2cd1ad1c7c59e934f7777b297e9892a2d29e7375/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//c565a26be54d6e8eef77d5104b3e95c02fb47c6dd49789dd7969a3c2/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//e2427fd856eb0dd27f3a045e4d96396e9ae50ab0f8941183003c76db/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//2971f6c3e99297960618429c89f7fc9ed5745f6f4e74c37a6b8c0088/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//4d5c9aae43c02ec5c5515f5c2d1ef3bfb008c2dd62cab65751aaaaa2/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//692040a23f9f21c1578c885d9e82e1aecf2538c4d3633e8592d51f82/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//07b733b294957c34476100331fef05cbab6defa5db20b1fbc90440d4/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//2ace4b9fa308753f8b2aeca4cd676f79d26e25e5af007602230cc9b8/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//48435f25ffb42f9cba4f57fc86ea242a1679f34aa8e6a5720ad5b233/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//b158410697b961c3f465d0e28ad801cd41bf99121176bd79fa897f0b/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//dec14c53d2f89df4dccdb6c077ab6a98c933691f5e2dd6140b3ff151/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//f0fb7819c1b182ff7083ca81ea779c12cdfac250bae409f0b7ca6d4b/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//b3f83f3a8859b03059f49c7e7bc97a88b14034cb3b2e725da3cf6b53/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//eaa064c2edb7f2d1f13341f854408abbf80af5a58a25f7c30d1bde16/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//a49fe5f9352935cd75763fcfc90bab5b4b4eeb5828ad2bd1c6a330fd/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-200To400_13TeV-madgraph//5ba4bc95454c706d4888e51dba9fb59f8260e0cb8116cbab47fddc77/000000_000000/0000/tree_28.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt new file mode 100644 index 000000000..e6e47494e --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph//46ca1e1479a9d21736945fb92ba696ff877c17845fd0b11a3166bf8d/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph//5739e1768df50b0ae16ee8415d89f486a9021c38bb03d22d30ceb837/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt new file mode 100644 index 000000000..e110ef01c --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt @@ -0,0 +1,41 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//d5b7ae97a79c3ae24d93a93239fd2964754dbfc9b751527a188d9ef8/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//02d0c6654fd42d3025a8f64253d1c060bfc227deb6b01d85ae79b98e/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//492c591cc3bdf9dcd08d1c4e6e59bbfb3762185b891255cd74fe0ef1/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//e0ae8f48f994d68dbbaeacf8e816048bbdce221ba31340f39c3b9595/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//bb7c5cb5dcdcdeb49f8bfee45cfcf68278dbc3c5cc9be742f269a1c2/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//26ed02a440491b93d662cbb606ef1ee7dbd55b87276fe9f79e86dcdd/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//dfd789c1940f861d20730f0b1351fe22ed67de58d490a1214b4e960d/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//eb3cea630f8a202a17372a6b44ce5a1b287aa381cf5991c4893abfa4/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//823e834cacf5b26a9341b5aaba9b1e2d4f6b456a316eefde0a3f2af2/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//48ee34e9d9ceaae60f573342db579bb16a2571602a90d62386e3b626/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//59d17a38a22a5f49d98e636446742ff94255e9d56e1a20040f928ea3/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//e2fafe652350c5c5f0ab534e3fe98d63f6ca1447e8e14ee3ee4270eb/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//0aafa17a7ec5400b2bbf14f1fa1df4a2ee7eacdcbb8c717f47cb7852/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//9e3f3aecbda01ab81fff981ed80e66f482a108fb84a6dfff58c53f9f/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//f461023846d212ac0a7b2512460627a5ea9eed8ea782eb151a4337a5/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//9e43b5b04bbd23309c84fda982263f0ff8a199b7b058ff8f319e50c8/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//c11d6591c20b49935c9304c8d43503569fca84fd2aa829a54bd2019e/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//55addf97bfd5196a91ff2a72ff07473be3da62edd621c2c88fd15a9d/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//243719c6a3867ed6b11580d95dc7d740dcbbc7492c1feeb7f99f6f57/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//660005e2929c5a59f68dd0f4760a41971443dd69d90f6b2d1fde1e7d/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//c94d3f468c3d37926d57be83cec0c348fa43f6a94380dc5846672ddd/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//9282a1566c17b7ad27f7e6f01386c3bbf7508b4200df07f5a45a93e4/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//e5cd41f417108147fe5f8b3627ee7d94918e23cc82c2e86f2543ea6b/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//306b653d6f82c2347390b8fe998d931d71aa5419a30fc85b5ad589a4/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//6c5725e155f92a61f2efdfd1e7f2f06710d47fa93fe3a2be35b1f826/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//4975450a6815ac939f86c3160ed1393c1c7d1c215359afede0227fce/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//c23bc6f68743f17df3aa96c3faf4ac5d89a5f26a0867762cbf8c66c8/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//a624858b01f8b28c645fe570606496659c36b528d4d91b490ee21b24/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//62a9cced9ce25249f58efacbda2250555e44e19169758a4d4b219d42/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//123e09b9a99bdd69b92a1f97145573e1d70bca73c9c90e74aad432e3/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//154916ab5ec710e1df6262d3a0e8270d7d1b4548b11953413af82bc9/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//21acb87136f56cc1f7e7888e88f24de99bcce18a26e460a3e11f0c27/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//f620879834490dd760582481fe5cb7ba3d6d52277bbe5480206d173c/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//0646cc32fd2d0794b3239a279426dd952fe57a2eb15a66fb50e76462/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//ea2f2a20f859633c129fe9485a00edef4138ff4607870dfe8feb2b8d/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//811c94bdb0924c24694865f560fd4320a7eb50df3b563d1a9dac4854/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//ec3b6f7e58eb781f7b4a4ab46c58debd1c3d7dda0ae3cb997d715823/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//90b0b4f983405cc2017b378c8bc8633b1e9049f668046595399ba06f/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//976ca50be613e79bbf3e63c375dbc8ec5d844f6b2fa92ed1e4a496b3/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//d7aade9ae752aaf6f483f9f26f582de2784ce8b6457e673c02cee4a6/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-400To600_13TeV-madgraph//f211e46ab9d30a6e43a6e1270e775ee09bf4bc5e5dee6932874bf3fd/000000_000000/0000/tree_40.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt new file mode 100644 index 000000000..6b1006748 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt @@ -0,0 +1,24 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//3a54ad9a883456a044859fcb4bbf91a39096fe0eb93ae24a7b06e0b0/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//4310fdd3df8b887b0cc149455e9a7ac02c308fe798aa4796820fa76b/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//9953e184cf9d50d796a5f28cc1d9cc265f738d19f8e46b53a8484e5a/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//2db7b5b2307566b9b72374d9889506be93e162cdce8f24eab666b8c2/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//91ec4c91358db5b58baeb85c1308665518b9693288ed22aaeabf0c18/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//2a81312d25a085c9a460eebb74cad0f1f1d5ff222274a2d1cf0ddfa6/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//3fc4cf36f1bafdef4ade7f515eabfedc85d03c70cac01fa6eda258af/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//da712d861634ebc7e0be13067e1664334f4ecff7ffa594a103cf1aad/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//52aa19715c04345132befc18a973979dbddb23677c9baa015d2f34b3/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//042d24da19d514206845307acfd47dc79b2b94b44e054a4c4dc8d06f/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//864dc3dc6a32e81097d2982c0c0945e27234c8a176e052b9e9c9c179/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//a8172e1a25d292798ecc3048eb54dc1df56a2f14c6d0ba4bfbf002e8/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//4bcc9fb046e0b9d7c45460db6c03586434278cc01bdf6ea38d3a1d21/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//9c166f0c109215012ae5730167e5a41aac3d259fa26d1eac209f9a28/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//b3565f9be5234afa99ac7e6e9ab06e9acc024bfabc3cf7135dde93a4/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//b0f25f8770d32c53ea640a344a04eaf331eaa653686b0906a8c9920f/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//7d5bfbee09e819e028dc28442cdf358ea2e720ad11f0fb7122646289/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//fd01d7bcd0dbd10fdb51a54d98c206d07317916c9601cc7f00725f1a/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//ca2f3da79a25483c9d95018e0424fd27744446c789b684078e45ec59/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//7e277bcd62c39329fca4d79837054597f0902112a47330eb640d9833/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//c183ce87075487e43456374cd506c8a177dc756900399980aa2344e5/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//bd4ff46b6da3386c284442e3758c431f762d680772f06d9680bd5aea/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//16b28c9884b3514cb54f10af01f777df10384500eb94f386b584f030/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-600To800_13TeV-madgraph//197c8556b91d5aceed3eeba62db2de6f13910065b1b664e7e75aeb00/000000_000000/0000/tree_23.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt new file mode 100644 index 000000000..f35d3b2d5 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt @@ -0,0 +1,11 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//cd3c8dc7dbb065ef7d2d45527587d9a90506cb5cca98d2409e25be94/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//91ca66d162e2bc67f1b2646dd976071c409c31772352c5f2059e9052/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//55771c0f10b7b6ae90b5c23fa5fd3d509f79292af60f0e039c8243cb/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//daa176408a96a932bd6d9266887f02174e0cc9f8f4135e4988e07f6b/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//e51d4bfe2b49029e7ee5ca5cdbb72c86767fc8fa98522cabc694cd2e/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//d4c85d287ae4875f3f40c988fcdb079030dc6d3d71ffac9f90cb3a1c/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//95fdf8117f2d865039f96bc9bbd20f1c582f3bdfb94aaad44237cb3d/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//9b651a42770c1cce18b293e038e498c4cf4142cd63c8926629c583d8/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//54d4fcda1e7ea6072227418dbe130434ee5ac32f80bb1a60a9870dbf/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//3ab76564778e9b24e8c2fd2e9872e8e0445f57e988301a0c2b496b0b/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZJetsToNuNu_HT-800To1200_13TeV-madgraph//e12d7e6db9016b6ca325e85a7f8dfd6d59c3a8df520eee14eb19f76e/000000_000000/0000/tree_10.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..fbebcb618 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//eb06e1f902b6065f2998bf77f2be5bf19a4e87b60f67f3e7f3351450/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8//89c7c3e7f5d6375809b0b77658cd0340ff951907f256820a5173f0b1/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZZTo4L_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZZTo4L_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..f013cc71e --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ZZTo4L_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ZZTo4L_13TeV_powheg_pythia8//3dbe79535cca3a35494548039defe5402a8342a1370a74c637a0089b/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..212f438da --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8//89404e45260d716984031822abdc351fd8aa754aa4dde028c767d6e3/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2016_V13/merged_Zvv2016/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..aa4621726 --- /dev/null +++ b/samples/VHbbPostNano2016_V13/merged_Zvv2016/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,4 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//01949606ca03be632f5f60f9b43f8b281ecacd38c925df5110c1ec9a/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//22ed78e96055eb7ad2ff86a0d54af2f02e3b59e0550eea9bf0eddf68/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//ef91ee67586b6a2a00dbaaa50a3478073dca3e94721f087f66055443/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2016/V13/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8//76839b501a6fafb8c2105593ce8e6036df7f7caeb5a52513d55b09b0/000000_000000/0000/tree_3.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..1ec5d9116 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,101 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_124947/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_125031/0000/tree_9.root diff --git a/samples/VHbbPostNano2017_V11/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt index 115ac709b..c39ed5a4d 100644 --- a/samples/VHbbPostNano2017_V11/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt +++ b/samples/VHbbPostNano2017_V11/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -1 +1,763 @@ -/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17NanoAODv4-PU2017_1289/190426_125557/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_202.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_203.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_204.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_205.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_206.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_207.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_208.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_209.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_210.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_211.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_212.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_213.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_214.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_215.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_216.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_217.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_218.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_219.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_220.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_221.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_222.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_223.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_224.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_225.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_226.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_227.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_228.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_229.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_230.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_231.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_232.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_233.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_234.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_235.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_236.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_237.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_238.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_239.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_240.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_241.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_242.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_243.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_244.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_245.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_246.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_247.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_248.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_249.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_250.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_251.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_252.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_253.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_254.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_255.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_256.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_257.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_258.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_259.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_260.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_261.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_262.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_263.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_264.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_265.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_266.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_267.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_268.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_269.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_270.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_271.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_272.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_273.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_274.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_275.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_276.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_277.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_278.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_279.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_280.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_281.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_282.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_283.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_284.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_285.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_286.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_287.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_288.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_289.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_290.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_291.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_292.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_293.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_294.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_295.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_296.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_297.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_298.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_299.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_300.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_301.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_302.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_303.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_304.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_305.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_306.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_307.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_308.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_309.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_310.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_311.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_312.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_313.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_314.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_315.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_316.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_317.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_318.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_319.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_320.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_321.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_322.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_323.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_324.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_325.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_326.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_327.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_328.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_329.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_330.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_331.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_332.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_333.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_334.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_335.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_336.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_337.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_338.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_339.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_340.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_341.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_342.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_343.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_344.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_345.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_346.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_347.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_348.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_349.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_350.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_351.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_352.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_353.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_354.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_355.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_356.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_357.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_358.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_359.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_360.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_361.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_362.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_363.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_364.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_365.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_366.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_367.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_368.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_369.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_370.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_371.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_372.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_373.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_374.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_375.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_376.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_377.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_378.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_379.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_380.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_381.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_382.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_383.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_384.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_385.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_386.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_387.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_388.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_389.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_390.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_391.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_392.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_393.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_394.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_395.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_396.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_397.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_398.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_399.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_400.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_401.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_402.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_403.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_404.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_405.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_406.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_407.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_408.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_409.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_410.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_411.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_412.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_413.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_414.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_415.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_416.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_417.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_418.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_419.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_420.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_421.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_422.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_423.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_424.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_425.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_426.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_125113/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_202.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_203.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_204.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_205.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_206.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_207.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_208.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_209.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_210.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_211.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_212.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_213.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_214.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_215.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_216.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_217.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_218.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_219.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_220.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_221.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_222.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_223.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_224.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_225.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_226.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_227.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_228.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_229.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_230.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_231.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_232.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_233.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_234.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_235.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_236.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_237.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_238.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_239.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_240.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_241.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_242.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_243.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_244.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_245.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_246.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_247.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_248.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_249.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_250.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_251.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_252.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_253.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_254.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_255.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_256.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_257.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_258.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_259.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_260.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_261.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_262.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_263.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_264.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_265.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_266.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_267.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_268.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_269.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_270.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_271.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_272.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_273.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_274.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_275.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_276.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_277.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_278.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_279.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_280.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_281.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_282.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_283.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_284.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_285.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_286.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_287.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_288.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_289.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_290.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_291.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_292.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_293.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_294.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_295.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_296.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_297.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_298.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_299.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_300.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_301.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_302.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_303.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_304.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_305.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_306.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_307.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_308.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_310.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_311.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_312.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_313.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_314.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_315.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_316.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_317.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_318.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_319.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_320.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_321.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_322.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_323.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_324.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_325.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_326.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_327.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_328.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_330.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_331.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_332.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_333.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_334.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_335.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_336.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_337.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_338.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_339.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_125156/0000/tree_9.root diff --git a/samples/VHbbPostNano2017_V11/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..94d12defe --- /dev/null +++ b/samples/VHbbPostNano2017_V11/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,11 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210511_103648/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210511_103728/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210511_103728/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210511_103728/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210511_103728/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210511_103728/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1286/210511_103808/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1286/210511_103808/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1286/210511_103808/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1286/210511_103808/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1286/210511_103808/0000/tree_9.root diff --git a/samples/VHbbPostNano2017_V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..a2316f6ab --- /dev/null +++ b/samples/VHbbPostNano2017_V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,579 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_202.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_203.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_204.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_205.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1287/210513_125452/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_202.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_203.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_204.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_205.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_206.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_207.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_208.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_209.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_210.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_211.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_212.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_213.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_214.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_215.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_216.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_217.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_218.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_219.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_220.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_221.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_222.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_223.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_224.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_225.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_226.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_227.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_228.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_229.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_230.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_231.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_232.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_233.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_234.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_235.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_236.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_237.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_238.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_239.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_240.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_241.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_242.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_243.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_244.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_245.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_246.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_247.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_248.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_249.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_250.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_251.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_252.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_253.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_254.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_255.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_256.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_257.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_258.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_259.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_260.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_261.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_262.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_263.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_264.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_265.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_266.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_267.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_268.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_269.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_270.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_271.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_272.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_273.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_274.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_275.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_276.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_277.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_278.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_279.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_280.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_281.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_282.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_283.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_284.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_285.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_286.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_287.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_288.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_289.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_290.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_291.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_292.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_293.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_294.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_295.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_296.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_297.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_298.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_299.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_300.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_301.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_302.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_303.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_304.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_305.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_306.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_307.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_308.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_309.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_310.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_311.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_312.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_313.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_314.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_315.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_316.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_317.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_318.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_319.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_320.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_321.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_322.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_323.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_324.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_325.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_326.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_327.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_328.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_329.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_330.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_331.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_332.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_333.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_334.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_335.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_336.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_337.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_338.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_339.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_340.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_341.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_342.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_343.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_344.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_345.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_346.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_347.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_348.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_349.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_350.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_351.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_352.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_353.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_354.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_355.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_356.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_357.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_358.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_359.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_360.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_361.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_362.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_363.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_364.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_365.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_366.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_367.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_368.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_369.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_370.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_371.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_372.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_373.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_374.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1288/210513_125535/0000/tree_9.root diff --git a/samples/VHbbPostNano2017_V11/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt index 5160766b9..e0b8d361a 100644 --- a/samples/VHbbPostNano2017_V11/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt +++ b/samples/VHbbPostNano2017_V11/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -1 +1,114 @@ -/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1296/190426_130208/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1289/210513_125618/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1290/210513_125659/0000/tree_9.root diff --git a/samples/VHbbPostNano2017_V11/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..2678f3cc5 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1,49 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_144124/0000/tree_9.root diff --git a/samples/VHbbPostNano2017_V11/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..476c61229 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1,53 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_144205/0000/tree_9.root diff --git a/samples/VHbbPostNano2017_V11/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..977f5b740 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1,24 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_144248/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_144248/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_144248/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_144248/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_144248/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_144248/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_144248/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_144248/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_144248/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_144248/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_144248/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_144248/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_144248/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_144248/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_144248/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_144248/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_144248/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_144248/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_144248/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_144248/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_144248/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_144248/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_144248/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_144248/0000/tree_9.root diff --git a/samples/VHbbPostNano2017_V11/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8.txt index 2242891ac..6f83d9589 100644 --- a/samples/VHbbPostNano2017_V11/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8.txt +++ b/samples/VHbbPostNano2017_V11/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8.txt @@ -36,10 +36,3 @@ /store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8/RunIIFall17NanoAODv4-PU2017_1280/190521_144151/0000/tree_7.root /store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8/RunIIFall17NanoAODv4-PU2017_1280/190521_144151/0000/tree_8.root /store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8/RunIIFall17NanoAODv4-PU2017_1280/190521_144151/0000/tree_9.root -/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8/RunIIFall17NanoAODv4-PU2017_1291/190426_111759/0000/tree_1.root -/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8/RunIIFall17NanoAODv4-PU2017_1291/190426_111759/0000/tree_10.root -/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8/RunIIFall17NanoAODv4-PU2017_1291/190426_111759/0000/tree_2.root -/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8/RunIIFall17NanoAODv4-PU2017_1291/190426_111759/0000/tree_3.root -/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8/RunIIFall17NanoAODv4-PU2017_1291/190426_111759/0000/tree_6.root -/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8/RunIIFall17NanoAODv4-PU2017_1291/190426_111759/0000/tree_7.root -/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8/RunIIFall17NanoAODv4-PU2017_1291/190426_111759/0000/tree_9.root diff --git a/samples/VHbbPostNano2017_V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2017_V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt index df21cd41f..62db0d260 100644 --- a/samples/VHbbPostNano2017_V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt +++ b/samples/VHbbPostNano2017_V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt @@ -90,15 +90,3 @@ /store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/RunIIFall17NanoAODv4-PU2017_1281/190521_144244/0000/tree_96.root /store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/RunIIFall17NanoAODv4-PU2017_1281/190521_144244/0000/tree_97.root /store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/RunIIFall17NanoAODv4-PU2017_1281/190521_144244/0000/tree_98.root -/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/RunIIFall17NanoAODv4-PU2017_1297/190426_112355/0000/tree_1.root -/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/RunIIFall17NanoAODv4-PU2017_1297/190426_112355/0000/tree_11.root -/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/RunIIFall17NanoAODv4-PU2017_1297/190426_112355/0000/tree_13.root -/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/RunIIFall17NanoAODv4-PU2017_1297/190426_112355/0000/tree_15.root -/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/RunIIFall17NanoAODv4-PU2017_1297/190426_112355/0000/tree_16.root -/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/RunIIFall17NanoAODv4-PU2017_1297/190426_112355/0000/tree_17.root -/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/RunIIFall17NanoAODv4-PU2017_1297/190426_112355/0000/tree_18.root -/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/RunIIFall17NanoAODv4-PU2017_1297/190426_112355/0000/tree_19.root -/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/RunIIFall17NanoAODv4-PU2017_1297/190426_112355/0000/tree_20.root -/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/RunIIFall17NanoAODv4-PU2017_1297/190426_112355/0000/tree_5.root -/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/RunIIFall17NanoAODv4-PU2017_1297/190426_112355/0000/tree_8.root -/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/RunIIFall17NanoAODv4-PU2017_1297/190426_112355/0000/tree_9.root diff --git a/samples/VHbbPostNano2017_V11/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt index a6606389e..fdafb9a07 100644 --- a/samples/VHbbPostNano2017_V11/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt +++ b/samples/VHbbPostNano2017_V11/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -1,2 +1,150 @@ -/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_12134/190426_133603/0000/tree_16.root -/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_12134/190426_133603/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210511_130652/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210511_130652/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210511_130652/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210511_130652/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210511_130652/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210511_130652/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210511_130652/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210511_130652/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210511_130652/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210511_130652/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210511_130652/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210511_130652/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210511_130652/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210511_130652/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210511_130652/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210511_130652/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210511_130652/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210511_130652/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210511_130652/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210511_130652/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210511_130652/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210511_130733/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210511_130812/0000/tree_9.root diff --git a/samples/VHbbPostNano2017_V11/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt index 1ac5ce193..8db169432 100644 --- a/samples/VHbbPostNano2017_V11/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt +++ b/samples/VHbbPostNano2017_V11/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -1,2 +1,136 @@ -/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_12138/190426_133937/0000/tree_3.root -/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_12138/190426_133937/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_124218/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_124301/0000/tree_9.root diff --git a/samples/VHbbPostNano2017_V11/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt index aa63711e3..b4e1f0d52 100644 --- a/samples/VHbbPostNano2017_V11/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt +++ b/samples/VHbbPostNano2017_V11/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -1 +1,732 @@ -/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1288/190427_144801/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_214.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_224.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_231.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_232.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_237.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_241.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_244.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_247.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_249.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_262.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_268.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_270.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_280.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_281.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_283.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_284.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_285.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_287.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_298.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_301.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_305.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_311.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_312.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_316.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_325.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_326.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_327.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_330.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_335.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_338.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_348.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_352.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_354.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_360.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_361.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_363.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_374.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_375.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_377.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_395.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_396.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_397.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_406.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_409.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_414.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_422.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_425.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_432.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_436.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_438.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_452.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_454.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_473.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_478.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_481.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_483.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_484.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_485.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_486.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_487.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_488.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_489.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_490.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_491.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_492.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_493.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_494.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_495.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_496.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_497.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_498.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_499.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_500.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_501.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_502.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_503.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_504.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_505.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_506.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_507.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_508.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_509.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_510.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_511.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_512.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_513.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_514.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_515.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_516.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_517.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_518.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_519.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_520.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_521.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_522.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_523.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_524.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_525.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_526.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_527.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_528.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_529.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_530.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_531.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_532.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_533.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_534.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_535.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_536.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_537.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_538.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_539.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_540.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_541.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_542.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_543.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_544.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_545.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_546.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_547.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_548.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_549.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_550.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_551.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_552.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_553.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_554.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_555.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_556.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_557.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_558.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_559.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_560.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_561.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_562.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_563.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_564.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_565.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_566.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_567.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_568.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_569.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_570.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_571.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_572.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_573.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_574.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_575.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_576.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_577.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_578.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_579.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_580.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_581.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_582.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_583.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_584.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_585.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_586.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_587.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_588.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_589.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_590.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_591.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_592.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_593.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_594.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_595.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_596.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_597.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_598.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_599.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_600.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_601.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_602.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_603.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_604.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_605.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_606.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_607.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_608.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_609.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_610.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_611.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_612.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_613.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_614.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_615.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_616.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_617.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_618.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_619.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_620.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_621.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_622.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_623.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_624.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_625.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_626.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_627.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_628.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_629.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_630.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_631.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_632.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_633.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_634.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_635.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_636.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_637.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_639.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_641.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_642.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_643.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_644.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_645.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_646.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_647.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_648.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_649.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_650.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_651.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_652.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_653.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_654.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_655.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_657.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_658.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_659.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_660.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_661.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_662.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_663.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_664.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_665.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_666.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_667.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_668.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_669.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_670.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_671.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_672.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_673.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_674.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_675.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_676.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_677.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_678.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_679.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_680.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_681.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_682.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_683.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_684.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_685.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_686.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_687.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_688.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_689.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_690.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_691.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_692.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_693.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_694.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_695.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_696.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_697.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_698.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_699.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_700.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_701.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_702.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_703.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_704.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_706.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_707.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_708.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_710.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_711.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_712.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_713.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_714.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_715.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_716.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_717.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_718.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_719.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_720.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_721.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_724.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_740.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_742.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_748.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_749.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_750.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_754.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_772.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_773.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_774.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_775.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_776.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_777.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_778.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_779.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_781.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_791.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_794.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_823.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_824.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_825.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_834.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_835.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_836.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_837.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_852.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_853.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_854.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_855.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_856.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_857.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_858.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_859.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_860.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_861.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_862.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_863.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_864.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_865.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_866.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_867.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_868.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_869.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_870.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_871.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_872.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_873.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_874.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_875.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_876.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_877.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_879.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_880.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_886.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_889.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_895.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_901.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_903.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_933.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_934.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_944.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_950.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_952.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_963.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_964.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_966.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_968.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_971.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_972.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_973.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_992.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_994.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_996.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1005.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1007.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1011.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1021.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1022.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1023.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1028.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1030.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1031.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1037.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1040.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1043.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1045.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1064.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1065.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1067.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1070.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1082.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1083.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1084.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1091.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1096.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1097.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1211.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1226.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1227.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1241.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1250.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1252.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1253.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1266.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1271.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1281.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1284.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1285.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1287.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1288.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1290.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1292.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1293.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1294.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1295.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1296.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1297.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1298.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1299.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1300.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1301.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1302.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1303.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1304.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1305.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1306.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1307.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1308.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1309.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1310.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1311.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1312.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1313.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1314.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1315.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1316.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1317.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1318.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1319.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1320.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1321.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1322.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1323.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1324.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1325.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1326.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1327.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1328.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1329.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1330.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1331.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1332.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1333.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1334.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1335.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1336.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1337.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1338.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1339.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1340.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1341.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1342.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1343.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1344.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1345.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1346.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1347.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1348.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1349.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1350.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1351.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1352.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1353.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1354.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1355.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1356.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1357.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1358.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1359.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1360.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1361.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1362.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1363.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1364.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1365.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1366.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1367.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1368.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1369.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1370.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1371.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1372.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1373.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1374.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1375.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1376.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1377.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1378.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1379.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1380.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1381.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1382.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1383.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1384.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1385.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1386.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1387.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1388.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1389.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1390.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1391.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1392.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1393.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1394.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1395.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1396.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1397.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1398.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1399.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1400.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1401.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1402.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1403.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1404.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1405.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1406.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1407.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1408.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1409.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1410.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1411.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1412.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1413.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1414.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1415.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1416.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1417.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1418.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1419.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1420.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1421.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1422.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1423.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1424.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1425.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1426.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1427.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1428.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1429.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1430.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1431.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1432.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1433.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1434.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1435.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1436.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1437.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1438.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1439.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1440.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1441.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1286/210513_124428/0001/tree_1442.root diff --git a/samples/VHbbPostNano2017_V11/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..f9eb4a3b8 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1,75 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210531_145432/0000/tree_9.root diff --git a/samples/VHbbPostNano2017_V11/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..04a9d2e8d --- /dev/null +++ b/samples/VHbbPostNano2017_V11/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1,96 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210531_145513/0000/tree_9.root diff --git a/samples/VHbbPostNano2017_V11/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..cc7fce9e8 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1,96 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210531_145557/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210531_145642/0000/tree_9.root diff --git a/samples/VHbbPostNano2017_V11/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt index 9eaf7156b..ca9ea38d1 100644 --- a/samples/VHbbPostNano2017_V11/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt +++ b/samples/VHbbPostNano2017_V11/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -1 +1,135 @@ -/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_1298/190427_145644/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1280/210513_103439/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1281/210513_103526/0000/tree_9.root diff --git a/samples/VHbbPostNano2017_V11/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt index d07251505..b4f1a05dd 100644 --- a/samples/VHbbPostNano2017_V11/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt +++ b/samples/VHbbPostNano2017_V11/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -1,2 +1,24 @@ -/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_12100/190427_145826/0000/tree_1.root -/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8/RunIIFall17NanoAODv4-PU2017_12100/190427_145826/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_103610/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_103610/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_103610/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_103610/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_103610/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_103610/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_103610/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/210513_103610/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_103654/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_103654/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_103654/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_103654/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_103654/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_103654/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_103654/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_103654/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_103654/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_103654/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_103654/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_103654/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_103654/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_103654/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_103654/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1283/210513_103654/0000/tree_9.root diff --git a/samples/VHbbPostNano2017_V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..d44481461 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,220 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1284/210513_103735/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1285/210513_103819/0000/tree_9.root diff --git a/samples/VHbbPostNano2017_V11/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..fcd419eb1 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,11 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/191121_150142/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/191121_150142/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/191121_150142/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/191121_150142/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/191121_150142/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/191121_150142/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/191121_150142/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/191121_150142/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/191121_150142/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/191121_150142/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//RunIIFall17NanoAODv4-PU2017_1282/191121_150142/0000/tree_3.root diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY1JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY1JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..21c10ab54 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY1JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8/d6b88e16dac8ba22fbd0f1dacbcb8dc934aa527dc19964ed62a25417/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..277f72b15 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,34 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//93186eba75025da935844af7b07acc339dbcb3ec1855111d76082f05/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//62f63e8e42447c1de7ebcc0c2746dbdd4a44370569c90401f8bc30c6/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b1910e5aaf67bf9db01d1a5f5f6784ebd9763a5927ff6e3d7590eb6f/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//bec9bd813b1d59bf5fc505ba5c28a9b2f879c8d823d7c098eeed4941/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5d976cdd74f1307e5adb431d4575e4341cf52711ee51ead0397186a9/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a514ff5b98730a8e691d66cc030d54aebe1392c0537db3d255ca5b65/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//7e1869916497dad846fbdc518e826d78211c779cb52a7bb9ba43713a/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//fefa88d1228bfdec1e7c47bdd1148d5179308ea211378b4ea1893fc2/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c52391d2444c18904d3dc695bacdc04a52456ece51c7acb02bdd8ba4/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//cf653b85320bc2269a64083524f83438e9a3fdb1d0d4890520741bb7/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//616832fc3f052a5fc8bacf51a5e654da95aac13768aaa7c44f0bd115/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//193267680685f0d550b8e9965a9d0971ec4d1934e3d781a87d935ac9/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//faac28082f721c0859b3925355a253e63f9ac3dce6076c0c816de7a7/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0ab3c6e3a14661c1db2917b0b1fc2e48738e9ef75fd10fcd26ed950c/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//938bbc7b9097e2263eac9430a567610536872faa28d323a23688805d/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//78736d651196c8e8bb0564ef73043700c62679c523f420f8c11bf2da/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a05cf05964f5a774afd639098d9f083a0d98e2692a23e20752468753/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//87b77dd769e84d7c74a41894352fdca08aa167b71f5f7f9a10945eb6/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0800fce044987e8291a396ea84345966375121f2486ac98ec53ca467/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//48f047812c157e872b7cc580a4cff6a51cd63f04d78a79daa9e54d6e/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//8b9dc5f6cc15013e83fd648f2bd654a809d4115f43ed155fd77a09dc/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a31ef441ca848ade702180fdb6fdc7f91d766a94e26eb3b487a5ce92/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5311246d2c421593fca73161feb9279eb07e0704d357640320ad6d8a/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3d712aba5fc009636636e3a46e038cf6639b17dd6add502061aee678/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a36ebfb10bec5039675c00d75a7fdb14e339d34c7e3be79e44172ecc/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2616b7fdaa26fdeca4e4c388daeaecada8afe9b1354fa22c3bf51639/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//52cb5a921da9fb83244a2bc4322620657707994d65ce08ae993c2bd9/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//149bd41fdf9476acbff204e54540138e9147c52b8438ae04532013d8/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//8d2eeedbcd796fd74bcf111c999025c4cb0add9f83762d84aecb7679/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//695f5e38cdc091b88502b6dacdf521c4d21d1ffd1430af06ee844c14/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//82c30b84cef966b7095f9450bf1d70a725bb7195db954318a44e8e93/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6a3eee29836a990a58656a5aba2060034beeb730ff5bfd65f1d2466f/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//cf60136c4f0335b4a5cb03a9a70efe6f105cdeea296c01c71d6d9b68/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d238e5b57bb21df28cd48874d810e25307667b65082f735185a7580e/000000_000000/0000/tree_33.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY1JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY1JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..060b11ca9 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY1JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8/ea85b5d3ac72ded6d2b245da6449fc5af4a7290d0c3fa569de153174/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8/b396a7580006ebaa100560724d84fe4e935ab52f1996cb2e3ef7970b/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY1JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY1JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..6acf43a51 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY1JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8/6db78d7fa9e0dd59baa9dad80f509fad04f05316fedcef735b59f8fe/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..4ce3cb7d7 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//4bb2d5a4f1ba1e42c1ee0a61b35b6b591a2289f9c2d42251ca915ed1/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//19661acaf584325f7a1bd39c6acc4fb9252ad8ac8335b4cf79f0efe7/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..dd67e26d1 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,11 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//1d9a7268bc87382a0e40645e66de2c0d8cc360f826da5a50cd87459f/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//8311d364716797a20bf68748392ee4f8edd071baf7e43bfe827b5315/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//d95dae51ce7da18080ea151568f8cee349793fa70932d86a6d1e7bfe/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//755aee649371c262dc3206f31a4184b49523ce28b2e000c683f054a5/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//8e5ac5cc7d643cc8809cea54babe6614a505c79ca7ba23b73534abdc/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//89fcd3055ba85444d26fa1a5c6a8815daceb26aee282f8d4ed41ad85/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//9c576fc5d43d1d7157caf0ef2be6b6cee6a21179b8e6ea9c4c6f8605/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//448612b1e96dcee1fd4c8516d57eeb8e937de517eeeb7561671e98c2/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//46880e5eb1d2e50bac37d3cfe0d42bc576c56a1ecc6adee660483c08/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//f0f12fd1c7bd44ab217c9c4dde25896c1e6f64b69eed2a99b472f87f/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//f7583acf78ce127c6ed980c33cc602d721903031cc2291fbf5a85406/000000_000000/0000/tree_10.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..50502d2d8 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,290 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b840e2347adc9ebc856cb76adb1e466db10c3f75e7cddaf74491464b/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//645734f9fe2a6979734190a052b10ac96785b4208054a1afbef09154/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//faf2d690f362c5d1ca260aeaaafe5ea894617418828ba24046db99ca/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9d2de253b4d3390d13976b070f934e9b10a320680c65380a50f38317/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//09e62b1004ecee8283b4ee4ae5c8df14b54b3c6c52b7a56602781015/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//fad4dbd2649e4930ac391933a3da5ac80e2b9ece0fa19b9ff3108792/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//80d72397bd9727d5db24dc16785b19cc9359e56e66aa67678f3babcb/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a6d97cbeb5005e3aad0cd7d485022e9c4d78e5bda29035124c4f6431/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//78c1d8e1923177cf17e51b5e20ccaa5125a402e18fec360aeb135c54/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//395cbfceb164c8a7018d3b73eb7e81e151a11d873aa74cd60e2e2cb1/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//aba3faf2cd4a770a0fff350676e7257847089bc9a90169d13381089c/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c9aadda6494448ff684f02118ca0c70990c6c0d68d8a1611b9225eca/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f4b53a649689f60f9426345e29f4b3b351c24ec1762185c28ddb19f8/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//19babdb67171757d5a75f0bb3b1a03f37d59c0b070be31dc67e05a75/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//334f3ee21814577fb13bcc9ca9526e6b4f141c837b775b512c2b37a5/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0b636b92abad9c10476c98c62987592b037d89e545fdba01f67244d4/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c07b368de37d4ffb7c281ad5f18546f270a34bcb7880ea1780034d65/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//742266435c2ffcafb181603a1a1f15b07d8dc00006775ae9e6622e9c/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3204bc0ec4445b72d3eb82b4182b9a7d8cfe0d044582e02d7f4f5ec0/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//bc67fa7707794a88de163f67bbc97f98ae8c239629133d2fbad8a4f8/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//658b432f7bf17745cce73f9851f9f44ceb498d2a0bbe522307c8e706/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//28740366058a6e0c6e5188885a3c61e9786d042c9e2eca6fad7d59bf/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1b2350d0feb612dbe76f67ad5eb245de06e980cc583d62e09a398c56/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1bac9ee75b7ea36fc71526f060c7a0733ec942f3f39af140e58c235f/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c4d1e017ce0663346f75bca3e71960ee70af879f7dfdf7959791951d/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//593b33473fb1fa76613952f57211abdeb84b116101a01efbd121dba1/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//23736f6589288ff55cb63f5618115c7a6031efdcc23d889c8b1b9f29/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4bdf397ab0a0bca4937e02cda601bf42cd39cec32d588b8dcb36cc0f/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//7fafb48011e5ea93fc43ed2306ba8755b54625b1a7e09c8241c9ca43/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//792638f8580d7f188839099f6a6ecf42ec39dcc89d8a49bcfeb57c11/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//80863d4745254a8b4f73487f1f47a57ea1750eda69b267f7edd4b189/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9403a39542a346d54980e0f4d22d8b4df0bc7b4054ec0f7debdbeff6/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3b8d64a7eed798edfe5ffa4cb26995ce59ff4a3663ba336bcb0aab39/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a74a2a7d5b90edabfc17c0066323b9bd597890a57294959f1b34a9d7/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5b7518d2745c89af2febef2d0cf89475be2042ad250da77c403dbe7e/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//401448486c499e1b1fe84a694ec1ee77110078e320fc6ddcb3ae5d24/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9e38a9644f8ce322fe882392db2f4759d8a67f2f3622615b47e99ee4/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//15a79352c5b2303078cc7d548a788ee7c26d8d7f5438a9f156537575/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//51750c8691a20c16adb7ff0234341388820ec732cf0ab0bd479594a5/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//37f4d650a7734b05edd0924a1a78aa0431877a07fd4946c4fccaff4a/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//58842dde1c2b913f0c159b72d0815382bada0b49db2131bfb8d18edd/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//79bd30eafbee20de7c9b471592e3b0d60c017759de52a588f0b12b9f/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ed4b58843cb5c89117f30215e22816d2b194637463f99235e04d58ae/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//66cd829808a51e11ba6c002659304f5a3119327c07e7aaaf64af57d4/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//292dc8e5b967a0935d40121fec1c61f24c1ab54a120c85fed32f740c/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5f96ab128145ad8a07080981c89dd1503ed03852248c0fe909b566cb/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//894a0a0a61e2a5e7737b64f3045beaa425ec9d5d5a64f9cc679d000c/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//23ce925d4aa530fb92f15a9b175cd200da9da08ffa8c14129e2a9bb6/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//7225f81335aed408b3c7e5b436d519bee38204b5c6e359db93e9e8d1/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//23efca22464523806f9d6668a4f9c9a7689d46fb05a02e139ffa989e/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ecfb5cf168ab6c2b3b9ca2babc5885c1a1c17863318e7185b1bdbfb6/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//59993dba5c1f571574b71971845809896488ee5d88b54948871403cc/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1b608c2bf994211868c7f3f440b9e2a435137c863bade8661e7ce011/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0818ac41e08c91f9ad47f5b1d324ff78c3e43382f9461d96abfbd8ae/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//902c9f34c4efb9f01d3a7df2eec971867b8a3d07daf38b2ec2ad6a9a/000000_000000/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//8864f211b39c242ee236543a5c2a0d8d5995fcd85da61310c0c96d24/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//8faebfffe6ee7fe20a65f4d6f477ce794279ab70dca6ccc9e0ec9846/000000_000000/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//343cab9a75df9b8fda4fa1c05f389d5498378351bbb2695e0d17d8ed/000000_000000/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4b41f4daf41a8dfe25838e15570f9d57a2bf93a5e5d923476b499b7b/000000_000000/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//854ac6497745af402c552632161e1294258891490d252e22043f903f/000000_000000/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//07dc3f8a9fe103d693d95d94e2b6f24467ae5fec9181f7eaa7d41bf5/000000_000000/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0f8b0885e2ea5164be5e5757dee1b4999b61879c54fb81377ca44bb0/000000_000000/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0e43d9a5617388b562f0e22d08b45c7cc7cc98f8a2088621de4ad96e/000000_000000/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ad690679462c96a0a4204083bcc01fb55eb11330c5219df8685bb3fd/000000_000000/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d9b0b122e1462db0c3c764a0cc149414e85b50ffb18006ac1f30e1e3/000000_000000/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//536e8a7c01b97b6465fc78fe11d4ed5f7e2ef6b7fe4a49fbb2f42756/000000_000000/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ffbca6de89c8d406fcda1813ba97f040b22a6407506c7b3e1b3fada2/000000_000000/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1a34ce3495ecd32edee57e6c2eaebe53c6e78a3557fb744ed7fda0c1/000000_000000/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6b7279c109c08826bdc4209ad6187608f2e0d8e65c39d893d728ef2e/000000_000000/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//bf1296d5bfbee296e094d279186755b348c10f10bb4c0d7b6f571178/000000_000000/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0d8a1adf291294b6aba1b1e98b3cdb1291fce28da16f80fe9cc15914/000000_000000/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f7d4ac62f6e7346d9f0a5efcb09c13c6cab5cfab508007f1e1406505/000000_000000/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e6efecf113d6f3088dd136ccaf7b93ee873def149677f561b66467f4/000000_000000/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d88d3bf3cf998091ef769094188d3aa87f6f0745ed1eb54830791a33/000000_000000/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d80938c1a3e69a6f93a0a59b454e32a3663ceab96775d5afd8537f3a/000000_000000/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9edc76f83c59249f350d9a82aed55e476519ac59f4221dc543c79937/000000_000000/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a12c2328908c4ae87ad622970d010e8c06ad094435a7488d6db8c3a9/000000_000000/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//532f3255d7365d58ec05909a4fe57202600a7ad1f6406612139c22c0/000000_000000/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e49dfbbeafc83e2a1b40f55a8bc349672a50cfd58f1376375eb3feee/000000_000000/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e0c0669596535c4e96cc03ff7aeb27f124f1106e0380368f6020a32e/000000_000000/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1431c9f528e48ea7cc0dfd447c0e7b3df4a2790af822afb22299c5ea/000000_000000/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//fc2c08c084bd927b23041a1f28a9e98c57d9dab1ecad3ccabac40fd8/000000_000000/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6a252f6c70fe470abb0bf79483ef880c764c66ea062aeb19e45ff13d/000000_000000/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4904c7d8265bb0e028c9c1927352735c8ca8192d59e69f3f370ef533/000000_000000/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//433ef34266895e67d8859eea27494d4d81edb8eefb3d71ab20ec437f/000000_000000/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6b5585754c7f96fa99c3e380e02b80d8dff803d44830d192060fae33/000000_000000/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//04fe09c6c32bc9633fd9ca1431f7f0468c5ae84f9f621dc4554007e6/000000_000000/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5e72da690cbd9062d88a09db6273ca899bffbf7bbd3dfaf10c0d7720/000000_000000/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e0096b018e705171386d937d4c790d9e08e4d5434840a98560545e40/000000_000000/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//8beeac13a661c495c79ee6a74f67db73746d92da27f88d945b9345d1/000000_000000/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ab6192303c6d826632179c8e3fbb58e93fd04d833e3ee8e81d74523a/000000_000000/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f61611d9fa913ab6c320e3841da01172554765a51e30cce076b1f4ee/000000_000000/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5a649b19c4a4ac0296e5f271ed21e6b020e111f4ca9b68a49926102b/000000_000000/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a61745e5b22d84aa0c48f205f15c15619bfff0ed09de54b79001ac3a/000000_000000/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//dfdf609f3715cfa1ab4dde2cc7ae8eff645462c57d93fe1abd1a35d6/000000_000000/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c5b787f986369a4e5c946292bc31feb4825906cbecba60f9a16a06ce/000000_000000/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//7aebb90c9d050b6c330afce11a6b17aad31f9c7d65964f78bd734394/000000_000000/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b5804adf705de569156e4302e4aebe4d2a4f72a2141b83bc60d67808/000000_000000/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9a70b719e864184291f5db122597d5f0793f05fe69c4a5facfce9d94/000000_000000/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b1a5d8e689e4b2261aaebd3a142cef0661ab6c86f6aa0a8758e0dc40/000000_000000/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//31b2bdafdf53b52e89a31a7c31847487d815d434fa3ffb6b539a576b/000000_000000/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ecf87300dda3f76e91e38eb3ea2d5aa1e8ad83ba21a41335343b9a68/000000_000000/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b4deefcc315e96aa2ea7d049e263228479f540f2be76faca6bd35340/000000_000000/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//232c254d8bced60b34318aa367444d238701188fe4991dddb0b99b53/000000_000000/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//58fad242157aba82cbd6f67f4f716c631668bb12c38b09d202b3866b/000000_000000/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b9195c7b7f9463705abf4986ca3ddceefb2aaae19f95339682735fbe/000000_000000/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d93e945e50c00320b313d7e98af8aa4b12ea543c63e644e3c3c61e29/000000_000000/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1cec625d45b787979010189e19a1f63b8f0e2a289b186c73eb2b846b/000000_000000/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b1b2c1e10c9b8f1f33d912c8db83a403a8901ec955bc0884aa9200de/000000_000000/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//46a5227cbc907d6af31a909b691872099f98195515ac2094265280ae/000000_000000/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c16b5f4be474564eb14315a7a59a12076a5882fc3f4f91e09e45b552/000000_000000/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b089a4e61780c3eebd0c95b6a6119e223f2d34160d56a474052e99cd/000000_000000/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//262954d320a29096c1d4d27c338aa5b4e3f87b774ee0b29dfd13b6ad/000000_000000/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//7f859bd85c5eb5919e3b17924ca619f854e687126ceda00b9fcace25/000000_000000/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ed16bddb951bbc95217394194182f19ac5d7af7450052f56075bc1cd/000000_000000/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c0fcee2f3f8b4e5e2839a72566dec73a8b575eddb5b6826879f06786/000000_000000/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//da658b17f594c0cc9b468d0e27aeda99e7bd2f37165e45467676743e/000000_000000/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//368c851f2c64894ce46336017469565de3dcc2a198c4362e2e46799e/000000_000000/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//961d82312c1c244d28fb954f9899a86eaf0f09e978614fe79d8aef6b/000000_000000/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//abeebbe74f246949c47251deaebcff57b9258aa757cef0167565b06d/000000_000000/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e21ef9492a29d4cec682c2c8a4166e58b99c5170c931ec8ebe39ef2f/000000_000000/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9dc885fa067af328195d8278bd259e3398ad56756ec5034fd3313044/000000_000000/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a3c60f355ae22a8862d276ec25b0a3173ac5199a502a71558575a9e0/000000_000000/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//30b874b5fcf0e79e9c4b6c2e32654667d4c8d9d437e6a2f0b527ca32/000000_000000/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//49d2596bc3ec38e0a44ff4c137cfa3621911a63ac7ee6967350a77cd/000000_000000/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//88192cf781582a2e71ce63e5fbfd03780b0ce6507406a30d63d77e66/000000_000000/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//dc9fd31039e2f5887f83772fce65530169897baf1621d983663bff21/000000_000000/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//77cc237852f0ff908847188f8f088ba215d9776f00fac58a1e2dccdb/000000_000000/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//dbeabc52b2c5614a57f000be52086de9ff14af9feeff94d666ad2bd5/000000_000000/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//48ad705296ce186a6da5ff4de4f4c954b3aeec3c414c7b589cdff5e6/000000_000000/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0fecbff114b56c677c49af8da368ae1158528f1d0b4a098ac1570d36/000000_000000/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//05e80f009832efd3829fcad13b0d9270d2d8c0f4c65731862368d0c0/000000_000000/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5d85e3635071f4af94b50fe44116d4f7887b6a2bee70b8615c398746/000000_000000/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//7a75253e4286e77b6207c860ab2156227081a1697f62f344b1586c79/000000_000000/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6c6632f00ca44903bc5f5a91259342e1956224ad60cded51a8b77bcd/000000_000000/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//03abb8c51ac99d92f359ddabdd041ae7015b88ec4d4a90e25227bb1f/000000_000000/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//681a4b6355b3517b7e65fe4087f671a74d535c42744c827ec33fa0a0/000000_000000/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//cfc73ce32e06b359064fa1f9a9b2fb4b714e9b9d213a51b3ac69df2f/000000_000000/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//de24731bd82d4d48ccd260363a214374a4f2471ae31e26aaf566ed48/000000_000000/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//7eab6b3d9fec0c5078fcea226a32f288c6317cc7209fb3f0a03e6395/000000_000000/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//95341513e9bfcec1e7602bd43a4874449645cd8c1f353b7fa32f7ca8/000000_000000/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f5bf9f221140a68a0b6345b0e1189b4e870cb6063a567d79d78b0dbe/000000_000000/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2cff98b79e1ceda9636f94b0c15722540d0aff152e09f621471fbde2/000000_000000/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//edfb551a3db14354f05aec1f27c1db4fe45c88dfd7cc31ba2907ef64/000000_000000/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1934e4bcade9ae168092f157ba4162619d4e702ee722a4e2261c535f/000000_000000/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6dc5302a3355d23f21a860b72569ea1aa866cd3785625b5e03edea87/000000_000000/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ecb665ebb62ec7be0d42f57ab1a6b29502a2e51c18a16795e6ed88c2/000000_000000/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d21265d6bb1aa80b8f229f4868fd5bfcf311822d33b0efe10600471c/000000_000000/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5f58b62528923839f50faf57ba689ba7dc48fe1a786bd95a2a38bf85/000000_000000/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9c9951659bf98e8c0e95bbb18a660b594f9f3a0d73ccb5f5bffc1328/000000_000000/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1763591c68b0fa46153ef29cb9656fa5a43aa466b548260bb758b402/000000_000000/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e60d1a277f64f31758d9ab0572b1c0f60a8200596488d35b7d03bec8/000000_000000/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a56cab179b895647d733ff6e683f39fdb04da441ca1e2adb7186c977/000000_000000/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b660b122c7dbd40a71d81983c29539768ef33a0d5ed61fad93830d70/000000_000000/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//750e302ef7fea86ba1599f6f7b1a40d2aaf72f3bf01bec6972d44841/000000_000000/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//013980ff21b617904b34a3e67ea842051528118a4e1cdf177a5e6a24/000000_000000/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//91c404a4c93779931780f162aae5599369879e088960340fd58514ae/000000_000000/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9a702e10396422517eb81b56e0767872fe48b2a42ecb923425fb67df/000000_000000/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//85d73af4c8631bc390ab7a8844090cbb19ff72be7ec8954421b23c1a/000000_000000/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3c309cc1d77cc3f2d8ae0081e11caf4502838cec528e07dcaade58c0/000000_000000/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d2c877cb9ae0b65f9cdc49a74c182b7b046f1e3f236edd90c334ada5/000000_000000/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//252469593058636118d82866bbae37c559a1dd197a03a7b4bbb52ec3/000000_000000/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0372573509728136e1df094ad9362c7b2aaf2bee340256687f8c1bda/000000_000000/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6a832d3e9b6217a6495b125f325e2fbc99b85c26cc818d9b9cdfcd76/000000_000000/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//96ef2a99655eea54b0b68c7825c7805ad46d2d46985a74d1500537ff/000000_000000/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//09364edf9176a5285c66c79de66a483fb1eef27890aa0742d6e24d7a/000000_000000/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//056451b44ec2d58afa6f46d5d53fcfa830c0c3ca341d2de822f30dd0/000000_000000/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//cc11bf499206c480b85a26e627b84f6d79de4adb2cb2ce07a1973b1d/000000_000000/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0188c20bc4be4c854374f2d4c1b54f148c83ab5bca834270f7afc7f0/000000_000000/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//8f55b66236c34b7fae98c78562fae75cb0b45d6a96fe94ca46de6f33/000000_000000/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//41c31e4b128c91f58c5b7c010a7df2a398661758894d3e5e850e1337/000000_000000/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ddafa47d4a54ff1e1d06507a479c22ac8411b0a8c1044e6cee33d7d7/000000_000000/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//09e88b48d1759a2c4a2df2467b1d7f8cdb813d882c21e0a1f2a41ea8/000000_000000/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//11d329162bcba336561b480968e8a0e8803f61bc881a784c25825ff8/000000_000000/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b93f8a4937cd251e22e707dbdb578c27a3abedd0b0acca1d27a89b16/000000_000000/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b3cc711c2acd0cc31efa7d4afac2b5102c521fc583f79f10bceeea8e/000000_000000/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//96671ac17f18cd01ab68d15b65bb217b5412374b593825d43718aafa/000000_000000/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//07adf35e2f534519c0418296c4da3469e13bf3e7489dbb795c47cfe9/000000_000000/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0c6dd7d8d479ac5b5cb5f82e07e236f4fd932ca7dde7b0ffe64701c9/000000_000000/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ec6860726e31d24acdf1e42cdbbe76bfc5d8bfa026ebcc4447d1bffb/000000_000000/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a643fd2c1389c55aaceee1bf950a0985f830313d8428e827f88b6311/000000_000000/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//97933ac90fcc180b780593ddecba1865bd9eabeed802a049a5f2395e/000000_000000/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//568172245b1e6c5917feb69917d3e20882817ecf1104d29211cfd6f4/000000_000000/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e94852914a488a605cb71bd3e1d269a93adbcd3d5d4a400caf6d4b26/000000_000000/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1c3c3a0502afd0074fa653b20e6130bee7d30b0b941b11a6b93c5347/000000_000000/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//360b482fa95400427c99a0ff143de897648031064dda27dacc628cea/000000_000000/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1bb3d13f412f6c00e9394558a30d016357b58425362b1ebd221c64c7/000000_000000/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//fee6f10b1d8d7573cb0f423f0cac1477a1f0c2ab7b7132c9e08d089a/000000_000000/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e18e2269d40aaf6240b3b7c449136bd64287ed7d29653c3864ec8ad3/000000_000000/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//28ba9397177c2745d50428046ac7dab81052f53f9c0d840d319286e7/000000_000000/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//de4e90842d11fd44709d47e04ceef407f1be55f8c2ff64e00d136cef/000000_000000/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//956e644dcc604ea6fc3c5d41d8885a90f8d76fff931c96df406e7ad8/000000_000000/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//282fa12af408c67f6df2993b5824a7113bbdee4d18f46d2fd84bbac5/000000_000000/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3c3738cd2b43f7004a877b8698469b5ea32fc5358c6bf6948245ebd3/000000_000000/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//51a107a9407c4146d6f257f181ef8c2c96f1c76b8f013c3385d012d8/000000_000000/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c05c617f4255c6079b9ab72a56a713ae2153baf6955cba27253e5102/000000_000000/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d6822f57ffa2ad648c67d023f0013a831795e3c83b56e42112c712aa/000000_000000/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//7e9f55d77f6f3287e7e08aac8b64c8666d25d0206bca2f3a0e0f1ec9/000000_000000/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e674c194ae4a432ea4703373f2e7478ec9874d7be694d36efb5e183d/000000_000000/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9c854cef794ab8e09b4f5903ff65605f6f66f9249a2d9b953087f344/000000_000000/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a005a6b227378e2d29e0dc1283832e799a52184f0b570c1f021b8cca/000000_000000/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5a7402060154f3f894ab5425544181513869f7d3ce4b084a54557d9b/000000_000000/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2c113a2a0be20a741a0a5aaab84d9e19622ea9c147629dc49abb4ba6/000000_000000/0000/tree_202.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6b10b7a719b3a41bee78813a6d892745a9d3ce0ce47bcfc4aca5f050/000000_000000/0000/tree_203.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1a269d5cd58bdfb99402d5bc7260883f937380197b306812b38cf5e7/000000_000000/0000/tree_204.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0096d5a0d5ee5c010f4c98e9e87f8cf4e98bfadbee1a572040bed81c/000000_000000/0000/tree_205.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f0134afbf8d0d280104bad9c8977b403590730cc5824ad2bd89785de/000000_000000/0000/tree_206.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a9c412a639ec4bfa3e86574e8c49654476ad4c77636aee3cd1231ab1/000000_000000/0000/tree_207.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d1aac8244bb90879550d8b1de2a4d156e8001fc66771353839fc7763/000000_000000/0000/tree_208.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//58ae082f112920503398f458da2093ca5a5151c0f67c1eb5d77b60c3/000000_000000/0000/tree_209.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//93d59a5ff5ae6c44c64e0357b202bfdd731e87b8d5a22e041ce0e336/000000_000000/0000/tree_210.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//32b4dc2047108ddd6dfa247b540477ac8f1c4a2ece52e8b0990c33a8/000000_000000/0000/tree_211.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e41d2d599ad60f31f2519432641e2d483feade627bc9b7fccb186523/000000_000000/0000/tree_212.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//621328924e28669f5dc5d03be9f2c1ac8ab9157a3ff064eb812e4a43/000000_000000/0000/tree_213.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4b4050a775de689d657d80f866218c91d4d9415eafe0a897aefe0a62/000000_000000/0000/tree_214.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e2b69c7e4e8f9ac3bd5cda131b90e1d84d6239315b2373394fce30a6/000000_000000/0000/tree_215.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//769eaa98d10d10a86f42bb19d963c7b09eb9305271667617b9853ab6/000000_000000/0000/tree_216.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d1fadb5bbb7e00432c491d266b188f3295b80ee4665e5c1833b037d3/000000_000000/0000/tree_217.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//56c1dd1df075fab9c5e3b7c460a670cb776823f8ccd959930ccc286a/000000_000000/0000/tree_218.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//564df965b0e25e08b17121c60b69d98e14fea7d746f94bbd0c5faeb8/000000_000000/0000/tree_219.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//22a9c9ec633924cb3620981f1705abc67ea9b1e2b0f7c5f98c3316ea/000000_000000/0000/tree_220.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//97dff5386275a2f8976aef83bd65fc5c38034f7db7d705234598e5ca/000000_000000/0000/tree_221.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//df2b66f5a13fb58ed5cfbde23a99c83736df1d45416a7e1ca30bcb12/000000_000000/0000/tree_222.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4280ed1aaf36979751ab46a94d3622d0fb52bb6f4a1f350fa0c30c83/000000_000000/0000/tree_223.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2da0bcee9adfa5c777bb456811b02376b63047ea0f9bd730a23cc843/000000_000000/0000/tree_224.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//96e0d58e58b8323ec10c9d1e56eca49fb4a1dc6016de5034b7c2ea2a/000000_000000/0000/tree_225.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//49b7d778cd2b001b77dd0f485a475bc225148ae1fbc7e5e794fe2cf5/000000_000000/0000/tree_226.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f1197bdc38dd81a2cd830eec4a414aa5e61491a0a3b6e5c4e1fa0509/000000_000000/0000/tree_227.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9e7ab22838b7421eb5a880affdb3812237119e3202add12ed1f1192a/000000_000000/0000/tree_228.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9179a526e3bf9506677db7de161d776aaec0336eaed5e890cd5f5d81/000000_000000/0000/tree_229.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e659a477cff5ac12f1fe66a42e76dc9a224f20621da2d69c111666c9/000000_000000/0000/tree_230.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0b3b3cbd6768a97c7c2147ed0a1dfc6280ea518041666b0c7a1337e3/000000_000000/0000/tree_231.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e1ea47f350d94dc890d6317fa67c87cae8a9f57e4fa6ea64101b2e3e/000000_000000/0000/tree_232.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//399a54f689d2e31d82c3ec6349a983d184c39a32ded5bf6383e4a369/000000_000000/0000/tree_233.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f8f584bb892e6a9fde1f7958968bcfde4ea6c39d2bc24a9a1c8d68ab/000000_000000/0000/tree_234.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//7485b0a7a8754e5d97bb0282d6bde2fd50d971275ac7fade83ab1f2b/000000_000000/0000/tree_235.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//17d88688c65675d1eefb322cf364fdcec7707f7bc56798799267d999/000000_000000/0000/tree_236.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//49793fc959b52beb710e52ad2a85cfe23b84c90e542ff8180260c9dc/000000_000000/0000/tree_237.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6b349c8e7e18d6123f9b25d49d9b8f531c7026c7ba33222a5cee674a/000000_000000/0000/tree_238.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//912c39422e67004b24a78804d0df5b4c2a2378b71e780be31de307e5/000000_000000/0000/tree_239.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b70d7f130f0862a28b06908b5deaa092d4c9b8015abd0e1deafb7264/000000_000000/0000/tree_240.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0757452ee97f15ad8fd024cac9f634d23b67073da8cf85eb505ada0f/000000_000000/0000/tree_241.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d9ba740ecacb215d76d1ed5154ad6bd89b20c23760f2c780eb10da33/000000_000000/0000/tree_242.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2803ece0a5248ec3594c9bf27c0c0d284014bae8c4b22ef748eec93c/000000_000000/0000/tree_243.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0264a4ffc7db1f6c4ca2770d0774bfcf5d861c9c1cd6b59970f937c2/000000_000000/0000/tree_244.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4026edc55cea253e5127a0323c3a5d6621b0f2203900057fb1069d43/000000_000000/0000/tree_245.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f03d5a0974e7a1699efdab8f71e715cbc273c863eb37168128746d52/000000_000000/0000/tree_246.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9bbab3ede7235b1700243c121c958d1c1a5072c8921ad8a0433edcb1/000000_000000/0000/tree_247.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//063a22b04d2e08b74dd20199bac392bd71d18271f640f57888fa23cc/000000_000000/0000/tree_248.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3d32b1fd6e5fa16db182d118bfdbacd60def0dd877a470f0070ac04a/000000_000000/0000/tree_249.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b92775a6a96ebbb10d0f646b5f0f4cf16d7d6a2a86a151cd3e372240/000000_000000/0000/tree_250.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//27fdc03f179490428720df21b61440de9a67fb09b6806529f6397e8a/000000_000000/0000/tree_251.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//261a19d6935324ee018ed33f4725d85707419676e093af9f83d4c9f1/000000_000000/0000/tree_252.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1da9c019c78446be49896fb6972f8f7b2017256827a3dacb175fd4ab/000000_000000/0000/tree_253.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//60d713f0aac6a37caff0a4400a06665c8c1bd9743971f471dca9fc7e/000000_000000/0000/tree_254.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//098a04b538e97e3c5d98610bacdc6dbb95d53256117f86a55fe45165/000000_000000/0000/tree_255.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e06db5e11e881cec169db3d03e03699fe54ae0c04a5e382b4da6272e/000000_000000/0000/tree_256.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d523b63caf4834d32d45711095f31d9b19ae2c4ffc8169cff590cc89/000000_000000/0000/tree_257.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//8052f06eaae2518a9b0c978096a9fd2a6d86f2c245d2c367494db6a4/000000_000000/0000/tree_258.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3bb84bb853f7471674e2a3a5afebfdbb0655271792d1c53318833975/000000_000000/0000/tree_259.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6a3201f623727953f6969407c62bcfdbe3135e8bde7cc4996cb43d95/000000_000000/0000/tree_260.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9e953d3e81c15ff2c4159eeaa72da53a08289b99c6fcf1ae547cd2bf/000000_000000/0000/tree_261.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//41e54c363a7e14e2794dc9d1e157c4170b6545e69b9465ddc4b6b1d0/000000_000000/0000/tree_262.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//647f1942dfcf009f9b7312eb653e2cf1a471b36460287da3047de47f/000000_000000/0000/tree_263.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c8137174c13170403cf6af84eebfc414a0d69ec95570df0895e09964/000000_000000/0000/tree_264.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b4a52525caa579b332bc0c57f2e66c19006f9bf3187e7e78c67270bb/000000_000000/0000/tree_265.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//bb53d54632a113bd41a4675af2c82d0a91401532704e2cb0f2ab3d2f/000000_000000/0000/tree_266.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//616c7dabd2dd3accc9df0699d923fc26f0990c42f63c569575be7076/000000_000000/0000/tree_267.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//92e233faabb0993a12ba8c57d0fa40942e9d42a2b640be5c09c2a36e/000000_000000/0000/tree_268.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d45ff9cfd1fecacf5f9f8c4d18d8be0e06c08ec981be1fe8bfb11973/000000_000000/0000/tree_269.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1c965621f804f42042244db55b472ac6362257a1225983518f882f16/000000_000000/0000/tree_270.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f58fbcc51de501f51b45dbb5d7424095e52501edc7e2013c4809b4d7/000000_000000/0000/tree_271.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e8675e25a92b7b38743f131d54567f48f9d01e107d6678c4cb3035f3/000000_000000/0000/tree_272.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f6e6dbe2a16887c9835ccc469cbaaaaf20e4e2b6482ef6a728a90515/000000_000000/0000/tree_273.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c1f6488ef0f80ec9c66335bad7a4f66e6ded2799498dc7fa9669a377/000000_000000/0000/tree_274.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//7076fdd199388583194f725c6fd8989c32b940c703d828ad9035b2db/000000_000000/0000/tree_275.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//523f6a4660b353b70f1206b3436ae7326ff6d3ab238202105672b5f4/000000_000000/0000/tree_276.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e353f98e5be490b8373743978f903b0c35cebbad70e72bd3dd95debd/000000_000000/0000/tree_277.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f33dd02e966ff6e4e86119003073af5fc5a9416bb02cd81947e23936/000000_000000/0000/tree_278.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//316be9bbd3a192725932d4f3283dcc7f2290f78b58117f0d7ac55a88/000000_000000/0000/tree_279.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d47a34b410ffc5f701dce8800d628cf800b5d0b187e5d1c168aa68d8/000000_000000/0000/tree_280.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4a49f0341a0ce6c0693b0b8825f7d9e2c126674173dc9f53254a51af/000000_000000/0000/tree_281.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f06a97d3c3416ce0b4e3a918fdccb181ecdfaa5c12b65d937dee6c0d/000000_000000/0000/tree_282.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d3bc252bb299ed3ff7326b31a4534ae01a2d86d187b9d62b0b5b3b1a/000000_000000/0000/tree_283.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ddad76238f843d264ec133b4b7f09d68c04d856cc5c7184bf7f45f22/000000_000000/0000/tree_284.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b244aa8dce1a37c37781a18691cc1e9bcbc1d851f236cf49afc8b73b/000000_000000/0000/tree_285.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//891654701856e37686eb92e93b3f021c1148d67936d715d5a72f371b/000000_000000/0000/tree_286.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//46cb81b02fc4837e68d61daabe2607455118092b0e80e703240d8320/000000_000000/0000/tree_287.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//7d26313eae7a4434ae0fa58b34447c4918fc8aa09083b9baf369e9c9/000000_000000/0000/tree_288.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//47a9fee87260f561b9e91d464452fd3700bfa52d699299b32db216ca/000000_000000/0000/tree_289.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..8df10572a --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,57 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//ec50b079a648228714853969116a7d7f2edcf14fbc3675dbaa88778e/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//1aebc04326822f0b3d98a28ccf9546fc7d94d885721f43014f0cefec/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//c49ba112f8910f93a9f669a0853a93bf63c105db1011fd73cc3fffdc/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d581439e7a4008acdc451f29269825acbfc7c4843d4736263ecc6dd1/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//0785708d320f01f140673792719aadcd91e8c4df7f0df3309c5f599d/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//0051a1f7f39fc00475d2519accef3fe1b2bbbfb89ee7abbda124e2aa/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//c314623d12c43da3dfcea7cd07b46fb901df3a8e9d2b29dba93524e6/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//4dc7882ea0f7d4f09f6a115481a85a026dfc6305dbdd17afc4d2f8cb/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//a415b67ea40a17b911617ff0b5e60bbbb96d24e08458896d1cdebb3c/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//83e4f076b19689e40a7fd1e589f13ba30171769fce5eab658135dd96/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d3eec4a767a8e4c304c6b3cd4a02a601a635df420ded2ef4bfecc5d6/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//18590c3ace9c55ab549d63d254dc50ffed409458689ec3e5106debb4/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//326db7cd30b7e6356790401db1072cf9d7e0669aae2c3171785b4fd8/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//69adbca3b291fe2dafd9f4ca40c293b7fd9e28a6741edbcd9f2f51cc/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//639cb9b4b08080853410b21904aef18886746e0d1c19b8c8da695471/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//b49cde91437b75534d6529ae4dd3c24e7d48725eb8e221682169c710/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//73f4767223a717c50e915a9b69a8b55424985ef5937b60264484bc16/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//bbdc0a67021030f51bea61bf23a4b84d84899cc3d92aeda376a649c3/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//95fc11a5ac7039ad5dbf5c7d5ed6d1e70a4891c74d0c46c1757df123/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//b8e74a7b8f6b2a9e52209fceafe293bd7d43f32cf661a8910cc4f390/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d41fe9780bd23bd578218cf6fde4c0da6863457a2c4715c054a04acf/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//003cfb76d2e6337c60a557039b83538bf12271cfbedbda61bfd57abb/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//90067159302628d3bde1b7b7b167c0b1a57f26c501ede16ab193a8d0/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//a9c490ccceafb1e941f8642e07ab66d277da6a31d6c3874a425ec579/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//a284e3eddf67dba3b20b8c56435e3a6b791f914deb1d9e6a0751cc45/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//3a5c40491737cefb91612da42f22659363b931cdc4408378f1b3e8d7/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//0b85429c2a7067037baa30db3369f1a2155ce90086c4392a0089f1b0/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//23c144c9654948b32a419c051726405a7add90d54f21bc5874c8b509/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//91b117fe8b52f5a90abbad0c6d0ce2df11fc2e33034504b0d9769745/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//877e87a73259fec2fb180b226f42bdfb90d54601c9c8d10204081e09/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//38fa9d78648f03477b2ccd65ee8328be70100513a75841a111f64b16/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//77138afcf0b6093c283e1d99c9ce1c6d6a6b02f209ebe0ddbc911052/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//3ae4c17fea354acc484dcd59919de17083c0c54efc97d7a88b6d7d4b/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//0d1233b56b4eac17a702a178cfe717599c665799a9bd0c66125cbd2a/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//84852f0a3f735ebcecb8524a5d29dffa728219501395ace203cd9365/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//129e961dfabcdc4b3925c678a1f41f5d701b62270ef26009a38d3a7c/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//7c1da6710ee615738ae193cad070ad256288e4c3e76508ce30c6bbf1/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//92fc346795e752df31d19d9155b8fa8bea28a43ea07243318259f8e8/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//3e9d8e0cafcbd5bc9caf30a0e0bc728e3a8573216008d253b179b76a/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//800248d3d20d49325f1bda79c76d6171547d25fa4305058b8ab9970f/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//aa0f149bf0b4de671c016dc852d0cfa4a0fa6c49a8bf3928e0b7f8e4/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//baee1df2251833036cc862933824c0677d6719564d8cb9c88bb9c7e0/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//55d55394e3b97a77817f7b32d1c4b182aac0a69052c8dc61a8bcc3d6/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//6083b82024fdf2d4734321223267ae82dc73f298ffbd268d8358496b/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d56a12872f64f6f91afdb412deb78fbc3edc23fb6be31b2e5d109ddf/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//8a94edfd38091b2063e3fbadd8c86735f1c32cb0c9753a787b74ddfc/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//1e3a020aa21058ddd5a2b2b813a7ccd8b5aaa4e933a536a0ca1d4c89/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//bf68833f4c228babb7f07933f5986688017b3f31565917fee574a700/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//8dc483c9d88ceef208474123bcba1e3b8b6659f6edd49944fc91503d/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//7d6f9392beabd1d3ff7cfbf6b5aa13387ee7b83827db19c219c26f65/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d95a886ad07e9e4e3b891a5fdd1230a5b5418f420f15449963a9c5f7/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//53e08b7d49cb4058f693f7dd429069b07395c09bb5a8817e6f2bbc53/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//fed95ed89666af91ad036b3e5451d0cdc35762b4bb7d8b2d6bd455a6/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//842bbe3808b03ca8481fcb49d20f13ea2aed4017e53fce2e5f04ce96/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//e2d66e536e32fdfbc7ab47986834d48487677cd00c5635e5ba0d7805/000000_000000/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5d8c17c08aad8b83b46f1b2e3a171d966af859822c0cd2361db022f7/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//245ffe67aa1b6f12c46251d08b5b6e5e1e503950ee263ad2cfd7e0cd/000000_000000/0000/tree_56.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY2JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY2JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..eab6f2215 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY2JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8/da324fcf67be93d28330b05abaa2b525e729a2f199044d1686d4ba59/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY2JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY2JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..b7aec8953 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY2JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/d7600b91d9b4c1cf6e782c184a73d537a2d095a16f06c941f70df502/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY3JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY3JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..9e58289b2 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY3JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY3JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/5229dc130c5c8319b433697ff7d320de0838eab9530e12d108e3afe6/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY4JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY4JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..7a0eb3e45 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DY4JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY4JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/54a00a41c8c75346e5bc0e07b7c9a326358b24dcdb61e70272b47162/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..4b1b0c5d1 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/462afdffcc732bc3bf4ee0a35782b1083868c415784aeb4a5f012d5c/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/880782b9ebe7280040435aa2eb2fe7c8873fb594139b3630cbe92bfd/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/bac3267d867d2f599e708301ac97a891884bffd18330a605474a6f3a/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/667f383d1ed578fde3cdd2b5346994af1fd8efbbe9a413abb1a7e377/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/bd176343cefe1a7ebef1df63a9ecbd61a71fdadc9bcc0c25957ca106/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/aa847fc86c78523b7483a4ec6b013d9815e7fd326580a617ae732c80/000000_000000/0000/tree_5.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYBJetsToLL_M-50_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYBJetsToLL_M-50_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..c554ecfac --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYBJetsToLL_M-50_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/0ef5044671ade6af3947267bd19b25fb7070371b03df188cc771f20a/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/c331e974a021b323fa8a64467a51f08deecb1a24a8996a98d0ba4e81/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..7a35df273 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//92ea5978621aae539b5547e6c9766c20662b350d2c7ee39441e1bc72/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..a96355de1 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1,4 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//fcb2a31ae4efbe1e896f8e54e5168c6394de576d0fbbaaaa1ff80a54/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//fe418dabb6ee71a5119570cee9d17c71bb6a362c482ad30a8dbb7816/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//cc2fb7a4f4f78e0ab18262ca802ed67a0c12040ee0f3ba53d3d7665c/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//7122bc0e84370fc8bc97a2975166a26ef6657881cd1be1a425da44a0/000000_000000/0000/tree_3.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..52eeb67fe --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1,8 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//79a34ebb6db5705e4aa11ea822c315c405e1b68eaa2428637c30ece0/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//c36138aa992ffbc68ff71b9a4b1e9f91c6382d15274bb869895ba5b5/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//f0ce5333c0e1f24c465ccd5d791d865f5374a05065788c05d4f831ad/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//e3412c6df411d5e191d71305008b63a476f70d00b71dcf01491e916b/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//7b3c9be90586713a43a209f548183da8319b87189054d2ee10db85fd/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//3c598ec78e1a0f869bb21a42eff8b72992282e8a988473d5ff461305/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//85ce4b4b0e633420d668cbee11cb393ef8d50de1a6a943b4ec708010/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//d1139b1aa03a6ec92f55a1d55fc83e07b2a349755412ac0304701f5b/000000_000000/0000/tree_7.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..b3188e565 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/0674cac1fc75e96980913730a3d3ba8e7284697595183bbe1f2c2e6a/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/b03021e8aa825703f58dd961b69982ff71479e20f8474f1f14cd001c/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/6732ae0716466315b43ae253786afe14bd42a17391cc6e66728b4484/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..675910ff9 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/b237b1f769c814d1d0a907fa9e4140554329fec532e5121e800b58c5/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/63df4bc789ed2276e36aaf4ac833d157f0ae4968f382ed8a9579fbff/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-4to50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-4to50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..ceb80343c --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-4to50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-4to50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8/0ead5a5e6a5f428958bb34ae595f14a305b9b07d63f434a9766f994a/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-4to50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-4to50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..849fe2d28 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-4to50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-4to50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/5e7ab7dad32a7158708fdb9910f08fb9bec57707a160bd06b99eca9a/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-4to50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-4to50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..fc1452525 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-4to50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-4to50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8/57a5e1c9cdf586c6ca1cb54c601b37eb89f17b3d3fb54964a43bc3ff/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-4to50_HT-600toInf_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-4to50_HT-600toInf_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..a29893588 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-4to50_HT-600toInf_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-4to50_HT-600toInf_TuneCP5_13TeV-madgraphMLM-pythia8/1350a90312030d41e7ebf12c900c7e8241fc009b5d4b09cd53b41d77/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..b9bfae176 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8/04ef116096231ebd4a54590ba923ed055add8dd6a349022a9d813039/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8/13e5167f183019099b97f4b13dee274c77ca3492609d12ac8741456f/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8/664a509257f183bfbcd54740b7b303f07c2bda89cbb26508afeb22bb/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-50_HT-1200to2500_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-50_HT-1200to2500_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..5b0c8961b --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-50_HT-1200to2500_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-1200to2500_TuneCP5_13TeV-madgraphMLM-pythia8/65613a6c8fcc05c704f2c4ad889fbf12fc497647e94089f0824a06e0/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..598286f23 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,10 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/9c58185f2801e3038340a170bd83f8e330c2f52b736e091decf466d3/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/b710d93aad05e273bc7e521ab5edac7c953e98062e781d56d61b5445/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/51ed0a3fbb85b3a7fca7f299c3a8c0e3c82c6bd3458860b4a6dc9d78/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/8f91bb01ee4a6d13358a316b728bb2e8f547312a11d7e0d2986b558a/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/7d0b3ec8959ee053abdc59398cfd38804eca5ad1eb14630ce71351ab/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/74268ef7810cc287ca949b64ba41628d54cb149d96aed9f38752ea23/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/489fbf45de5645691a86a4f6ff43321fb333ed379c2aae52381fa22a/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/8a5034049dbba0025ba02b5f9d23193a1bbdcac71ef5073e2bf3278d/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/022dc58a9d0a465b206ba92788db80df2b5e61a34678fd3a9ba759f4/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/04afafa20c389af9d842167b6c221cca6012aeb74b0e4ddc3a1487d6/000000_000000/0000/tree_9.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-50_HT-2500toInf_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-50_HT-2500toInf_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..ac17f46d2 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-50_HT-2500toInf_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-2500toInf_TuneCP5_13TeV-madgraphMLM-pythia8/752d5c15b1bbcea4a2bf28df6114e33f86b6d307c1862ffc6f60f5d6/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..a6c6eddae --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,8 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8/afc34c9081317c08a587f7c82d5dd6616fb0050d071cd8ea2ed30d86/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8/f26c7d84f372c984cb690bc20944b03fc076f12db07a432df45475f3/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8/09b73686a877b059f951c79d22cb1de8d0e0f5eda0a389fc6c4ec434/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8/21c9896d3ee2a78804503e0835ab4a4f2b395679b8d491ef2077e0e3/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8/3143fc08e6844ff273fda8ccc0973f5083f86bba70d2551cfed0997d/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8/d3f7960846d85074b66d2660557601708e382f8115e19b01981ae13c/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8/cb9b4dc04fcafc0e809955117ea8d9c9d25395d4ead519b2bc3f2add/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8/2b4001b34acc0e377dc514c0ad5ff87194c124fc2e9dbe29ac40c57d/000000_000000/0000/tree_7.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..38e2a7652 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,8 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8/b1172469b71a1ee6d73ca7c5fa4a26778c420363d2a59c396ab17e12/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8/f43bf05f11a2c79210a7ab0ed2d50867cbc1334fbbc29e8986925ee5/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8/f2a8ad0d4b21526c1eb9a5671bf65b5217e6b9785cb4dcd157f6b510/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8/b9788c4cf171458bb6cf4684cb2b8a36d4fa7d2f480482e3b37deae4/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8/bf5b9f2a7876378d02fd14d079becb4f162d2361a882269b66c89a5b/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8/5461ce72edc48fdc4593d7c56e03566aece7aa0f83f2e0d9416de0f5/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8/e8871ce1a23f8302018fcb8dc423130ae23c65a8bdd37d3c35b2fe18/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8/bc902b65bfe2893b9f266e62a55b9ef923b930c05417c1c8447f0c89/000000_000000/0000/tree_7.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-50_HT-70to100_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-50_HT-70to100_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..76434fa85 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-50_HT-70to100_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-70to100_TuneCP5_13TeV-madgraphMLM-pythia8/5d5ba86b227c258b9af7e51d9ef89c9f4b4e649111ebdd1b6e4d675b/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-70to100_TuneCP5_13TeV-madgraphMLM-pythia8/2a24ca680da95af1bc5906a71f2844a448d17dabdc506438ba7dd921/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-70to100_TuneCP5_13TeV-madgraphMLM-pythia8/8869c2ed74101dcdca6dba88f752611ecf32ae87694854184183afbf/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-70to100_TuneCP5_13TeV-madgraphMLM-pythia8/80a6ad151c8eeaee9303335efe00d3350504fb3903e6987dc66da593/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-70to100_TuneCP5_13TeV-madgraphMLM-pythia8/55b7320a442987450a6055c1e67aa82518b41f43975ca3cb24629145/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-70to100_TuneCP5_13TeV-madgraphMLM-pythia8/b59e3905332401d5281ae68fcce9bb4b33eeded07d428ac435a2effa/000000_000000/0000/tree_5.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-50_HT-800to1200_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-50_HT-800to1200_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..0e897a60a --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-50_HT-800to1200_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-800to1200_TuneCP5_13TeV-madgraphMLM-pythia8/32abf41f21b28595dfaab68c996ff57e704f4dde42abe19977acbbb7/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-800to1200_TuneCP5_13TeV-madgraphMLM-pythia8/d8e95b71449de15c8bc7bd4051e3858fffe023f47d264781b7701144/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-800to1200_TuneCP5_13TeV-madgraphMLM-pythia8/09d6e039af7849cae43e11e523feacad771fc7bcd5a1417add219a20/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..5abecff62 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1,11 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/0107c92535e4ad8da888427d3d8cccd231562ebda7bb602c8fb49158/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/1b80540386aefa523d87e203d1ed4f8be0e0b693839fa0102c150645/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/ea7b639dcbcff3e782be7dad1dcf63d9699455629d02b4d0c5c8e6c0/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/e4628f7eb2da90df7c91a2d04a13f1378e2f8620438655f0d036e5b2/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/9a2faf9c543e1bdbbd4c055ab52075a297dde755ce5e5daf2fc97d12/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/cfdb0239f736a511aa25d523d5e726a3c3a137db10c0925f44e23831/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/d18947a20908dcbd39b23248c75b1bd6daa928bd10111beebc9723b5/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/c15337be99c352be99f1bda9c65c0c8e2428ea58a844951c56f07ec5/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/8ce490d88c6dc5dc9c926dfea39f8c9e21c874579526d13f81db512b/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/a9bff35ec587c6022837b6b0d2470ec833775f497c455619bddddb3d/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/41b0751953cb49f6bd8c409da293dca3dbd5ce96bdcd869497daf866/000000_000000/0000/tree_10.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..c1e5dbb43 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/3969abae33389253292b7db00df699668efb55effc5fd4dcb2010b21/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/d69f74d3c71707791357e29f539f6e231fa25aaccbe904f98c163064/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/9be3850e542a95484424872a43692d49744689f274f5d83a68ce6c92/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_HT1000to1500_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_HT1000to1500_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..d82152f6d --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_HT1000to1500_TuneCP5_13TeV-madgraph-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT1000to1500_TuneCP5_13TeV-madgraph-pythia8/2e4e46fe561345404cdc0db85f688bdb8730715096f6ce148fa86a53/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_HT100to200_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_HT100to200_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..a3b11e54c --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_HT100to200_TuneCP5_13TeV-madgraph-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT100to200_TuneCP5_13TeV-madgraph-pythia8/d8bf2d03aa5a4ffd15a033cfef6ba6ddb7d6aa288ca882d269b4390b/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_HT1500to2000_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_HT1500to2000_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..4b7df56aa --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_HT1500to2000_TuneCP5_13TeV-madgraph-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT1500to2000_TuneCP5_13TeV-madgraph-pythia8/fd21b5d9ac16746cb57241c7ac06b0a5e5204d0862b4bc533669e8a9/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_HT2000toInf_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_HT2000toInf_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..b379a654b --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_HT2000toInf_TuneCP5_13TeV-madgraph-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT2000toInf_TuneCP5_13TeV-madgraph-pythia8/bd3dd179f62e7ef1174d1ff84a59f6cafff38a303745473c4e83f1e4/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_HT200to300_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_HT200to300_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..e32f0a3cd --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_HT200to300_TuneCP5_13TeV-madgraph-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT200to300_TuneCP5_13TeV-madgraph-pythia8/72240183a0c988881baaafc7b15cc15f166402a2df366ce0b88ddea2/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_HT300to500_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_HT300to500_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..841de69de --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_HT300to500_TuneCP5_13TeV-madgraph-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT300to500_TuneCP5_13TeV-madgraph-pythia8/427b23abafa9ebe1b78e475f1e1b164855490e8075d9892aa8fd11a3/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_HT500to700_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_HT500to700_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..8b108984b --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_HT500to700_TuneCP5_13TeV-madgraph-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT500to700_TuneCP5_13TeV-madgraph-pythia8/35884cd71472da5f25cb6c4fa45d4fd769b8423f88f796eccdfe4f7f/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..726657b03 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8/9b1ed55c14336ae1e0e48071f1f16adec604d50122c38b5b0c67b672/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt-120to170_EMEnriched_TuneCP5_13TeV_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt-120to170_EMEnriched_TuneCP5_13TeV_pythia8.txt new file mode 100644 index 000000000..e69de29bb diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt-15to20_EMEnriched_TuneCP5_13TeV_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt-15to20_EMEnriched_TuneCP5_13TeV_pythia8.txt new file mode 100644 index 000000000..e69de29bb diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt-170to300_EMEnriched_TuneCP5_13TeV_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt-170to300_EMEnriched_TuneCP5_13TeV_pythia8.txt new file mode 100644 index 000000000..e69de29bb diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt-20to30_EMEnriched_TuneCP5_13TeV_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt-20to30_EMEnriched_TuneCP5_13TeV_pythia8.txt new file mode 100644 index 000000000..e69de29bb diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt-300toInf_EMEnriched_TuneCP5_13TeV_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt-300toInf_EMEnriched_TuneCP5_13TeV_pythia8.txt new file mode 100644 index 000000000..e69de29bb diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt-30to50_EMEnriched_TuneCP5_13TeV_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt-30to50_EMEnriched_TuneCP5_13TeV_pythia8.txt new file mode 100644 index 000000000..e69de29bb diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt-50to80_EMEnriched_TuneCP5_13TeV_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt-50to80_EMEnriched_TuneCP5_13TeV_pythia8.txt new file mode 100644 index 000000000..e69de29bb diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt-80to120_EMEnriched_TuneCP5_13TeV_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt-80to120_EMEnriched_TuneCP5_13TeV_pythia8.txt new file mode 100644 index 000000000..e69de29bb diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_1000to1400_TuneCP5_13TeV_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_1000to1400_TuneCP5_13TeV_pythia8.txt new file mode 100644 index 000000000..04e586fa0 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_1000to1400_TuneCP5_13TeV_pythia8.txt @@ -0,0 +1,6 @@ +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_1000to1400_TuneCP5_13TeV_pythia8/4174dde0ef4c47c24d706dd5768c8753aeac2700d151b831998d00ef/000000_000000/0000/tree_0.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_1000to1400_TuneCP5_13TeV_pythia8/9e38940813a6ac39a28e7825435820320c96144a9ca4450314360afe/000000_000000/0000/tree_1.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_1000to1400_TuneCP5_13TeV_pythia8/fee8f25dc5c61dc94a281ca763157ea19135f768fb5b904e99122391/000000_000000/0000/tree_2.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_1000to1400_TuneCP5_13TeV_pythia8/3a02463b7ef81efcd76cdfc1b228111b63cfff81bdc3b9ab8cdcbe6e/000000_000000/0000/tree_3.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_1000to1400_TuneCP5_13TeV_pythia8/28751397af8cdc164cf60e59f53ddb87b588165259f34e80028c22bf/000000_000000/0000/tree_4.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_1000to1400_TuneCP5_13TeV_pythia8/54ca177931533b668ea4446cd482a61a6848af9af011e29c5b62da5d/000000_000000/0000/tree_5.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_120to170_TuneCP5_13TeV_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_120to170_TuneCP5_13TeV_pythia8.txt new file mode 100644 index 000000000..b2bff0764 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_120to170_TuneCP5_13TeV_pythia8.txt @@ -0,0 +1,6 @@ +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_120to170_TuneCP5_13TeV_pythia8/27895fcf11732a01a165f31f94b0a430e57a07f3a6c1c204038c71a5/000000_000000/0000/tree_0.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_120to170_TuneCP5_13TeV_pythia8/a39c5420657ae2a7654d7ec9e29b6a91797f8e04f5cf26dcb975abe8/000000_000000/0000/tree_1.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_120to170_TuneCP5_13TeV_pythia8/78b0b347c6ac88ad19a9fd1adbd57abe25a8c3b0b354c02baaa877de/000000_000000/0000/tree_2.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_120to170_TuneCP5_13TeV_pythia8/d5506d8da7b5b03e563ab9ee04db0d9011e6afff1349590dec0253b7/000000_000000/0000/tree_3.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_120to170_TuneCP5_13TeV_pythia8/7e72412f95eb38a6f0a43d8f8b5dc2efc5ba7df0fc3a3e0c8116e2a2/000000_000000/0000/tree_4.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_120to170_TuneCP5_13TeV_pythia8/0118d6730fa482f941510624e5464edcae92dd03b34779affa6b146e/000000_000000/0000/tree_5.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_15to30_TuneCP5_13TeV_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_15to30_TuneCP5_13TeV_pythia8.txt new file mode 100644 index 000000000..3ae78516f --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_15to30_TuneCP5_13TeV_pythia8.txt @@ -0,0 +1,6 @@ +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_15to30_TuneCP5_13TeV_pythia8/d7bca85ebe22413d1c3a4437327692fb5fec0e57a3ad5ab0d8394b81/000000_000000/0000/tree_0.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_15to30_TuneCP5_13TeV_pythia8/61053717275e3d2d4618409a9b6704ab03f0735f9592348e9016e1b6/000000_000000/0000/tree_1.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_15to30_TuneCP5_13TeV_pythia8/7173c62bfeac364c998b3377c0ab01fc93d75168959f5a58ad9aca45/000000_000000/0000/tree_2.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_15to30_TuneCP5_13TeV_pythia8/1eb8371ca784ba794515193cc4df0801daf48e2237432df5d7dd4170/000000_000000/0000/tree_3.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_15to30_TuneCP5_13TeV_pythia8/61c07df3f67638c4a039511cf40cab16eccd74ae1ec79724986ec7af/000000_000000/0000/tree_4.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_15to30_TuneCP5_13TeV_pythia8/44053c47568f932c8464b677b955c5b4a3b65fee58d761816106dc97/000000_000000/0000/tree_5.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_170to250_bcToE_TuneCP5_13TeV_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_170to250_bcToE_TuneCP5_13TeV_pythia8.txt new file mode 100644 index 000000000..e69de29bb diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_170to300_TuneCP5_13TeV_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_170to300_TuneCP5_13TeV_pythia8.txt new file mode 100644 index 000000000..b279b5d0d --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_170to300_TuneCP5_13TeV_pythia8.txt @@ -0,0 +1,14 @@ +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_170to300_TuneCP5_13TeV_pythia8/9b15e8ace479da452b69bd8bbbfd0cdf97a9fc50e29ccb75be4dc143/000000_000000/0000/tree_0.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_170to300_TuneCP5_13TeV_pythia8/b3be103344c542982ef54e7e69ec6433e129887f21e531f2fea78297/000000_000000/0000/tree_1.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_170to300_TuneCP5_13TeV_pythia8/3d8e1290799e8d810e6fa03557ad0bedf127e9c8a98b6b497021fdcd/000000_000000/0000/tree_2.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_170to300_TuneCP5_13TeV_pythia8/1c172fe3c6196495e78ef584e25a854cc54c9b9157557c9342819bf8/000000_000000/0000/tree_3.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_170to300_TuneCP5_13TeV_pythia8/003366bcb59d9fd97b0b789f6370e7a47fd2f17967faed874f48e765/000000_000000/0000/tree_4.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_170to300_TuneCP5_13TeV_pythia8/882f3e04d8502e9ab026c19d1869d6f38f989b5a38dabaeb4fcf821b/000000_000000/0000/tree_5.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_170to300_TuneCP5_13TeV_pythia8/ef329e0e117fb5e7fdfcbcf8fbc85a4ccd23b44ce6463666c4fd11b4/000000_000000/0000/tree_6.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_170to300_TuneCP5_13TeV_pythia8/d3c155a3efb66640b9b2366f7d5e9344f45e2eedff33c3adb30c5b31/000000_000000/0000/tree_7.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_170to300_TuneCP5_13TeV_pythia8/5d31b1562ccf2f07b6b9f1b3ba1b9cfd0078d7adb5f18b8ae00c3968/000000_000000/0000/tree_8.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_170to300_TuneCP5_13TeV_pythia8/f7437c95cb856d868daf3897864764984e47d98b3f011b82a87b7f3b/000000_000000/0000/tree_9.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_170to300_TuneCP5_13TeV_pythia8/b220649a881884f389c12e0a93ab9d1a1877ecf24343cdd3926d2d53/000000_000000/0000/tree_10.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_170to300_TuneCP5_13TeV_pythia8/9d1683abc1dbb2e1c761a131d56d630bb2357ef60cbb8567f0c4f58f/000000_000000/0000/tree_11.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_170to300_TuneCP5_13TeV_pythia8/6cfc02ae31340895fe09d03cd5be6dd2599876b7f37f370d43b82dba/000000_000000/0000/tree_12.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_170to300_TuneCP5_13TeV_pythia8/af0d5f80ad9e50be476d1faf2162991b5660900a52925bf078290f22/000000_000000/0000/tree_13.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_1800to2400_TuneCP5_13TeV_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_1800to2400_TuneCP5_13TeV_pythia8.txt new file mode 100644 index 000000000..d0481f1ac --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_1800to2400_TuneCP5_13TeV_pythia8.txt @@ -0,0 +1,2 @@ +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_1800to2400_TuneCP5_13TeV_pythia8/c1a6687b13c47b352962d4b0851dd52810ab3c27e8cd8e32a2d8b911/000000_000000/0000/tree_0.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_1800to2400_TuneCP5_13TeV_pythia8/68a22769896ad7a96e8e68583f5a42f2786aa7a09280aa652413a476/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_20to30_bcToE_TuneCP5_13TeV_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_20to30_bcToE_TuneCP5_13TeV_pythia8.txt new file mode 100644 index 000000000..e69de29bb diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_2400to3200_TuneCP5_13TeV_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_2400to3200_TuneCP5_13TeV_pythia8.txt new file mode 100644 index 000000000..78f29847b --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_2400to3200_TuneCP5_13TeV_pythia8.txt @@ -0,0 +1,2 @@ +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_2400to3200_TuneCP5_13TeV_pythia8/9814818175fc57383492c0d4425298b4ef9b5897050d6a49fdece713/000000_000000/0000/tree_0.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_2400to3200_TuneCP5_13TeV_pythia8/d86a78029c65abf3247210b44129d18706b9f3838c8d534534060981/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_250toInf_bcToE_TuneCP5_13TeV_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_250toInf_bcToE_TuneCP5_13TeV_pythia8.txt new file mode 100644 index 000000000..e69de29bb diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_300to470_TuneCP5_13TeV_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_300to470_TuneCP5_13TeV_pythia8.txt new file mode 100644 index 000000000..108a0ac96 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_300to470_TuneCP5_13TeV_pythia8.txt @@ -0,0 +1,18 @@ +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_300to470_TuneCP5_13TeV_pythia8/46888a207733dc05a6aa538616135342c8edca9b7ed37dab7e324d0a/000000_000000/0000/tree_0.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_300to470_TuneCP5_13TeV_pythia8/1ca9dc7b7230ac84705ab563e0afc229a6c88870ef81ce75c550053a/000000_000000/0000/tree_1.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_300to470_TuneCP5_13TeV_pythia8/5031b1f5d21882bdc19cfb8d4b4680a8e6c079282d03132aa659780c/000000_000000/0000/tree_2.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_300to470_TuneCP5_13TeV_pythia8/28b30b0ee215794bbb8bf155c7f85cdedd52d7eeae5905a7d5d6fe27/000000_000000/0000/tree_3.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_300to470_TuneCP5_13TeV_pythia8/ee23fca632fa992953d29771f263515c06b30cdd16684533d8fcc575/000000_000000/0000/tree_4.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_300to470_TuneCP5_13TeV_pythia8/788985ab3c3590d98d1d87a5218a011876d50537064022caa86c7421/000000_000000/0000/tree_5.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_300to470_TuneCP5_13TeV_pythia8/ee88190d9b2c8a654a98dd66f5d92bf9ed33935b3c72ec3b0cae97f7/000000_000000/0000/tree_6.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_300to470_TuneCP5_13TeV_pythia8/c0112bce72bdb6b7a6f9b6ae3a7409e285b8fa5cf3a76a1ada82b4ad/000000_000000/0000/tree_7.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_300to470_TuneCP5_13TeV_pythia8/68542dcd5217915152f92cad923d32498446d967876abfcd36d4b19d/000000_000000/0000/tree_8.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_300to470_TuneCP5_13TeV_pythia8/0aeba7ed037fa9b99cfb6742a9061302bde4d7a8e1da3cfe455b6042/000000_000000/0000/tree_9.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_300to470_TuneCP5_13TeV_pythia8/a6225b28f4bde6c593d7cf2b0bb9106a98d67dbad6f929090765e88a/000000_000000/0000/tree_10.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_300to470_TuneCP5_13TeV_pythia8/37be51272c7d9290d70c18b9c13939819a5a4bf6b7fcdb42868ecb2e/000000_000000/0000/tree_11.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_300to470_TuneCP5_13TeV_pythia8/aa3d1eb9e0bd0b2516774c39cb3ae3371f0682d402b964a6fc7293fd/000000_000000/0000/tree_12.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_300to470_TuneCP5_13TeV_pythia8/746aeee2a1c14d8b3ae509a3fb4d58f7c402e97ff72e3a8990ee7f45/000000_000000/0000/tree_13.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_300to470_TuneCP5_13TeV_pythia8/1d2a5e0afdb79665bf0697b51f6a2dbbb3c1b0e283f489d8b5ba70dc/000000_000000/0000/tree_14.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_300to470_TuneCP5_13TeV_pythia8/fa6554a3920fca6f0250e036edf9c6720dc3e3e74b6228973c9e3785/000000_000000/0000/tree_15.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_300to470_TuneCP5_13TeV_pythia8/6ed7b2e0cc73a34302777c93909ed57241502d18e45cfc1adf0c3f50/000000_000000/0000/tree_16.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_300to470_TuneCP5_13TeV_pythia8/347b9c8f072a8c26f80b7c505df0c5bba81d971d09690ef6ece94435/000000_000000/0000/tree_17.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_30to50_TuneCP5_13TeV_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_30to50_TuneCP5_13TeV_pythia8.txt new file mode 100644 index 000000000..1ea4541af --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_30to50_TuneCP5_13TeV_pythia8.txt @@ -0,0 +1,6 @@ +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_30to50_TuneCP5_13TeV_pythia8/fcc1633d67b809231b083d8f2ca11fb789e6c8967455c9b56b21ae0b/000000_000000/0000/tree_0.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_30to50_TuneCP5_13TeV_pythia8/32ff150564e1c31133dc0ecfbe50a2b749e5875b0be7b2ea601aa02a/000000_000000/0000/tree_1.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_30to50_TuneCP5_13TeV_pythia8/c58c405d562f644530d7cda9be7b3bf339e76ded87a3438f3af30aa4/000000_000000/0000/tree_2.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_30to50_TuneCP5_13TeV_pythia8/553e705b5176c46f4dcbca5e3b9045fccd45d752cb9a2bb1b03c8170/000000_000000/0000/tree_3.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_30to50_TuneCP5_13TeV_pythia8/b6bf7981f7825f72cfe8b1375e5f526f433eee8d04fab3e0ee5cc9ca/000000_000000/0000/tree_4.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_30to50_TuneCP5_13TeV_pythia8/bca03dc54268b1bdf072042dfc6449dd25bf6498c5dfe6eaee8cfdea/000000_000000/0000/tree_5.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_30to80_bcToE_TuneCP5_13TeV_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_30to80_bcToE_TuneCP5_13TeV_pythia8.txt new file mode 100644 index 000000000..e69de29bb diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_3200toInf_TuneCP5_13TeV_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_3200toInf_TuneCP5_13TeV_pythia8.txt new file mode 100644 index 000000000..85a735c54 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_3200toInf_TuneCP5_13TeV_pythia8.txt @@ -0,0 +1 @@ +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_3200toInf_TuneCP5_13TeV_pythia8/9b0f9f3628999e359197bae83330b40330950738dea7d062a4b1a666/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_470to600_TuneCP5_13TeV_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_470to600_TuneCP5_13TeV_pythia8.txt new file mode 100644 index 000000000..fe7b73540 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_470to600_TuneCP5_13TeV_pythia8.txt @@ -0,0 +1,10 @@ +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_470to600_TuneCP5_13TeV_pythia8/d28d1bf36dfede0ff300917917dbdbc78564b4efda57ea48a85d817c/000000_000000/0000/tree_0.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_470to600_TuneCP5_13TeV_pythia8/ad0c2d32542085e99f1440f0986cc0ec5f6f6d5dda928e31357e0fad/000000_000000/0000/tree_1.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_470to600_TuneCP5_13TeV_pythia8/7298db2ef22e154cd029c4b04390cddb9066a18a80d5932b6cf9f276/000000_000000/0000/tree_2.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_470to600_TuneCP5_13TeV_pythia8/ae4647b42abe2f05f9c9adf1bc1a0d118e4660a44ea81aa56b63171a/000000_000000/0000/tree_3.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_470to600_TuneCP5_13TeV_pythia8/6ecc57c0042ae56b0b87b87b36504fd421c99d718323755404ef423b/000000_000000/0000/tree_4.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_470to600_TuneCP5_13TeV_pythia8/1866bf8583f6c2d630273ec694cdb4574e6c13b0e883e939a9834c6f/000000_000000/0000/tree_5.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_470to600_TuneCP5_13TeV_pythia8/2dec66fef69f55016819df9595162153df3a94a968bc4825705b384e/000000_000000/0000/tree_6.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_470to600_TuneCP5_13TeV_pythia8/e7deeb857e6dc558083f16723f6e07ae54353e27b677cf566ae31b31/000000_000000/0000/tree_7.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_470to600_TuneCP5_13TeV_pythia8/4250d3badf84cb1d492eb067e9cb325582a80eaa24621128a7f9be71/000000_000000/0000/tree_8.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_470to600_TuneCP5_13TeV_pythia8/0dcdf8d271ab6c8fb8896101c49fb3686b2da437d78f60f32a15d615/000000_000000/0000/tree_9.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_50to80_TuneCP5_13TeV_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_50to80_TuneCP5_13TeV_pythia8.txt new file mode 100644 index 000000000..e380966ea --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_50to80_TuneCP5_13TeV_pythia8.txt @@ -0,0 +1,5 @@ +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_50to80_TuneCP5_13TeV_pythia8/7bee4124e73fd892fc177d87acae8d7dabcd4b8771d3552cd7db140d/000000_000000/0000/tree_0.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_50to80_TuneCP5_13TeV_pythia8/d63b6db6c0309e57ae5ae29c0b5da1c4e71d65c3d2dcd04a656fa1e8/000000_000000/0000/tree_1.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_50to80_TuneCP5_13TeV_pythia8/26e4e99624e5f9e2c13b8792494c1082b0ecfbab1131375956985197/000000_000000/0000/tree_2.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_50to80_TuneCP5_13TeV_pythia8/d9110b0f997e72b39e965e4046df16d2a253ef11d12c624c55a86a9b/000000_000000/0000/tree_3.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_50to80_TuneCP5_13TeV_pythia8/022b58bf43553e5d23cb0b71de0597dc12648049dbe1cba97eca69b2/000000_000000/0000/tree_4.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_600to800_TuneCP5_13TeV_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_600to800_TuneCP5_13TeV_pythia8.txt new file mode 100644 index 000000000..10fafeb80 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_600to800_TuneCP5_13TeV_pythia8.txt @@ -0,0 +1,23 @@ +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_600to800_TuneCP5_13TeV_pythia8/622eefce2d514eca44d09e7baea75f7ae61ad51d732827041644fb44/000000_000000/0000/tree_0.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_600to800_TuneCP5_13TeV_pythia8/5e7e40878eb4e19915a48739a9e576c1180093fb829ae756a1d1a016/000000_000000/0000/tree_1.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_600to800_TuneCP5_13TeV_pythia8/5d702c828eb272f300d65587455815215ba83b7ad57f5a18284b48bd/000000_000000/0000/tree_2.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_600to800_TuneCP5_13TeV_pythia8/ac5b65e26ab5bb7af1754b8daa7fd41a6f4ff8dbe6ecf855f1d8834f/000000_000000/0000/tree_3.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_600to800_TuneCP5_13TeV_pythia8/2abae2a63d9fe79ad8ea5af69ff3c8d125f2ae37e3bfb0bdaaef77d4/000000_000000/0000/tree_4.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_600to800_TuneCP5_13TeV_pythia8/c9b8defc57282574bcb938baed1114c3f8bb37bd0c80ed3404db06a5/000000_000000/0000/tree_5.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_600to800_TuneCP5_13TeV_pythia8/148f5f58b75cb7a29a689ba2ac8d3f1e797e7bc48e696f4a66a65cfe/000000_000000/0000/tree_6.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_600to800_TuneCP5_13TeV_pythia8/207e9eae96a3fa8ddcaf6a1289114ae238935fcce05928998f044aee/000000_000000/0000/tree_7.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_600to800_TuneCP5_13TeV_pythia8/64d4506762bb1fec387db1a4e5c5e318c8f56af620716fa35c3a7eb3/000000_000000/0000/tree_8.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_600to800_TuneCP5_13TeV_pythia8/bb2c30e133815090f5f5946af5595f99d9b8f124ebd5d4d5cd3665ce/000000_000000/0000/tree_9.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_600to800_TuneCP5_13TeV_pythia8/061acb7ed9838bb4a94cd47c52113f646ff4c5e7c7d7370ac235067a/000000_000000/0000/tree_10.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_600to800_TuneCP5_13TeV_pythia8/5514e4d68bb5b0328e236529bab84e6b80499616185f08f7d4c65e47/000000_000000/0000/tree_11.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_600to800_TuneCP5_13TeV_pythia8/1db97946dba963c68cd10bcc813c4c61e6e2850877b5c33961995499/000000_000000/0000/tree_12.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_600to800_TuneCP5_13TeV_pythia8/3e082a6db7f7dff385c572fe9f910a043fd1d63b248f5be61f760ee3/000000_000000/0000/tree_13.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_600to800_TuneCP5_13TeV_pythia8/0acc0743d5328a9ad17940cbccd3ccff052d266740e0c4ae126f6e52/000000_000000/0000/tree_14.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_600to800_TuneCP5_13TeV_pythia8/bd66436003d47d498143157c15c4685256f6ebfc25c4de2d2bc416f5/000000_000000/0000/tree_15.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_600to800_TuneCP5_13TeV_pythia8/9f1d6bc3238efa470ac95b8a9742b3dc3f11c47af1f88292928c91b9/000000_000000/0000/tree_16.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_600to800_TuneCP5_13TeV_pythia8/6bfc74668c889b304e71281617e592030c47a0e80cc1d9bc02733b70/000000_000000/0000/tree_17.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_600to800_TuneCP5_13TeV_pythia8/9aa32a613caa037eabded020aa0cfc57500d7ecaccd9be2df9b56a03/000000_000000/0000/tree_18.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_600to800_TuneCP5_13TeV_pythia8/7b4f327d466a4d98d1a72ee931757fa90aaa9e04d730846af4090541/000000_000000/0000/tree_19.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_600to800_TuneCP5_13TeV_pythia8/539eda0c42cf17f4d9b8089102ce74f26884398b6f8265e51c8825fd/000000_000000/0000/tree_20.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_600to800_TuneCP5_13TeV_pythia8/b2f775c973f87dc138eaeebe952ba36c917f17fee10e99b09eae445e/000000_000000/0000/tree_21.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_600to800_TuneCP5_13TeV_pythia8/405724a0767cc5a2e8ca7d6190dc0c508b9c3229b321c2dcad08f8aa/000000_000000/0000/tree_22.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_800to1000_TuneCP5_13TeV_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_800to1000_TuneCP5_13TeV_pythia8.txt new file mode 100644 index 000000000..bff2949c8 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_800to1000_TuneCP5_13TeV_pythia8.txt @@ -0,0 +1,6 @@ +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_800to1000_TuneCP5_13TeV_pythia8/ac7c61082dcb282c83576fb95d1d160a6dc42e670ee38665d95678a6/000000_000000/0000/tree_0.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_800to1000_TuneCP5_13TeV_pythia8/48098478688354e101d82c269cb5ac983524f4189219235684acbc50/000000_000000/0000/tree_1.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_800to1000_TuneCP5_13TeV_pythia8/2eb0d66673c11c3b000afd83fe24f0e6b8e76a20f023e8816fd78476/000000_000000/0000/tree_2.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_800to1000_TuneCP5_13TeV_pythia8/eaac29b113423bf4f869faca80c05f1144ce123768ff9762e0ae2e84/000000_000000/0000/tree_3.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_800to1000_TuneCP5_13TeV_pythia8/f5ce40ed2d814a2721796b68d1b0892ee8b7d36d7f5d9b29a92f3a3a/000000_000000/0000/tree_4.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_800to1000_TuneCP5_13TeV_pythia8/daf082f484d5e1c692abac4119748cb8068f3f891a8a398ea81ad46c/000000_000000/0000/tree_5.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_80to120_TuneCP5_13TeV_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_80to120_TuneCP5_13TeV_pythia8.txt new file mode 100644 index 000000000..4264cc754 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_80to120_TuneCP5_13TeV_pythia8.txt @@ -0,0 +1,10 @@ +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_80to120_TuneCP5_13TeV_pythia8/0d41df94c1a0c94bd356c39d771f9352d27a796d8522af9625f66b1f/000000_000000/0000/tree_0.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_80to120_TuneCP5_13TeV_pythia8/be1de9bf321551db737ae1c9085c709c3a288e05ce437879a9af0073/000000_000000/0000/tree_1.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_80to120_TuneCP5_13TeV_pythia8/60b8c5d1456ef4a960590dda7fd8fc6fce7e36753e77523429f9fb66/000000_000000/0000/tree_2.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_80to120_TuneCP5_13TeV_pythia8/4921e318a397e7b34f378856af8ea38879174638c4e38873bda6ee3a/000000_000000/0000/tree_3.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_80to120_TuneCP5_13TeV_pythia8/1c90f08aa1d79000f84ecfe6f87934c4fd597e01cd1df75878fce97b/000000_000000/0000/tree_4.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_80to120_TuneCP5_13TeV_pythia8/a7818b369e30b787fef123fdb960d48e6c30603a74423407d5532177/000000_000000/0000/tree_5.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_80to120_TuneCP5_13TeV_pythia8/b390cb82493708a45c79ace568359d2c9f4bbc187c51279cbfa1fd12/000000_000000/0000/tree_6.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_80to120_TuneCP5_13TeV_pythia8/34f8a5f07edaeee140ba198d0391c580af8b50d22846d0e41d6d5174/000000_000000/0000/tree_7.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_80to120_TuneCP5_13TeV_pythia8/0f6e538b1302990dfccfbcb1382fa0bb349915414137910fb4f3c2e5/000000_000000/0000/tree_8.root +/store/user/berger_p2/VHbb/VHbbPostNano2017_V12/QCD_Pt_80to120_TuneCP5_13TeV_pythia8/beb1e201ef2d0fda95b65cca072e4e9800d1d44bdd950a83f1479e2d/000000_000000/0000/tree_9.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_80to170_bcToE_TuneCP5_13TeV_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_Pt_80to170_bcToE_TuneCP5_13TeV_pythia8.txt new file mode 100644 index 000000000..e69de29bb diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_bEnriched_HT1000to1500_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_bEnriched_HT1000to1500_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..e69de29bb diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_bEnriched_HT100to200_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_bEnriched_HT100to200_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..e69de29bb diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_bEnriched_HT1500to2000_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_bEnriched_HT1500to2000_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..e69de29bb diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_bEnriched_HT2000toInf_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_bEnriched_HT2000toInf_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..e69de29bb diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_bEnriched_HT200to300_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_bEnriched_HT200to300_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..e69de29bb diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_bEnriched_HT300to500_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_bEnriched_HT300to500_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..e69de29bb diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_bEnriched_HT500to700_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_bEnriched_HT500to700_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..e69de29bb diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_bEnriched_HT700to1000_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/QCD_bEnriched_HT700to1000_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..e69de29bb diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8.txt new file mode 100644 index 000000000..4fc46ec39 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8.txt @@ -0,0 +1,9 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8/476c5da1d99580a1661947add69d8bd0dc0f5e542501ff390eb17260/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8/8c6002aa0edd9510949f7e5ce6c6245882539d8e39f5954b5ea9ad4c/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8/28fa215f28bc11c04f1d66240a6ce4e6ecd6ea7c3cea30f6b0070be4/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8/c25122d3e9e23242c0009318cba8aabfdaef434d1fee756e3d9edfbb/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8/868ce9f8cebd821a290b7a0efa4602e65e83b0bba699af283315b4b7/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8/c3629bb2ee79d610bc4b0ca8d6108aa71779742bd593067e880bdb11/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8/a3bcdc573efcb6fef59489e55dc015a501fbc8349bc1ebd13c5af724/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8/7c2d8bad8e6b6048e429f4baab6fcdc4c0c4dba525b4b8ee1b405287/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8/de2d2ac120aa4f2dc97470fd74ea337b9d66a62b4f86dee710f0075c/000000_000000/0000/tree_8.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..c89761fe5 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1,12 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/99907304118d9264907bafecea3ee5c72f843b9e1c9b697b2b80bcd8/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/99414b228809086e61bdc0b34cfe612e9f0ef02b3415d340c1e99e72/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/1edca9bcfd93ac0d7105552b18ee980c1b353a6d08e0e203d8ba95a4/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/ffb7e74fda2092328f80d29eec8a82ec72986293a432408bf8ecd2ed/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/c286e70479a87a450c1a237fc0b9102a3f11d9c4dd830da5b06070dc/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/027eb7c1dc6cc1243ef8c7ab48ad9027d77f813c451d180c35491679/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/3b1a920cc69518a1ea77c507f19dfae7c89f3e3b411b4ef5ef00e852/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/01ce40062924996fa3581afff46739f50a35ce1e6305eb5807b63079/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/288ebc7298d71501fc553267dcd88a64e9bf36ca00d1ed8368aeb07e/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/947c300f0865cac4aeab5558c78c1adc89154fb60c842f6a673fd720/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/6e97527dae3493036568ffd6602817296705814b5ba34d5ec5564231/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/029e02ed64ba0aec3c5830467fd833d9baa9d98b5810bf1434c5fb1d/000000_000000/0000/tree_11.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..1f32de53d --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1,52 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/948efee8c1f7c2c918fae0a5db7fd3b7071f6ce3d597533ec227591e/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/c79d4ccddfab5002d3b2190289eb9e01ccf0c320c14f660890aed719/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/8ca219a75eafcb42599defd2bb2f52a6da34a1bdcb7b7877d27cdabe/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/6e1db9b0f8d2c3c99760eec1296f11ccf0a3585f98f21e0a599d3979/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/337783598a3826b77d5c91e39041dc2098ef090b714ad6f04693ad5c/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/8e3deec8c3c415258b69da22af45fb9f0ea5f797d6f1f7b40bd4d181/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/ba4f4210e541df095a2847eefc35b216685f120e1faf35c49bbd4c80/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/42bae1b409ba77fcaf7e21973307bb00492b14f22658bd3ec23928c8/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/0ebcb49b9efab022e97436dad0e0098d884bb33b16c0dc1b617125be/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/684356f9233bb372767f8b492ef66a42487b5af0f8b7b89512e4efe5/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/187ee6853dc0787368f14683db78016b14420201be34394af87d1a9b/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/e5a49b09a055fe4b7ac177a60e830b5aae583f0b5393c891db6d222f/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/82707fa4c8cadeea5dd7430e80c55898e2d529e3e622fc2ab683ec07/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/0a06d463e7851f924b3ba906fad8ea8ea5bf8c89f54a9645f714ab4f/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/47b1908c4ba0921be857d28ad9f9cfe6ca7cb435f5307c0f1055c2a8/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/dc589ebabb8463bbde15431df335dee8d23ffdaf0d38f383fcfdc663/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/491fee354b8e1766c08a71c137058bdb3fd8b4b9768afe0e9186f4a4/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/c8c4d1a414631617462f2c4b2bc18915535b1418e897ee6c15470aaa/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/f0ed647f159f19fda390eb47ecf7c4be4497624c9a260e2621edb674/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/469a00a91eba7ec57630c0dd07bd101eda6f52ec88a19e96b813e156/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/15aae03037183420dbdda224b1e4fe37bcc09aaeb2e0363e6a8fc6f5/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/8aee5774d5c00f186328879e1b9086f475b5402f08743c52af2bea11/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/6d8cbefc60f4423485dd28b438474038f86dfc15e2646f29d6008ee9/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/c9ff5fd99b5578e1b62e8d5c34ad34a96392d36af2c4806dbd0a52f0/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/dfdac2d9372b0c5d1eca81ef8096d3365d1ec7a2211d9f8a2e859314/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/f1c49e1ebaf93d249188cd883629064aadcb7d2829e7ca8b981f1a78/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/a339eaf257d5b6f4c26c2a463439a9a1743162af4769ca0539847afa/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/f3d62e9c524cc803d9506f3ae5545028c017cf3aad1729ec88ef1a95/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/b61f1fdb22edb935c05c75b14af92116d1a39bfd5b8b9afa0a02847c/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/91dd53059307949ab71d95c21f89971eb1b35e68d5b23dd39d4628e4/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/1c95d9a719c4bbcadaee713598752534efe76ae16d767b215193639a/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/b9d3fadf6560144c54bf01cfc8478b5568736ff8c5c7bcaf5de68416/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/9658a90de0d325def4a4416fb86313a4d319fb119dd0ab9682f1ef8e/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/d13b2854ba0374bd5359a8497022d9eb117b8986307457c7986b437c/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/e2903677b8dcee3131092265241cdcb9d64ce6e13de8e80b976790de/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/4f9ba238975e24184fd9387ca6703031ec1d8c645c903c8a2beb55f1/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/c0ab167b1aedb6c974f86452bc5e3fef53430b72ffd7ebfd4615f32c/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/41cf9f8962323702f8fddb8b26729c91f4bdf441f9f37b7850a17787/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/05457af5b26b852a02fd37f133a3f9f8cb3b99537c55ade8a4ccd67b/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/c412c4d6bcf1a9dbe839ea4ad90e2c54a579fab36b497bf326e721c6/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/19d9cc20262ee3697d6128215b8308cf80aaf8ec862afc90355a6d29/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/d75065e2a488abe90b7cc90204277b1f97ff72b54408081d39f052b4/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/268eb60dc62ce0736db9dbca7ce2371b5dad85059960ce8a617434c6/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/7b624406a4ba24ecebc960ea612daafd4e8516cd5ac634edb9af9a94/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/a01d20af1275342a06cc04d7aec01f90e767470239b000568fcafbd4/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/2bef6b66077a399e24c95275624295260a4d59735b2246a909df48d6/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/3637adeed8c53831e5402c151e478f2221d15f8dbe69d940bb3670bb/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/b2bdfc05199e68cb7ca587d81be06c5e37c277adf49fd99a04b9dcf1/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/f789e860fd0b689dc22104f5c81d9c3413bf83d000222482452baed9/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/bdce8c55e05278f0bfc4aee00125e4b6103d4c02b1574f704d2c533d/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/31b889570860e795e99fe4098f2c5ddd2334869232698cd2501441fd/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/b5ec82699d68ab3cff711ae0329905c4a268da60e7bc928b56b67318/000000_000000/0000/tree_51.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..028472e17 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1,7 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/53c94dfee6ebf33185f6136a7d4f6ae99c278dfdf850de6f35ec20c6/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/60d50f5467d86e11f45451e2d95a4f9bc2e6ccc76892dad408b334c3/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/42f8700fc78a69d8639b56c35b7b5278be89b4c27794e5e1d3a8e3ed/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/0a1aa6b4bf91f9e3ad882f979c3c7045830e7ba7fc157121ad285134/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/5675b2728342cc1c5678fe7e76e7a4475ccd5bd1c5de41c88e7a9d8b/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/16a6e047a2ee101ac28899dae5d7ada3659bc1fc8b10f5d24fb3a4ad/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/5c44e81b99607ee4a498cb40548392a7cfa902e48f94aa0c06f460d6/000000_000000/0000/tree_6.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..e2ebb9ffa --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1,10 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/d95fc281cd318e1aea0bbe0aa9968101d3bd5d1dc349cb9e91374d7c/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/74dd5f03caa5d73055f203c406e6c87dc0aa4b4b743cfe2ff2f6f721/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/936ebd8a51b14487aada2d8c99f63d91967ffce804b7035b8abfad4f/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/d2caaaeb20d7d1c4d11dbe8424c39d0e957757362eae6eb3d5cb40b2/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/26a41a89700a54a424a267caad64df734b4bb316b66a7b3e37c5e66f/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/dae8ddee228ce19e8cce7ef5ea8659e98fdf1cfbef8064d76c6198b4/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/2afd550f861bc693660eb0d1af82785247fb52d678e44830c065d5e5/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/ce0a95f04b56512a2c834c188181c8f21a66070d8b26798031823bd9/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/229e559b4d9ce6fb0ea8e932e23b90157cffa90140402acbb2117d14/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/2bf6419c72078e20bb7e897f43851800d19cc9c712765cdbbc322ff8/000000_000000/0000/tree_9.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/SingleElectron.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/SingleElectron.txt new file mode 100644 index 000000000..14ca5359d --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/SingleElectron.txt @@ -0,0 +1,47 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/d038a1a06e99cdb6c28c2d8581c6f39e17439a5997e5a24d0da4c0ea/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/19de2afd38aa22c6253c4c0f8c62db841bc12f15a05244d358eef49c/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/8f5af64c70ad87cd4004e158a57841fcbf9b0c96baf40f603720d1cb/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/d45675ab9056bbbedf2528c2c227e17354bfdec41ccbe2205fdf627a/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/8b8262ba41a7586675b747eac4c6b6ec3bd0bac3a9ffab5ce6862879/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/34c100bc109fe39320b95b81c5048a7519d44f0084dd353283f116b5/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/640c5400ef6a14687cc39469410dbd73d58f4e3951c6271d04e59be5/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/d5b5171a139f265e122b082c08e7a7154a468f3dbd3d68cde90e67dd/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/d08aaa9a90bdb849a686db894ac1353f111c48ff3644c4d37f594196/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/3f9924ca601760c03281fe947d07f192dc9d47b74b4dd5d541e8e664/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/3edc8c5ec5ad2f60cf626ff348c069df245e8bb0a606081a1753b3a5/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/9677bc8e7048dccfee4aa463de4e30f30e916abecff51391bc74cfc4/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/c346fab699816d6544ae20a401980e2aa6d3e5d39f2e8518df22db4f/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/dd105d90ba4ba93cb2476bb3bdb1a78096a1fd7096c175c77d699d9b/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/e8b911c1899a9559796b5446daf8a127b23da39136fe5257339c05a2/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/1a5915a12f41d8ff7dad31f238d872c179e8b077bba5a6dd67dde334/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/45645993c0984ab4cbeb18b2f85d0feda9a6a7c4293bf1d592ed7392/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/57bcb0ea8b7975a84ff8c8f8584c095d2a2e9b06de4c6685c4300623/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/e2b60bed77fd49813c449125d60fadec05197d4636d13d6bb5b303b0/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/f806e8d6b39663469e7c3b4be6fc37cd58bbc1cd4a11d7588a7a8cae/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/82b5f6f4923812441eb38bf38659500020c63d74a3dd54f93482136f/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/c8bdfcfb2f908d9066cf4d7ca861f761218129e507c78a9a73ecfb12/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/da5ef49a156dc1e47886a186df6b8f1fea2ca05cdffe985b5546d587/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/b452d763bb4b837bb152f3fb4a046dc86cb485c0518f41d2669949a8/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/2fd8faf63a90c280288c391ab8161ecbd718c722df065e8f0bb2beb9/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/32f610cac8c2b8ed6d30ee4a6fa3e67821bae7db62c5b60c75463c0e/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/2111b2d2687e8714edc941174591d1afeccf3d87dbb039d042902826/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/6235c50bf1ce70e727c3e3059b8437442b1d2426d91052ea1f462504/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/c35d2c77509379b547f134bdf1af9842fb0b3ca86a6bb63df231fb7f/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/ca310836c7f0dc7c1db30f5455b8f1412aae336dc3aa80b1323ec060/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/9b722eccd65d00ae0acc26bcff8cc374e87c88b2146d731e6bfa321a/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/f0d056e6faee120e5200fe1bf31216102360e1c88d91afcb0b893185/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/3092cfaf9723218c6f1a972fe0e903c8b67529ad2e7d3fbdac31c4a6/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/176251a46b2bbfff79fcf61ab6b38abf0cd78b4374bc48e23e1e1683/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/fc1f24ba7a91e78186dd9158ab3b3c48850774832313422791c1c59d/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/bda876d9739b1b4416f1b8f67d09bfbeaf9965f533cdafe9ef36cdfe/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/bbbc218ce9dbd524701f444d32a432d7dfe781be0f82684d01f5beb6/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/a179ba7fa330f1f538b8de26702e600d35685d272f091f31e1e596ad/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/6eccdc9b296bbea4c9066c4681caff179a2b4fd2c0392385e6de19ea/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/27c3b81e51adcb44ce7bf7f41d14a60c837c3655508fecb0a5c813aa/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/967d76fd751dbbdb09cc46f6f1434beb375b38dcd14de95eb929dda0/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/b0718bb0b756c2a5eb6809537ca380623c98099f192cc7f9bd27ea05/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/43d1bb15488e56a048e141e3aa405a9a81d43e360e4dce2e7f8bd77c/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/6e62d1ca93c7348948af6295d0c59bd42838429332e175a2e7fae4c3/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/6347ec3ca98fc9dc3b907c19903b073eab1803a434e0b79cb3b02c29/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/a6ae7e875819ffb6f044b0907720c14eb2bb73aa72b00972ca0ca907/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/d5500ad2389de04bf4a2a297a810ab6452202210c914a3bb23a29b6d/000000_000000/0000/tree_46.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/SingleMuon.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/SingleMuon.txt new file mode 100644 index 000000000..07405e059 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/SingleMuon.txt @@ -0,0 +1,74 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/9f25f6b6e898fb320f91b36a64c9787b42ca68ae5f42f1f22ea457ce/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/0f09d78faa3627f07925d6be65e403884f0a8c6a789423bb23e14829/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/319452a07063da08885eb1ca04b6be87e41d37c84d7c6ec0c012fb0a/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/3f3068006e9b94642bbe25a5698da3e0621b7a30e9b08e3f77deec3c/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/c6350c18c6706317a27576bc1987d8d516aec2ef030d4505b359a722/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/6ffb85d3f3bf6dfc67d964d3fff2891d01e2b38f815cc140398c325b/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/7cac524aa96870f39556b503da49949b865e578cfe572f9bb7f61982/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/d28e46c8fdd803209fe97c268a833929335262ade5038f934cf919e7/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/01be6d91ed3df6983ced0a5b69647387610c23e2cea0ff4f139298dc/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/9edec33c1ed89f0b45128f4d43af4cd849043d5f951d54ba79b3ddb4/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/88b9b01c7f14e3ac226cd2d2458929d56b8d20df2f82678dbc54c9f1/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/5a651054a99db693518644a5b0facc2eb1e8c0488c2b676ff674c543/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/3dc8fb206bd86a5dfe51d579b4c209871b6a7efa1cfa0c4028c9ecc2/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/83924d9866cdba4a7b0a79cf4d5030bc4a16594c7ba64ac3d5771f3a/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/9ca47d512596247b16ecbc0757bc5777bce7f0ab2c412d546da81eb5/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/8ca455643507ea714f15fd1cbdebdd1f545cf0498c91ececf1e45f39/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/299ea4b1c32266c36e34f1e4a94cc589e279dec414c071825f8eee6a/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/18de3c16a2a24b81f08fbdd4e0b422544a495b3f4dcd75c4e05ae3a7/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/1c0d8841c98bc024e3bdd3e9415d41a60d6a2ebae2caf53b1da97dec/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/4bd5baf909010aed96e3716a42fa806ff4b5ddf4d5e0cda5d520562d/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/1583d9d5709bdb30b156eb2576296fc94e62dfaeb59790d5a610a50a/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/b90b41ad9c0c78dc14ceda9dea159f8e416eb92fae124a68ee6c6738/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/22d9a55259b5bc52d05e976ac9c771a7d0009aadedcf160906184ccb/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/1ce232ea1ca309932893b685ae378132af3ec2561622b9abd9e775c7/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/2a97466b8293855f737f8d50f5e414f090810a29202083bb17bf61ec/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/17b16f93f5827ab1392c38d7a8ef5c59da3be697c1370abde322a8a1/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/190b798a21ed34f74920bfb107c6e268be758587eb23a3cc49cebc96/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/0903f160bb5ca761df119e32dff694b7f738124f62fdf5d368bc9ea3/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/567cf2bba9cfccd64bd2890e53c472e11cc973a408042d3b982cb800/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/dbdce13f6e81f5ea70cf53d9cbaa90ba358a5e5a08bc79bba5d0260f/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/282d951ef2bdfa5d76d615a8273c1df3b0b67b659016b19381a83c9e/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/00772b86c78ce676d47df8a160ee597922c14fa70d31c27f7d2a5f82/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/78f17c15632ebb5f02d61df697614dcc859de5d6b1e1d184641dc850/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/89a06b488882fe03b0e73e528c7ab340d39538b193db3326c06cbbb8/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/929053de9f0b7caf6de4d39444a0a2c9b814169b8fe42be99d9d57e7/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/18e990361d433fc960be30bdf70a6f167495af0fb719764fe74ff360/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/8f748505521c94a7bb96dfa2dea086bf7a7c7882a09b966f8abf31dc/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/d203a3fc4415c297a75fd5cebde5bba1f52dc778a4f0c77b12b0d048/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/ca8c5ea01263028e7e87e935799ef41887d97b466ca38ad7395e3797/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/c7700468daef1b58ccc98b02a0d18e22b43edf3a14aac4c0821d4544/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/fefad3e9f3878512110e661a1af5ffab2f5f5b0064bd560c9842c8f6/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/247287c89ed73c66f20cd5f91a4b3d3d339f7a9ea619e24db55711de/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/27fc07acef8f0a87fc06b8150f04c970356b229e2e57cba62a47d367/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/0ef5426220bcb31ac52d10f3e4126bd5af9b4219993a988b8b30a4bd/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/5e379ea22e5d7e1f0836b63988f3d6082ead9e58dad100555d92a65d/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/8227236a662a88636bf89fa4b2bf48f9fbfb435177a5c470b61d2fe2/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/62be38b3ba504546b6f0ac063e0d94b686efbf950b422687657fdbfb/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/fe595cae5ce323a319966e4cf6c1ef93300b6ade95e3d5a5bfcc6eb3/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/312ea9250c9e75c887a490f0dde0045a24b22517337df23e105cb447/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/de76072ce0a7f6adef603528a44911ca706fc63ce42ed7fc503e6ee3/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/3e58bfb2ded662b11d25a1d96be4a222f95de66c17fcb091de702da9/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/fd9f6d6ca8c58737011aa63bd925051f686574b4dd85cc17e65259b5/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/4f8b91ac97874628bc9516f64ddff5303ae82cd759246f60d2e95d47/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/fc6c07cfcd3c1f53ea2b73409ee1fe1c53fdb61fbc6b923ca06785fd/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/8fc16f8d24648633957300f5052f9248f2d3961432a18249866e5f6d/000000_000000/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/5a23e6737a3e799c99621f8f9dfc4ab7f781f17d347926d34c0b745c/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/8eca5e054f266a93bde44246663dca6c2488ee2abde714dc66406368/000000_000000/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/623c8e1d679b823fd346ca871b8460119c8a23c6a04d5cc9b5d415f6/000000_000000/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/019a615dcfd4510e63b065f9ce3ecfb59a88ee88febff6d8ccd823ae/000000_000000/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/f847058511bd9c3d4f02a81fb59c66a347e75ddec1c65be9eb743fff/000000_000000/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/1974eaf1e9bbbec312ddef6cb8ba74d198aabaa1b25292aa204b4b89/000000_000000/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/562278c9f83c38820545967be0e9256db022ced4a99543de660d7662/000000_000000/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/2cb4fa5d33666e138e5083cf244e500152e7463cbd5567314021c858/000000_000000/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/ab65f556ee33eb48e33489a7c3dc7cbb78752abbacd659e23b252d95/000000_000000/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/5cde4fbad192f9305fbe1e69c46570e45618c356ae0731b96099b67b/000000_000000/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/3efee03f6a865aa8ad51cc67ee775abbd6780ef2be0c047717441f40/000000_000000/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/070aed0a0cd56ac5b03d11afd2918978d2003becff52e14e8eeba035/000000_000000/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/c087b43f12643f8b93fd98d0c010fed2dcaaa4dce78d5409da01275c/000000_000000/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/a300eadaa472926741541d4c41ff811b853ae33521661bf9a583aace/000000_000000/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/f3ba71545031fb703119365a880095d86cb2b1977a7264e5106eb978/000000_000000/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/33e50dc4218857193838f5c50a478a43af25ac96acaf9825518b5d4e/000000_000000/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/7e8581552ee2e81093a588c5e15288b27d422e64d01771c487802cb7/000000_000000/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/91d772c40a51ceb34ebc114f39dace9666619b07c545c70761eea080/000000_000000/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/3ae8a9079023a3bb9baeb9c40f68d283ee60c38fa507729d5cea6588/000000_000000/0000/tree_73.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..03e8351cf --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1,36 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/98645c9e4d8088c16c30cc5d3e11074f872cc77d3dd754d8ae829b38/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/c1db3c5d7adc7512f35d768ac97d1a0daf9f0668d85173cd7d7c2938/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/8d4afde1f194ade02ff30b1c8ca09df8ad6a2c9b02b5bb1c69de9466/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/e306285f97a8b170c617e965d359d3f24bfbf4a4df740f6303e9f988/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/8f469f304ad58aa1195f8a061b847fc23b99fcdc31ebbd778e667215/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/dea7c277c8b4beef0c82c510003eadc53f0e719b45cc221055b00ab8/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/bac8bded62f7f78938b12066437ef8772aae9314c458c704f1f53283/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/a454ac6f6a333d81e0c7509960cb103cf7a8db50f6fc6c8b7ecd1b9d/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/d10ea5180c89d87a950e94bcfb3ae932b596e07955146f1085fdd6fc/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/a34d48cd271e05073b6f8a13ad5467905712b0318a6e4311936a9b43/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/8eb3ae0d414bf9194541592526ab124aa4ff2f35820639cf1c74567a/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/d7d1555949b0fca5edbd10b1b921b6abd881c630fa2a3f4dd7790507/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/bbb5ae8b273def505747d3074b7f24ddde3b6109b552676bbcfc9dbe/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/54771df46441e8f58ac1ce4eaeee09a093215e9ce70697cc88650cca/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/749f4d2bdaa18faf0c88cc38a86fa52cccb4fbef76d5fe3cf77c9708/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/c13641fe83e0551b4d6b3c05761dd390b6886a18ad8793d0a9a1f32b/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/9c5e8836babf1f3664408cbf95ca60d282bdad17f2ab90350e2e1c71/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/83d2d30bc32f21301a687f02f0f4e96b131d17cc22c101712a1a0d85/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/6310d03175bf2f308c05f6a04dcbf994ef702c8df7ac60479b568d01/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/6deed7abfeb3ffe181cfe71e9851c8adc252c98c1977e2547c09659a/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/988ab632915d2704210636aa2dc69a8b15c60219fe2dec8851204ae3/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/ebb3afaa9c2f2c30f3675326836afbebf3644b820496142b0ef6d52d/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/d867054b420cb4d0151155b5165310ab05ee2bd83035ce2746c19c31/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/f370cd63beeab254322657b9dd658c392520b92cccecf7f00a70c0d3/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/4f6cc9bf875424753fd31be196c4da925d4d93657881aba7bea9a72a/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/9620522a9e60f2a76a487c23a046edbd0280f8a3a70ef3f60ce075bd/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/e4c59785a37e38ede3c1c823df5c368236ce5e9e5bf77b9d0c08bc0a/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/fcfe327e9a795e71f22e8333c743c4411b6a17db734f6ea270742a09/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/d5e685f2c8924f78276f5eee6d4d67206343e7bd39a7247619ba1b90/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/684ce9122cbfddda1b3d70316b1d596e3bef43de38a4ee934d2b71cd/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/3fd7a286d4df7fcd61d76e8ce3fcdafdf2d6c331e155a07114b11718/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/a6acd821042da7fb5cde98cc9b1140c1a97f8c5673e0659d0208794c/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/d33792396335a90dc1a1794116e72bccaa0fac84c92bf489835f11d8/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/13c370d00ceca807a155cc8eb87c3626bc9f069c648e40a483a6effa/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/7349cb3a101c513e3f5830e260e0d4f0893305aa99ff5d9de59f6960/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/e416ff7af7c8e369dcc576e8b5bfec800c0df9ad7aefc54e98a1caa6/000000_000000/0000/tree_35.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/TTToHadronic_TuneCP5_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/TTToHadronic_TuneCP5_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..ce8b10e90 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/TTToHadronic_TuneCP5_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToHadronic_TuneCP5_PSweights_13TeV-powheg-pythia8/f36f0de2380cbaf7319905d8e24269be7f3d436e80bc0e43ade114e8/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..11f15d720 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1,80 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/13c957ef16c3422844c4b2966c31dc961ed02b2b86dfc9de48029e21/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/a596cfdbe84d6c1ac0642a295b8f55695fbddc7f83a85bba80edeac6/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/942038ca3655718a6665657a7b044522df0d5a2901b4cc630508e0f0/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/dc0a9267353b6660320189d9878c9eba8fb9cfb7d0ca15e26fac716a/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/3a5949b80b81a9e5e2bcb05ec54b1582e174c29518a5ffcc2186693d/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/74cd27136d4942412bf81d6c48d364d1816a90cf67855b0d7e7d613e/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/dff2adb46bf77a40076f40421fb56360a8a3d89baa0363a72bd2bf34/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/2fc70c3a13d61c248bc7e418eac2aabf98f3e3db5c726cef76e9e9c4/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/42db18e3a917a530086ce1aff23c802e940ad742aa01874f9a5b5e5f/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/162ce8cd09dd7bc2c8461d11dedd6a80ce1c93d982e0eeaae9ded6c8/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/d078e065e125ca6ee21bd638aaabfbfd042f1e72e31e1558467a10c4/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/36a04dd77c15b75cf792bf95b13386672167e3e8429a3f76069acdc3/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/95deb235d23ddd525242f4390f8f1f1ee6e523baf4dc8fd60be6be4d/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/4202cfcc6ce600b56d9eab791aa2af8cd58914cc4536b24e161ae5a1/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/834e0fcbec231b65d6bdbc2b34f31e5d21060fd0725a18032a62718d/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/9480f33e1be12c91fb0e3285a297ea4bc5adef29f7ed166cd2075cfe/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/bb18488812530611e60a67f236ad28859294fa990f333db88c11527c/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/f9dbcb52044ba005b8bee44f8fdf2174bd3e02b069fc48d094107827/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/1e1d758b80d8ba4b6880ede6085481bc4a12328d3c79e83e72baec15/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/e57eec9e02385eff0528ded6645405eb044be205939bef1f6a75677b/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/312772e096fb85bb1196ccf3596e1a064d09f58a32f9a22d030abdde/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/b65db62f1e47e56299b589beb46c3dce05a1f4babc971455ab95f4b5/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/6c1af90f27e7a6f5934b326eb09da00bc919221346621f4e4754f3b1/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/f0d78da071d2132af250a194e8c0446061e167b77595a03a9d620fec/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/127a4987545061a040446b621905c64c561a51b8872ef407081529c7/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/a5754d12ad4ad2db36e1b4e836b93a2db9d2590897d4c98f2552c295/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/da38f324b84ae10be244ae9762fd03ac7290aa5672db07cfe0295128/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/49a345a4f25bc19bde40695669060cb6a31ae22d6d09ad4f16434a00/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/8ab73aae6f798f20b9d77e255096bba2161db24392bb8188c16f2f92/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/aa03df6c0333e7cfecefcbb87327ca66f8c5f3e2d045e16e8b9907ad/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/46887bccf141822f7e7fe07e906ec0b9a1299c674b7d8ac9c46da689/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/b68d20328058106f499c097d03bbc0463fe653ca93c1b593c914d1a3/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/d5c1656d25ec3f6daf4e3bb64871234d17fffb638bbf78f792c466e0/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/a79b10f95f84d4104957c02da2e148e7bf3aa0aa03bfdbe4eea2dca4/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/c389cff0f8db1cadb6790153f01d4d55262dae483756da8746af2e15/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/3fc297fbf5340bb4bb66fdf537c638e3e47dfc089c9be2b468d8825c/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/d65328bd2f274b798e43b92d977df2fa9c0703b0463ce8db40c6b7e7/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/7950e1a5afe065e6cf450b0bb07b7754f389c55676e13acd7c4b07eb/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/b046a2f9b360d3c80df4f5dab72e8c418bc1a007a77954d70d733b26/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/8106152e43e47ba78c313f935b6cddf1fc558a71b17dff30677c0542/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/61438d8e2583a41d6e96cfcf8bdee6217ac78f6b33dec6c25b9dc912/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/0dd6847f4749155a6f7245ef8653262380779428e024316330f15617/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/5104d48b976b1cef4ed473a52c6d28a01e3d0cff0d67d745d224bbee/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/d78ee99ed46a95e2cbc838b30b0cecefa6e8b9f07782cc2052513eed/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/e0d3c9f8b9aeed2bae26caf7400fd80ff4c18825ca5dc01b7873d5fd/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/5c56e77c7db3d85ebdd6282d690fd2ec85628e3f7b808a9fc1709bfb/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/b2ce766a6c3587a608927eb46df7e90eeb941b88ca1b35c577a3decd/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/6263676b8eb78cabec18b7739ae057b48560394498f099c74a5dbd3b/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/341c7faef92314d10a010574fa429f0713642279f548d64d3f6294f4/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/5817e7e6a0e416bea12211a4e09a3d2445a7d84ce337cdde3497ab43/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/ad2b4212e5614683aeb87f46afeb390729109ebc0318aaa38bddbba6/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/07d92dbe4168d4a19bee6c4e1dac24887e6e6a922b363326e939fc9e/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/8113bf963da3dee72a3852a6171ff1fd494d3c0fb54ab8d070f64463/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/d57d8059bccf2291168326298ebff9594aac4acb2b96997412b6e3a0/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/73cbb6689487f27838a50f04e7579e8a39af2893886e0f3a9ad87642/000000_000000/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/d2d99b6d4222bc3a73e1e515ace14330d02f75721f3d1993b720813a/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/3db09f81f0d105b12a183c2cf210bc212f5d5494ecd247514ccc18d5/000000_000000/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/9aa0975eadf40ddbf40bbcc28e90808ca0ac91a4fd10d0375cb11367/000000_000000/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/6a3343584176ace98045d4037c926affc675b9f0f03b0741a1e290fd/000000_000000/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/f5af970be6d61c60bd3c382b045544134c596c4c1e83b825ae785d09/000000_000000/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/ba70334d7752b8490d3bae5a5807b38121b11c6565bb6840b612c1d2/000000_000000/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/8d2967c4bb0ed25250cd39b52a71d724878d15e7af4b2c7c565ade1a/000000_000000/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/f485d0092066dcd7aded0e52ca1b8146a7f5ce70a7982ac112641480/000000_000000/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/8a7845ad801c609feb979842aac0430eb75ec1440dcb1bbb48b45f57/000000_000000/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/1bbe40581a34430d9853d41f31f9c3cb82ad541ed86f13125fa7f39b/000000_000000/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/d879bac5a5921e81750d4cd9e6432145564ac81b0bb0e308924b2791/000000_000000/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/2fe31ed9a92102e8faeff86cb3765287df2c3dd0be26ebe434503f78/000000_000000/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/0acdca3bc7eae56cb042cadd7a51ee68627878e1ceb0e895e564c920/000000_000000/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/4224b960ba11a1aa41a95f1325d3529fd6641a92f3b383f34807cffd/000000_000000/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/0e5a545f699aafe193ee1c43c21144d4929a6fc63f7a397fd3dd28eb/000000_000000/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/9dd0136ace454484142db65ca3b09fdaa22d9dbf4aea19b2ce89b453/000000_000000/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/e4d294307ac09c3fd5905732b155276dc2c458a71111e910ead208ad/000000_000000/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/7f99ec80b946f5fc91bf3e64d88d84dcc071cdabf827ce81a36d0c96/000000_000000/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/dd26b27e0fe51f63d003d1d2a42c23710cfdfd7eaf5733ef822ec71e/000000_000000/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/129edbcdce8ac7e708e756ea4d1ca2a37e5f5924b7f1c5b22bdb6223/000000_000000/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/661ce9d1249c058a02a307a8dde14836244a5c143e7a45d42bee6a13/000000_000000/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/9a60df074cda4e7ea825327c57566dbddc07d942052ec09fee6f8987/000000_000000/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/b40eeb4d6535105a9a1b7fa4222aede5b16649d7e1c1c6216837171f/000000_000000/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/86003ae50209d7fc2b77d596c871dc09fafeebc706ee92fe9e54f351/000000_000000/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/e8acf8f92e4650a48a2b62e1feb8778f65124179df766d16e2df8137/000000_000000/0000/tree_79.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/W1JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W1JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..59e26478b --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W1JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W1JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8/1653e4eae518208ca123694078bb306c7236c690aea60aed9e7d1936/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/W1JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W1JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..579e15c3e --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W1JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W1JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8/1ad00db24435bc605cf69abc543d13d55f5fc5fc5ec10faad9d66070/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W1JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8/0643eb2c09d906262ffc2abc5ee8c3f6f3a38dc4793eb0bba174fd6f/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..1d973cb94 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,150 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//48fc174457e6309326192231f088893dd77d5053c65c2ed7eb1149fe/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//5315073952fe08aff92a5e1545ba828c47776a220284fe3e19e4b742/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//3a6c121f0afa41c49233ba48c95451d23d6d0d813f63cdb8d9c56c99/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//473912800cdf2604868acd2c0bcb03f04d22cbb04ab84b2eda1e6f45/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//3530884bc2316d60a5dd7dc7f59b35254832130c8b69f80564576abe/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//1f68651906164cdb252832c99098b310124189c0cf6f079df5d3c056/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//6c5357b091fcda4bd426c62eb9814c1817c02cd28861ca9fd5bee56d/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//3c2e2a8458ea504dff29f5ecee8d272a8ecfb5e153841515caf36bc1/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//73e98879670b79fa4ec5a0555d2f2d91f757f362d9428b6b86cb16c4/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//fc4ec01b2a474d4282efd6da873142796a3ee458d1c081581521465f/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//4a398b70f5c4380548d2468088be997be3aed40c01d18a0c15287c48/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//022299e3d37cca51e3657bc8ef005734c72370ddfa2607b419f5ecff/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//7a8f203f9b1b146a50b0eac8548ddc26504ca6be0c3a0ee56b8c5725/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//90f85954e321e380502e8f888022bd60f187f590965556613997faa8/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//6637fc00d6ce5dd43782d9ddad858ea76c69d4c99a6851d88a0a1f11/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//e5da064a7e127199d42a5fe0ceb52df0ce8171e2ddc09822c61d67d2/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//6dd782f7a7ac4be615012f1d6f87a9e47a601d4a18b67cbde5c0b177/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//5cb8e8fe6450cceb73ee173414393bd31a310e60887039cced05b68b/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//1228ab24a4f17885076a789720a16c1a48b8ff889e81c61a607d888b/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//3b3381b208ad326cd15cc4d90e4b593d89a554338e44c6c89841a263/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//0715892b2bd391281be789636f5572b432fd5d64ab017ea9fe994f55/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//6e57ce0d289c6973723ab3948546936dee2c0f5536ab07a201cbfb47/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//ed0978b8484d292a2e442821564b9eeff4d3af01f9e459ecacd37c0f/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//5dabbfd78ce12a9d056b7d9ea5739d1c1a1ef55c7574952564b22d1a/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//2dd398825902f136cb9aace3aafb87c7bbe868c30193f7640824dd93/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//a1d120aca2cfeea0f38eb835e4f1bf8a04228a98591731160426dda3/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//738305ff8677a1d9987908ab20270efd9254db6c88c16eb1da7d7eef/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//368d20ca9b3f48706a043fe61cda67b0d5e155bf870b2e860531bdf4/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//48cc3b4ab4fa646e834ee8c1c37a25b624bf2ab43c085f39626adaa0/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//f7de3d89d7ac6e176c7fc0bec759c105bf8757ad82b3c12e91893480/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//80e50a0f5dac8a7d169db931156d96e8393b8923edc344ec320b77ce/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//a3d822cbbd401e06479b1aaa88f0ede25e96e7b408c50e17426ac806/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//0b3155151f166c37366639e6262ed82d1882fe97fa3c2b0d584eca6e/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//53874445de29472d3a1be9a0c3e1d7b88768903efff6a67da7250a42/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//79b48d0203a46e0df165bc2d51a47d81df7b082cd97704f4ff0e1127/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//7089e85c1eea50260beb525a86e2a603b3f834abb0f8af30702d8761/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//594fa1bb1d0dc1240838e6058ee615b3693e50db589a31abbf8d09db/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//a1f0d26fcd9271ed2b449f91e71abb44638a5d4044f4ec487a81b66d/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//bd7b6ba5e9ba16b3ee07025eefa50bc30cdcf2e6f5ed25c84aa4ae1f/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//68d4147777b606630d02c5353ef03602145fe656f16c6fccdb56c855/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//2d1bc6578b95d8a9f084f2847b13605679f8633db1b3ba50435c7964/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//3fd55f5e5403ff5cc1dab298f05beca81de1854e601dac4eba17a94d/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//e1b9ae99dc204261b6cb6b31f6a7ffeded1a075c3798c3854316257b/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//4acf3a75bf74bfeb8949133187fa0b0ea71880a21773ca3a42570bd0/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//04e48f88844aff6ca06dd742d6774448a38b8e490a0c4600f28eb299/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//8ff833db567d1f21c42bd4ac52dad88b5ac956d00b4efe0537c7b328/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//05e204c0ffc3af2994d92dd007899b7a919b738e4e0068bd75eb63e1/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//b41f9f81e70666fbe096c6584199b8df547edc9d29a5441dbcf4fa76/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//c2c13bbf50970361a75248d91311fadb898b357c4c24112d8ee36eb1/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//2fbf2c7ba499d497c4637b1c4b81d95b5357db582683d421c6538838/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//126165163fd8cccbb3672b7ff79eb26d95f364c2d5c0215b7945f824/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//f9d641a212c99c6ea64f4581bb31518a951557e775c612672c9accbb/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//a8ce34f1e46816081e5621fdbecdd4c5e79414cb4187c6f4d468cd38/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//ec2bcd5e81578a562ca6d528e00f3b9700c1b6e17b72aaa0ce38bb5e/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//fc98f9a6bd6e13d7f2840b7d94f5542ea4fdf8df2a0908f17ce3f026/000000_000000/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//a78ed416a8790ce0951e63204bd3af4b501b8ff095bced99c72d78d4/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//d1bb105d8436abbae0538e2102918cb04d1ce6ec1e05565f5d2cbe53/000000_000000/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//87c992c77b419da339d49ba03453e60681fcc59de8bab42e527cdad3/000000_000000/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//120f4c6fe55f6cb7cce56dae87ff21c8cf452d220b19140a9eb6a10d/000000_000000/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//6a01885d3cee879ed4ee01d7a88c1dbea0946c10a8df0e1a1f86125d/000000_000000/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//a0fd2d4ddfd40934d90eeb913dee777df3f1b8b7e2ba1481e1483cc0/000000_000000/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//d16de2c969326e35e0005c5d1548ef49369eaab20c2e915fac82fffb/000000_000000/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//acab69fdae6f34268074c8e11d140517e17320603121ba321f13049e/000000_000000/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//3984f23cd39a90594abc62954b0809340eecb8d4351ddf19b189cd57/000000_000000/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//9778a29312b78a0999c437bf5e5a13f77efa1e3662532cfc0a55eb76/000000_000000/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//cfb9b3b5997179b702bf55650ab58ef4e6590cbd5cc6af550cdea6d5/000000_000000/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//71647f634438920a49751c03cc45d1cc584a4cb7aa19524dbc8b01ac/000000_000000/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//22af52b6401a350941039a9530017d11e551b7820bf2be6abe14d145/000000_000000/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//07029fbfcf3f535b5834da7e0ac1afba92d243526a7c808acb7a0f59/000000_000000/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//5068ac79bf4d2e34b7270a3ed8475d044b28a7c769cb4198663f9cab/000000_000000/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//3522d644c267b31da2f93975045c428ed912a693e76e65f7c13f1cbc/000000_000000/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//9dc9d2e72a6dc01b56da9bf27723d05030d1c9786a1a3a569bff860b/000000_000000/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//b266664fb563135bbf8b6ade11281e8cd1b56370a6bd05a4663400ab/000000_000000/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//441039e0d3195b99cfa109f05c54097387353e31d0e6e169d05d53c3/000000_000000/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//838bf132a045bd98187ca7a80a22781963195917d3e55cb4e0401beb/000000_000000/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//3b1cf2dfe20f74ea3eb7bec13a5d87b272e98f85e30d229fb41e613e/000000_000000/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//1304e63576ad2bdd7039f0be6fc967d362522b02b7308c410ea2f15b/000000_000000/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//1f7a44128a9a6209081192e3917974291611692e168004e211a37dca/000000_000000/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//6fcadaa474f2db240cfca22efaa8acf5c67e47b48e380a0cdceef757/000000_000000/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//ba05017b1ecb50f5edc2fcfb1718f0739eedef67246ae96bc412e193/000000_000000/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//c635b892a205d6f287793ae2921aa01c50775c813a87ca4449600f47/000000_000000/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//12ca7edb06b1ebb9f8d23a14de35a6f54e2306060d1aa6042e469bb8/000000_000000/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//7d5a76bfe7d3b923008a7b17c3b5416bec22eaaf6b4a02d6ef1cd052/000000_000000/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//012fddc60560c275ca73f44720cc41f65f05a0df2b25b66be9818d89/000000_000000/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//b78c368c55418170e2f3a0a345af5663a377c8d6246ac32bc5e7bf1f/000000_000000/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//e977a96baff9b42b48edf5fe1934f7259d0c071d1d72a2f35a4535da/000000_000000/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//25c1de830265a97ba43888a853dc4bbc417e1c04f13f5b51f9187815/000000_000000/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//d1ec997c0f0899ad67bb5e314537b6f3173054d39cd7696da61bbfb3/000000_000000/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//625bce13c72c2036ce978b98afc2f230950d974ff9a02bcd4eeb3fd8/000000_000000/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//2fb9aea8e82d8d7caec6f9927cf32cb5523e3b23553157d3cc30bd02/000000_000000/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//d80a70add8189306ba1762c4905df2b39d0bc0c4bd8573b13920004e/000000_000000/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//b42d11f559c71d9b43cc6d226de3056da8790b8e203cac4549180649/000000_000000/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//ead5b57c614677b8f31a9171025477c838568cbf37a54a8659eb3c2c/000000_000000/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//8aaf01d871e3bf4a00efb817793aa09edfc06f2022f5a6e386a15f72/000000_000000/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//4f22c1a8ce7b26168d5b419f518991bfdf48dfa396030c8528839467/000000_000000/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//f7e8efe09bba70243a0306c97b00aa1678ea45913d52750ffa3b85fd/000000_000000/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//008a90056a1a3adcf07518be536f049ce4b165f00f1d78aad8204aed/000000_000000/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//d885031ca80b37806a7a0f1c855297e25c39b07ba95ace00f01970f4/000000_000000/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//b7e3b401d5bdae490dee200adaf84cd0ec40985459debc007ad36061/000000_000000/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//88d3f92659b759ce5c657a4d12b664e5b8678bd09b30a9e2db1a1c40/000000_000000/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//81925e60c08fdb5439c157850a62795e6e70533e0e0237c7af29e267/000000_000000/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//b3801d89f03142ec585c08daf75293a9d35a33ae99d469bcb23e56a0/000000_000000/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//48bf590cfcad6657731127636ce2f6abbf6e9660887027363b5cd199/000000_000000/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//2b85ecb6af7a95740e0476d28672cdc6150d32c727571471c1b2926a/000000_000000/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//1f9ac8f86da0f3055d471d9f6b94152ce86aad36694ef4a122c1d604/000000_000000/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//1c845b5de3d2c237a9790d6005795efbf5252794787f199f86f114bf/000000_000000/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//a0168b385f777565f6c858d812a4e6de2cc2a3bbb7799a47fa10ac4a/000000_000000/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//a368dace32d6f8fb475a5ea9b2e633f20f05501c9be469de9d412dc6/000000_000000/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//2c47ee67cf4d8bbcaefeb5ed423dce25d4d83b0d55d899fbfd93a0be/000000_000000/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//a1c8fb1ef66118ad60eed8580b05aeccaec94e950b6ec76abdd3be6c/000000_000000/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//d242646dc3423397528e14787c9d00da2c1d2413227eae0f0f0e9a38/000000_000000/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//80ba439b49e54cc7635532bd578e662c7ba6fda6d0b2642a3fb37493/000000_000000/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//6b6f3cc75e129b8e4c3ce47f86b4b3133b267eb36a04a6084764f4d8/000000_000000/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//51d9d9e7320cf02fb44badb808a3ceea0933e83098e070c0cb896e51/000000_000000/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//74a5306899e31b7a25c9513784600e07048cb7941f6078093d99e6ac/000000_000000/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//31ce9481053e6352d82dd0d6fcf05b91f05b2e67fc41befaac18ccde/000000_000000/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//70c2c6926f3db601df69f4cfee6dd896c1f5409d1e9d89e33c286478/000000_000000/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//d0fee6b982e9e8e3a9ff8f9a08be71ea355b86bb64dd48b32a622471/000000_000000/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//6341a8160652d400c85c590e7764c2c5259f928ac2880288e7e7337e/000000_000000/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//200bf569ed7be13b372e1b5e0bad99538515f1e0e8f320f207f14e82/000000_000000/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//9cd61c6a7fe6e97015fa633d7f7a5db85e840c840a6551d22d5d78a8/000000_000000/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//057dfde0cba2400aec892cbda7cb41e6780369ab6c0c5073a967475b/000000_000000/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//beac0150dc3af8b0faa1c1e25b0ad8d1636117a47e37c99ddb0c84bf/000000_000000/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//518bc68d65378392c0586c2a12d0bd03027a1bc1f3ce6cf063c59cd5/000000_000000/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//f7eb6cfd5f8565f1808fbff68a3ecb7b49b4c577656e0c0c0965af26/000000_000000/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//e28f3ee5579719bf341bd8329dfb21cd3f0f4701a7f846dfa7c45991/000000_000000/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//873052ff3af290b56d8a9b77124ca6bea14c9cf6d083d0303b75a498/000000_000000/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//4e5466588931a07c867875c12ca123661bf92e2ae519dba122451344/000000_000000/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//410781d5e8e232e183c5afa328497fce6dc7bdc55bac141e560f32e1/000000_000000/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//1e7fe3160b4adc82b3f68dc68f2010f6f33f5f3dbcafb7278e3a61b5/000000_000000/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//464b7d0a9f9ccea873fb36958554f807026aac8afb0d5a65f36393cb/000000_000000/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//e14e0d819784218af19dc1798e7abe0c943549db86edcd10da033d74/000000_000000/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//3925cd9edb66d3e472e7d91724509dcf299fc46ad0667f18cc35eb9e/000000_000000/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//65d8e98c3dcfebb27ba739033554d5ea4cc4813c677f1bb3ccfe975a/000000_000000/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//83fb54fb2974618603678b905309ecbdcf0e29606676e7706b249bbd/000000_000000/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//a1126d5045976bf6516483372b293a17c9bfb25e373e92620d4a0eb7/000000_000000/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//df645d74826893832224b6cf68dbdf627bb1865cd2a9e091ef9aa289/000000_000000/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//16cc467dd70d59a71e2fdf1f786f96072be5d33b55f818a0ed779e9a/000000_000000/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//1a1e2b57a57d4d0aa693a109e18dcbf981c66f374d7efcbd5bec4e95/000000_000000/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//4711d06a57321306f174329a36454aef73b7fdb48851636d1d48ef71/000000_000000/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//1c6f34cdc22653cdccb6698da8b5bf12c6ccfa7c7728d85e5cc90a3c/000000_000000/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//e307dd141ed1dcf59a8857a30e322da08de46ea5cce21502a4a871f8/000000_000000/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//40c620371535f68a522c3b0885585a2136d3ab1f8d6f038890c6e04a/000000_000000/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//98524d7230ce4f1ffede815fc6b9f976963bd0121acb5248198065a7/000000_000000/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//b4f05f6c2c0b1570721c6ba91faf585555f861f70f9653de06bd023a/000000_000000/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//58cc5faffd69994f1ff4d9c0aa32cafcaaa2b44ccd369e599650a534/000000_000000/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//12616560e426a2f8300b361223a61ad1ba937c3a41e793f9b90dd5c1/000000_000000/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//f1c494038052515b85984df27273f8a2ad57091177fd9458d0f1aa1a/000000_000000/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//006c62ca7f904e96710a869afcbf07dfbac94d89728f63e97aca6ad8/000000_000000/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//68a287f7db56fa9e110d8f7dcdf46fe91b069aab2189d506d7dc9a85/000000_000000/0000/tree_149.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/W1JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W1JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..9e14a07fa --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W1JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W1JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/61e579b96b2adb93a5ecea0b2ea14a060f4adde3707c761e0543c6f7/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W1JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f089aefcdd2c1706fb8c5223fa608cc83ad72a4700817399b3d8416b/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W1JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4646ddb9a02a1d051ad4f218389b61f681df8a8839adfa06457ecde2/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..186a19294 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,136 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5f51d8022f0fc9a3131148ccc67c75531e633d50ac00c8df82f2cf69/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//c711ae97a903a40705303207f07cfb2fb74e0fef0a64fddbad1fcfd1/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//20cb8d9abf840099a6fa4a1d16fa95e97423605651fd0edae93ebbfb/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//9895469235f7dcae2fc3a50b4beb02997b8ea89fba6f94806259bef3/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//dfce24e2bffff0f096b7d0e58fac33d83886170ed9cf4bfd855c3d4b/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//4b9dd149e71cc441b5e0d4f6946939dc3000224c6c2812c6c1a9f5b7/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//554a3077df1eadb576c2163978fa0ae85ffdc17a6c59e71a1f6410f3/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//b379bf76e15138b75ed908eb0375e168c7acac099529f55cbb1b620f/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//897103859c83fe89efa7cd4f883edb80472b5a2b43bc0317bed3a89d/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//0e5d945c61a7b52fd02f80ddb80387f61b9eada3a4295ea69e73d219/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//0830fdda46632c7f1c24154590da6c63412a0a044ce2ec193617aacb/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//e6f893a2b04d65351bc772028df52fac901d87b7a5c7aa3ae5c61899/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d36b42872ed307f7accf4fc056d5ba90d49ef0c807cc0eb27a604fcb/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//7dee20ea4b189687b0ab66ed7b4ee3428ffb81b26abb88adcf490fae/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//75753f802e6a2a314b77778d47e5448dc097815e93729452a5253438/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//29f6b1fb42b560e7e23da6f8fffb47bbd442c0aa30fe01a648302e70/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//077083d0147742846ebe22c9b09a7470a29eb61a7eb2d1d85421e654/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//0b5047d6eab147737c7f3af5766b4b90a467445223ecb1b48cab843c/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//1c226f7d21e38e809ae08e091eafb11067687db0a0adb521dd6a4cb3/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//0f99127700a60356c6ac3cf070aefc8c2dc0d3302625674ae0bf2c8a/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//e68b66781f107f758bf664b87915b24632168f3077da74f7483e1281/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//0bb7837c6ad2c99421aec98ddee5d31f72956bb2012a6b49a4a4fb9a/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//562c8a441ae59ad5747f620d612ee2bc9a8813a3fc393152f4b4ae00/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//e97baeb6f9874c5693183d61f4ec7b78daaaef667a7278be0bec0997/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//52a4c244b53888a7a7639d760f02947d5008df662e3f0eade078a96f/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//4fad3baf3c99cf94a271012663e299d0a69487cafc061dca802ab106/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//c0134fa064c58cd7afeb5cc3899489538a8beff6f4076c8efb1b5b2d/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//2c6506070760791fc998bb307719b5275c18d7f12251f1865a813ace/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//0bc901a9fabde6e272b02153b35b65c7703566c311db2987d3f18a1c/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//57029f1134015885d593a29440a8cf90d5570f050319786068ee21d1/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//2c70a1b45df6c352c1c655801d4480187029355133c83e999115aec8/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//854ae2cc65508f82bd2db96b854481100b0f7f7f1bcf8404ecc10641/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//aef38a393fa335911a532c72e0eab81a2f0993b9d13c889fb83c5c74/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d9104876ad159c71696f55a3f5e44ad752c641bc5d0c3bb67dc72bd0/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//31a2d92fe928b809029b9dfc580f6c012cc15b99e4a1783bb4d21db8/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d888d745d9127451e183684ffe8df5f1f44f064eab9d7e57d20cfa5d/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//0cd10cf88cbfcc4f5aabc8c7bc4bac6330c0bb75d338fd480cba671c/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//0f56769e6f268aac0e435d1efb6973cb138abb7ed9c34e4d62c03685/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d56518aaf1837833cdbafba8ef1ffd1f6f79a899222193aed382adf5/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//42d5c7d776b2e380708cdd187a4c5cb92fa267504014a312536f4b1c/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//75385dbca9539aaa1d6b57f4fd2c0c9ff6c48f4825378463c2bd3907/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//3ab6fffd245c5bf9fdf93dd84c08737f8bf48a4642b3e751aac7f8cc/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//2f3dd21d2cf4ccc11ae868f5babc2d61dbad8191fcdedb193229cf37/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//26f75daba0903dfe25974916d62dfda2cd866dece636e093e4f1d5eb/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//bb637b2508d1305ed511c5c55f68405260c6e5db4ed09aa8ddd51871/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//563ccfa70a0a247e14ce08be2e8b01298bd2ce9b1069309708515005/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//4701f49587a0d9933291a883572b3ee214c414a3f27c4b4d2e580143/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//6c6bc2d738f836db29ac2156ed7c9ffd698ceb9c50ec7b8c862735d8/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//dd21d3195b2ee94c52fdbcfbfc1e2b4ebd12d59e6af5f3309668049e/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//687afb5f27e029e5e585b2cb1d6e6bf284ec7cf00f4ff1b277b464ab/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//339b34775731d67dd708d0f7686e26d7a6989b05d4688b0bc35a0007/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//61a0531708ec7d3a1baa58f785031756ba2464ff38fa3b8e18a5913e/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//95334eb5388dbe671bd64df356b5bf9d37b6b1e67865d6cc8e01f0bb/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//70245dfd7a9accce9037d51cc40ec1f991690d1f07953580a10edac1/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//29ae86d83f9f9e2fc86ea9a9197906362742c8cafa49772612514e44/000000_000000/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//4f3a496dcee0e4f62ce17f26042663dddd8f2398247295341832f3b4/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//347fbfeb7ef3bd422bad61454453cbeaa4f838b989d7006d287eb020/000000_000000/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//becc5b7abe8ad3013f5e30a370330db319378b7ba07dfaf0377195c5/000000_000000/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//bb322134088f4beb3ac305daaffafd1bb0243eafc0e9594014dc4402/000000_000000/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d1c343bad2b2af287687e99633453942d794f58d13437d7bd2fada82/000000_000000/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//3cc526c20b580fbc767199a7ea4ad300ca3ae05f7cb3f89b4d23a82a/000000_000000/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//3301a1506d131b55677d3f74d6e15cf07309ef95e9c8a5c1849b6ad3/000000_000000/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//c108b8e95383ea953cb5a6d5eec7a9468a137104a977591f3b4086f1/000000_000000/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//b23252baeb9c2a21dfce641dd945c3e4b5610c80c7751f83206c7e83/000000_000000/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//e8f93ba7be5766fef99edc8db6990de55947649bc3a1f457d1d2745f/000000_000000/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5c1779cfdc86032de501df65d421042bef7a33b220a282cea8b0ba41/000000_000000/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//b36b3612fbefe3f548764f012773c2077acaa3c27d2d986a7bf740e2/000000_000000/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//1ab4f648c8d715055daef41a401ccfc20453c52cef571a9ec4d7aba2/000000_000000/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//0f3aa798f86a1768c4f69d40e872fafcc2692c1a69e09fb4317ae6e1/000000_000000/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//546c3eaf3a67a7e3b42b3a13a694192cdeeccf3ac7e113222f84723b/000000_000000/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//cbcc8ec22f12d10174ddb2764349bc890f801a8c514eaf058a9e7687/000000_000000/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//53074e2f7076062e68b9bfbf13927dcb883163e9964bd6fe87610dba/000000_000000/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//f73195ce9386f6260b0100b994d90ac01762118080d24045948a57fa/000000_000000/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//a34cb6a2707d8cfad8ff74b23257b6411371dde771d2e1d27af88201/000000_000000/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//fa0dcffe4522f9b512548e081b298252d7112d4cf1f14465d98985d2/000000_000000/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//b2410f07f2d6fd9345422ee37776416daae4c754ec7735627032c983/000000_000000/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//c840e4beccecdcd831ade7a9e8ecdbd6533728b6d550ee9a4922694c/000000_000000/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//7a36616b8a1ac42ef0c40db21d4a2771f378bf7be55420e2249737e8/000000_000000/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d0ba4e5e27c3b5febef71c0fff9f8704f434aa115ccac7d77859c5b3/000000_000000/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//63fc8d03ae1c7f6b7c10aaff6f617fd42d7664e26d4cbdf8695ebc91/000000_000000/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//fd77d94f121aa22db96614d86df4aebb282dbec837694cdde081956c/000000_000000/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//7d0d07b2b74976652b612f8d0196c0a191dcf5f2f67cfa683e933c15/000000_000000/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//9cf3d8f65bd89d6787a384aab40de1871a00c7f3b1b1d8bf7186f1b7/000000_000000/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//1710bd85815275b450bd97cdeda1e63248cc250fcc00130bbdf57c6d/000000_000000/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//00f33178c4d8500adb2dfaea247e75f28ef247cdd0e76730638b7dbd/000000_000000/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//0f69d6c4eba8e9a8a0c493e42d9527abfed84ea46a97acc5643d42ff/000000_000000/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//043ac406932d93a439aed34a1393664474be6ac446617bc483c0890c/000000_000000/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//45e13dc86120694eeb74b75781c37eb46d721c6e38f5f58c197f2a57/000000_000000/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//e6e8f7f1a6e628e6f7d5212728c064a2f9059f9632baf0a33f7c9bb6/000000_000000/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//c61b6e21abb5aa80b6c06ffb590deaedeaf6d0e6c4e52b3197431c14/000000_000000/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//790261dd19627f1c7998f9873871f921d983297f7868920af243dd0d/000000_000000/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//99ea9e5a261eb1af713bdc0aab5e555e626df6a0563559b3edfc4fcc/000000_000000/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//9528e2037148720677d14107da03e1111195638bde4408326aa1ff2f/000000_000000/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//92dd264edd9d7357350bc046d55b52a1f26dd595fc3a8974436f4461/000000_000000/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//6bfdb06ed8e34c5526a7c9cc5fb5896f325575fe7b7da668b5d4da43/000000_000000/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//071a9f767c5f5976bf06fbd9c265cb98b990ad396f04803ce24c100a/000000_000000/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//b518a33d9fc0d2d9a2a887639d1dc90d002e039bda906ad6819aed8d/000000_000000/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//768eebc81febf1eb1e88d7adb4f46964c5edcef8c26ad37ee64903a5/000000_000000/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5d0aa936bf4bf7b83e28b00b8eaa6129657f377d5a2cbf51a4451f3e/000000_000000/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//eb8910f19497a1af6a1fde4e1bbebc2fc77c6cd2a23805c682e96ff7/000000_000000/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//a2cdb0b2f62a3e015a3416226c35b089d2715e8872036215c88aa229/000000_000000/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//58a08a4e872c9e4ec02c10daee50fc9f1b65e7715a3e3f99e981c1e4/000000_000000/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//ed17f9ebd219898696b813efc1c5ef2a0f3d33fbff4503f4394409da/000000_000000/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//ed0574e22ba2919817155e9fb7557052f7b03d61b4f93207fe613f46/000000_000000/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//eac03d10f1d4c88436bdc52a66d931ae74e172157dc723e781a7115d/000000_000000/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//9223c4f75c2a6d34cac0c44a5e315ba96eecb220440da4257d79f2ca/000000_000000/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//e842f531f76b7edac5560a207e2e4c0d0d5792db13c4bc72677e0c2a/000000_000000/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//285346952baddc0f8bf1b0b292f2f1f4ca89a8737e8b71a6a5871d21/000000_000000/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//eff34f534f4569fc9fe1b4534220166e4d867fb16ee8a866811692e1/000000_000000/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//44f7c449550ad132ea2f257b1d82b37ee04634428c742ae9474758c5/000000_000000/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//a941d69f70f15d8cd6cd16293369e2ffc381eb7796342507ab40e325/000000_000000/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//11c3475489ff1d3a9b4b1abbbc7a4eca8729a582a5f6cd1ba6bd0afb/000000_000000/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//4bbdd59426c7b335957ca283d64b527877497da91087c89c36130e74/000000_000000/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//9661733666087c1215d8d410c28f13ce24693d51efbe06eb45048add/000000_000000/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//4e6b53892632cdcab75b140d266c284db6785787d35cf8805d867adf/000000_000000/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//7cbed144c2e58e0ab213c7f7acf67a7835a3b21128511642b8a2e8d4/000000_000000/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//e1b82d152cb45e80cbd490f7bba747005f8842d4d52e44287df4ce09/000000_000000/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//c82d9ef2a30642948269c78738bf7f3abd57f6841c0bbe012e0e6e6b/000000_000000/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//ef5894dc17f3648ae03750b4b1e67c4460d76dc62e949a52d5071852/000000_000000/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//6aa9b06e04adeede06af04e003b140c514f1e7fac106dee32e800d2f/000000_000000/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d1b69dd1c17e349f6eb89260352ccf2ea4816865136b7a7c4d66298a/000000_000000/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//47f95a2c65142819e93f7693aef589d2879371c51b90db9f5f9b9cb6/000000_000000/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//933dfbc45e1e8c14896d82bf425e310d4b10e7a0d8e2a71476d1684f/000000_000000/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//ffa09ee46a6c78c2efe0b05a0729db6f0b993a0ae840fabfcefab075/000000_000000/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//9d33b32a64989074605777e3763fe1b7901e8927f2ff324eb6e2f1bd/000000_000000/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//fc2844c36a3c879c5f8b80ed937fea5aa0b64c44fe18146808111a50/000000_000000/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//b9594c99a2d42aa5c7b73f7929aab4308df11023f8a32fb028b059da/000000_000000/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//7b6aff0eb1503bf8ab25505f8d1b88dc4d801247fb39b15793c6c99f/000000_000000/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//971e25f712c84626247d7c78c4c794c83e20be76a8625163c1993f30/000000_000000/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//44481397d7425eda038ffeffebd27b63da2293d948f51a110c862042/000000_000000/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//53673430be366ad4cf1ef23c4b6382cb988d2afd8a44fde267a146ce/000000_000000/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//95be7bffdc07a81349e2e05fc349a62e2a54781e67260ef516637a0a/000000_000000/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//a45367b1f4dd201b9711b6cee2c867eb0ba395be067cd39d2f918716/000000_000000/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//a7b11ee909e74c46e2043ca4b45cc2d5a4fedb3ee0bdc9c7db8d4974/000000_000000/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//bb80469c68edd23f66b1d3886afb7ab54693ebb92b93895e27398cd5/000000_000000/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//03c25d2ab0827c3d68b2b255093cb99547b9bd9070a60f2305299756/000000_000000/0000/tree_135.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/W1JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W1JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..219e3227d --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W1JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W1JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8/439a1bf5482ebd79b27b18339de6e8ce616de85eaf5acbfe3c8bc474/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W1JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8/afa074af9e4f821d8f99e10be58c29e69daef3de0fd318e158708bd2/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/W1JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W1JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..83194cb36 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W1JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W1JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/e63ef6cfdebabd7a17c1a6d53cdff5efd741f092763c8522642f2fc9/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/W2JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W2JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..79073550d --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W2JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8/33b59cfad08b52b70d4f856ccf035f59eef766841db482c8f877fbb0/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/W2JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W2JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..ddc8f798f --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W2JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,4 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8/06dcd7756ed3a1a9b6da3a620659aa52a4f4731fad6e936a8ff11f61/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8/6dbdf1f7b85d4a47a0d488e5e763e191351b27c1e23d21c6cb502529/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8/e76fd4dc339aed070a1b1c29cdfa700d8415dfc7953cab2055d424d2/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8/14e1bd52e6febb87193ac4422eaab0a632f905bb2abe4917def5e615/000000_000000/0000/tree_3.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/W2JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W2JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..83c10e31a --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W2JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,4 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8/8449a9ad79dd95db42f13cb15c8a93d5acd2584000617a2630de6d5b/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8/dc8369200b323dabc1da47f6502a3796d0b40514ce611943a5757651/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8/2de079bbc7f035f96279e8f4d6d0c6d0d3d85cde74df1aa0608e48c6/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8/d9237b1c731f4972786562b2f2cd947767241ff4fe729090447cd5fc/000000_000000/0000/tree_3.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..383755bad --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,732 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/79da6821fce902b134e8c1574242ff75bb23cc0f8e7e1d775ca7de4c/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/fba7cbdd2916670c2f28ab1fb582de6dd27fa282c409960325e8fee4/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f41b12c1177f97158d7344bc98df7508ebeb404a2b2b4084b837ce1f/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0e86a60c234f6bef2d373abe0276707cc61c8005c2035f538972782b/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/46d5efc40b9d2852dba2ee52b1dac3f13beb9632d8a1f2ca97624447/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ff4b3abafc5c886389e4f2e5db858fd08864dbde50de20e60f6e0185/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2e417c6c1ad359be4e07ec1b324c02815741803c6f0e3555b189bbc6/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0afeb40ec49d83244a347baf3b61fb22a10b7e9b6435a3478266bcee/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/28df9fcac70b5e3757c767c206aa75073a2477ac8e0a2d4d9b613edc/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3bb264a5ab02726672635dd2f854a8f3d08fa40f8d30331b40d00a4c/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a4d1df37f84b29d09bab29fa4945d51f223f2416ad51aab2d0e11904/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e04b932fe2410cbf4271e0f2402025c30ba2b03e9e5a0724fd9340b5/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/043d50974dfbdb00c1474d26e640d7969a5f10be50e34ad94a5251c3/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/325050657b13642966a7ba7ab9907bbdd99b30a2e11b2af69d168d88/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/52b2d4325b24bfb787b96add5be2275e51554da82c2fd79448c22a2e/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/53629f018f6711b3eac96a2a4f5146c9bf481e106072e945c219426a/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d15a8de821a369a91d345bf0e84c86828b4860c2b718e268b4abd85d/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/638d791f33d6abf8607e1e1406509828dc9472184ef6929a0a574998/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e9e98924c294251c2edde076c48596614c1a4f3afa2ce7c69500d56f/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0e44645d5b55ea08deac80225c7b10ad7a30e487cae9013e573046af/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3842c3597f16d9b5872772d0de5b05f616867d5811ccca8c5e171d97/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d5d295e14fd7838a37792188156cb457691fd1776286d89290080811/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d17414767be3637894b23fce11081547223264b855e0c300b5704519/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/debe46acc9353ee84bde0fae77be8ee9a114b660b54074badfbcfad8/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/aa3280c06cd4c43b523b4eb66780d302316510954de9966a4c438139/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/069595c1fb07af3752b54570302feecfa6c902e7405242b1528344be/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/559a408aa5d2c2f97bddac9663e7db4e8c224eda109145aab3f686f7/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/7506c07f7593d98e33ce1b9942b193433f85531111b2ae8f670f1e76/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d592bbc7293ac37441903c31f2f8a85352a6780b1ff5dfaf196ea0b8/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2cc51337a05386a71346a682f8ed820e670cb79a9970c10ccf3f899b/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/bb8c8204ec025545e57120e28fb6b249aeb11c3d367c909970b14cbf/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d4c59de3b5b38ddd649a5ddc550674a87499361e26fd838d7c214dba/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/728a814c5fa994c708e7fb3c4cebc86976cfce945edef37c6fab775d/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/50e8f14dc69374215633b375bde269e8203b897620cd85828377ae15/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c854564306c0aa8353c278feb0c578f8c7f1ff190b46105b64be9ec0/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e27053c20e572b6daae6b24c5b7aa86ba5071952cff26667fd5901e1/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/65bcd5af6ba76b46d1e1e3202e3d87a52aab76abf623d7cbf8318512/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2717185d32261ff9b24cbfa4598976a390df90fbb402c30b697d9262/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5d199d6ec43225dab7b34316a1a095430dd313b7b1d1850bcc578ac0/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/bf9b870864065c1fee572be8ea373f63759a9a12147ab3d93d9fca85/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/7ed36e5f7b8a3043ab522f3f72cff991e3fd8ca49f5a69ce2bdb2ffb/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/dcebef879cf9db5912bae354cb1daf52623c40c733a60320484cbff8/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/18c02c0c7d94c7d132a55c546f37fd27a6d00dfc0ebef6504c53b181/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/cb8a3d903ee3427e1402d5291f985002f5cd682176158607a231a74e/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e631130bb89aba5d6a4c4bccf83fae26fcc29a4a7536698ce80a8ccc/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5fad4aeb65a3516aa49ba38ca71f94955ba3ce21510d4c019d3a175c/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b16dbb13a7e90d488ce474bf16445c30e8e292d0c2453aada25108b1/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8c3eab8e58de95a8f3b0785f081175f11ef9758854a945bef4761b30/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a11f63128ee12c4377d80c25a6486db3f9665e7d597c146cacfb7075/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f169f8d2809ac4d614a663919c745000b29a5bdaa664040d3b829ce2/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/82eb2d233cb83eb4967f96352542e706b8ae21d2dbea788899a38771/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/bbeca4a8eec6e4b4e922494065c2db2f7b0524ba6aaff1dd9fa3391a/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5e684853a792415906de65af40f8c3c26957ecf4ff5fd3f26804bb70/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8c035b011beaddcba337102e4e378994f43ee826af22ece5f2795425/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a9c3232ae4368e1ad649f6fc0525db3246437ab9106a67d7ee60eb8b/000000_000000/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/16ad0be1a0c97eb2f3cc2485a53c180af27c0f3ec2a6e8c402550ab6/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/90e1a0a0a45f64a1e5027414f0d7818801ec6f31aad82741982da20a/000000_000000/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/913502fa9f9e94792f9c4bf3517b6c8a77316e5b0a8640108ced255b/000000_000000/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/324f3ea3a0d4254cbf92e07c09de287e1c1a1ddfcf13b41d882c3807/000000_000000/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/05f898f5a1b4a90a1fb86b4169c6d064ca0d9ad00e94a21848389f27/000000_000000/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c6af185cc5ea7500002eb0979c2e1e7cbd613aee40b770873f0a7871/000000_000000/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c393b9809a20203525fc89fc3fbf05f9e915a3001b58569574dae9be/000000_000000/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ac788fb5701d35f9e7b4d55fae48e60741dbbf9d12cfaddd22e736d9/000000_000000/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/12e0bb9e282ba9b48c4491fa0375d3ed8c50d210ca2249eeebbdfab8/000000_000000/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e1dd6b0fc0b864845c1208833e4ed415916d702ffe12f89402733c64/000000_000000/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/bc8302128ebcc0a478e134008b50a190eb2d40be2735e2cf65599c6e/000000_000000/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2cafbaec9ae9cc356ed39fdf68fdd1c831baa52a8b178184516c02fb/000000_000000/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/22e73bf65feda7c9c0ad5175e4641ac4b991b67e00378da97097d1b7/000000_000000/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5c10b945acc139e9276df4d82513e30cdda5183f6507a216b135b9b5/000000_000000/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b18065018b07594c877b9fe3558ebb678d13ff40f816007be2fb408d/000000_000000/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/81378e7cb2cb574b6302974ad3552a6805974c7912123dcd63ba66a7/000000_000000/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e593fe1903c3361b72debf0041de1ed2f7989e8ae2b85641769686e4/000000_000000/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2e2e61ff2f5ff0c948847e35765123ad71d1495e79939bff97324498/000000_000000/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3e2e6355971258ecb8776b2d99c6cff60cffc4c272e1c7ce96c3f0a0/000000_000000/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9073d2ff0a0d4526c529c86a749d84284010dffe64481273ee1f6d3b/000000_000000/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/342bf99fc166a47e65ef6dca18bc0d12e34a44fa3398e13c45b09134/000000_000000/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9028e29929d44bd58a6f6f8b5e2a6b5075d1b5283069077aa4c3086e/000000_000000/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ea7bc80ecc8ad415d8f5d968c5874b29f69cf41bb1e1d79bc7804463/000000_000000/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f2d995609cd672dd8aa52596850152c6646c53fe16c4583065e76a07/000000_000000/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/acce59d6544b490711f1dead55cfd1c7ab6d402367c3e1804607bee1/000000_000000/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/6892612a3f113fde8a562186eee86650df7bb5dd4a3a1b31360d9fd4/000000_000000/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3e7a653d1d56859395e294f2e4428b61edd146ba9790ac6239697e04/000000_000000/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b2b1da165f8515b955b6c2cbbfeecac0b31521e42c750908d40c4de4/000000_000000/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d49c6af46016da2dfc129ec9a0457e6c2f647c56b51f2cd19bd7356f/000000_000000/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c28c8bc2097644a8cd5301d1026e470e6f5e92fca864d0356d68df21/000000_000000/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/73bed7499521dad6c9fe1d5c1f2ac01b078cb1e99b1b4f26c39fe5f1/000000_000000/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/46e0a53d4ecba0211b14c1cee6e749b3f7975d757b70287380980a00/000000_000000/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/6d6f9df4fcd5e4a69df67e82d4825ba938df8698f9a2c0a2a5e74424/000000_000000/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/bad92285eb4a3d397bdde55c98ed8591e2d83ef7f6df51f28bfa0dae/000000_000000/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/7eef6c12f364ea630bafc6e21e9a9f415317b7f8bdd6b906c7e0fcdd/000000_000000/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4ddbf917e27eba545e13705c09954566c44bd7e78739de58c92f328b/000000_000000/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/779b6163761479451afd4f14dd9c3956b330864a0e8491509ac5d5c7/000000_000000/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/6133a95a7999a38098b5a783a7baff12d70289e6b39b5bfab0d06654/000000_000000/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b83047e93c0076e5b24a1be209af88b09d46f4fd8fbb7b38a38729f2/000000_000000/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/276b9cd9211464eba04b44d23037522d32c3c202b23a477f0ee658a3/000000_000000/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/39f1292a40c4da8afa281745e1843382a97266e3b24385c6cf8b676b/000000_000000/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/dc865b462c47cd84bcc834b062123fb0eba2d796451bbd78f8f1673c/000000_000000/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1a4e5024dffd91b2ad25189a189c529b2cd8bf6f3becafd6e447cb9c/000000_000000/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/340c970919ba2fd4a1f16707654d4d27a128fc1e70bbb7da57c7ea03/000000_000000/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/697aae27379a58337d5067f4c7924a0f9d7e3cc90fd81d948af537a6/000000_000000/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/eebd73436e0a0fb4d2507e1cc4f1083e465d57b315a7b083ad5e9fc9/000000_000000/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2e60679643f60c94c781cd6328f4e40c95f2dda50719c4a0a45a725f/000000_000000/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/98e38e61afedbb9e950007cd364d8913302e888f19d74dfbf72b7d18/000000_000000/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8a87838787076f317b32e5ed3b552b56f91d30c76c289d3021516aa6/000000_000000/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/64b7897ec5080941abb38777685281e0f1b287f628b8689608681ff2/000000_000000/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/27a9569d1bc372b83d6ef346e64b68c4f9cdd68006bb643ce3747dc4/000000_000000/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8da00508b7347cde0b26536b1467f84809f91f6e577ef68c1e192bef/000000_000000/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/66e46373fcc0337734b1f06d4d9e3344782037803c7b9bd25d32897c/000000_000000/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3e82c20ca00af830ffdf435f114b8c97c4dd8539c507f5b670abd1e1/000000_000000/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d0cf238cae432b9bb34635c403df922d7ea03e193a4579a1561b6ee8/000000_000000/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1247640f28f8403e17e1ad03a253a558ff523068189af7b0989bcef3/000000_000000/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/80bbee42574e8fa1b34c0e6e3dd5a235404ddf01903e8a13a3097bf9/000000_000000/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e76511ff270c4cdf93e46795f3554e229ea8cc7fd8bf974a15b52e15/000000_000000/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9ece28b62b42fa64b0a7e0ea3d43335fc77d3baf1a915ee7f464cbe5/000000_000000/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f89d13021469b69636d019965cb6a3c93780a0240c39ebc60d0eb16c/000000_000000/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5a4eb261f2749682b44b1789433b4a78601bec5414369bdcfc534c25/000000_000000/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4d577cec13850e954ac0cddeffd6b633cbffc3da3b1d960851add3e4/000000_000000/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1721331e1aff8ce5d1ca09210c061dd744a9f6c7f448daeb3b5b1f4d/000000_000000/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0740ebdd7fcb1fca08ae1ebf59a9e63e733ac496dbec2d556f980bc1/000000_000000/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/03bd333e76dfe8f5f9d3218112c94148c6ba1c8921a31142b0dee592/000000_000000/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a649e17a053a63d0ea8088026945280a5e94699089ee9728ba643730/000000_000000/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b20e7a94ae077e6079dacd7411f74c01954d1fa170761858b7d973b7/000000_000000/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/92ff40302a11bc0cfddf1ae070ac546d249496619975fc8ce585801e/000000_000000/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b8a028fcf99d41189897b1a0d0b9f2062c15d28bddcfed01fa974c7b/000000_000000/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2e3af49640de1631388c8266e223007ae60328e222ae29628ecffa6f/000000_000000/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e5be4543b646b2f56e282abf336a3a2145c215b5ddc4b2d081b444ff/000000_000000/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/675efe1a78560edb86f8a3af3d8745b5159381802a6da7f0e5d3834b/000000_000000/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/51d6ea31f7792aa76204fa9de3bfeb2d6991abe7e8bb49986a710098/000000_000000/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/6f5c19f826895b480971aba8b357b485bf9ad9e0dc7b3aab7ae8fe00/000000_000000/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c36ad5ec2163951b6f7f3029b6723652b3f8b3b794909edb0a28af45/000000_000000/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/84e9bac79487b5c328953b4cd164134531f861d68695f5fddf7c161e/000000_000000/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e6efbf0320c325fc1b65525edb1e7888e65006963e1d333b1dfa1182/000000_000000/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/256fe017ebac6ef9baf68e2f2b0f26e47f3c927e61684d31dc7d4903/000000_000000/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8c35bae82505bebe3d41fef869d36ce7dc51e4ce9329adde30fbb1f4/000000_000000/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4027f7c132cdd09a3cc1e63e2ff30009e4f513540f25839a4c34525a/000000_000000/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ce368c4b98fa12b6229fe9765565e182d7a94038d3302dfbfecc22e9/000000_000000/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ee7924c9a3d27624d2b15d55d6befdc8a158b59b47e8081e0bfe7b58/000000_000000/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/423d1af4280f6a985f90ff82e03061a8756e52005101122aab2eb094/000000_000000/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/33acc83d7a11a14292aab58948f47d37363e2be6d65f48decad62014/000000_000000/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/bf7e4a1fbeef514cdcfd6daa839655fd51f079e0562a59cd30a925b8/000000_000000/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4acd48a9c236b26af2f3ac68b9d29d6c6242731459df66936b7aa367/000000_000000/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/70fc6d5f5213c874c7def6108d9ad1f1cf5c02af2c8a2de28228c339/000000_000000/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c9a14c27ca9a0fa8290565d0ee3d114e6f20f0dc8c641e755ff7c306/000000_000000/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/90e682825ee08bb93596c5227dcb0dc76e8654ba394ee2826fec3f0e/000000_000000/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d869b17249dfbc826fd141856c34fd9aeb443580d54c676183cff083/000000_000000/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/540e067c44a9e00b57da00f7ae5b6f552c4cdd7c73be21c3f368418a/000000_000000/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b8867c903fa38f918b5a1e61706eccfa54d5aa41330b202bb5997482/000000_000000/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5de5b1f7792fc743ec215d6871cf7b87670efdb9972d23d7ede24063/000000_000000/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/44017ade5831f5768fc1743a238ef54edaeaee1c0c0dcaf02cadb325/000000_000000/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0172ec733d3a0ecd7087403e8d3d10e23ea0408c0c0babaf1515a9ee/000000_000000/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d9b1f8b728b9ead6b6ea5a8d519d8f23472de4c6a77a3aec56a50285/000000_000000/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8f4b6aff5dc8c82e5ccc004d2bc56af5585eb05b4d62b684d5bc31ad/000000_000000/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b264dc8d8d95806ca8404616026b99d12b81ad0413e08755706c2c2f/000000_000000/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f4f1ae7e753ce442ac94586e8a034a801d1575294cef825099bb55df/000000_000000/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/dcf15d4788bcb274b73bc3c521cd73037ac54d12563d1ddd9b8b1334/000000_000000/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/87066f6f5e2118dea1903e309cd490f5abf2d0c2c373696323b206e2/000000_000000/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e0b484dfa7c26ba05071c3423e4b685abf3a414c1659791bfe10a63a/000000_000000/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/243193da987fa7393ce6e500e9c146623aa24d588ee3f55fa071f74a/000000_000000/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b09e19b79a5de3211454d479b73e20e492015a3d8dcf9a5dd6ed8f03/000000_000000/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/935797ca1f347385bdb0965e058387c03e481dc5927cba361499e62f/000000_000000/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4a72c55f1de1ff3abbdfebace7791d241c9ee2d0ba431fa338dea0ea/000000_000000/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f30276e4fffc2f72cdcf8675afcb0cef57cd669437dd51fb25f33840/000000_000000/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ad4dc362cd73b227e2dc34a7efbeb2886d30fe946d2cf80f8dc42772/000000_000000/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/6feb421151bf212624fde9cb47fa7111d828fcd8110fe90bbd0d8b53/000000_000000/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/6b37e7b51499e0bd76a9bb9111912df6341420338d8a54abef5ef784/000000_000000/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/34ace3362788dc72589770d522c45a42ba087fc2e2f8259fc491b304/000000_000000/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e27a9e0d73f2b09c790309e3e4765e0377eba73139a721987335177a/000000_000000/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3b5012a75e9b0da9ac68dfe3049596991f1cfe5cfc7cd7003516d478/000000_000000/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/acf205f1dcad27cdd4b0484c1836e56fb73a328eac481f65b680861e/000000_000000/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4df35430b98ba267f783059c017c8eeb0bcb2dab762b5deb57362042/000000_000000/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d9f22454d07bba59dcd5b0fd1785031a68383198a74583d5c2d2ec3d/000000_000000/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/caf904fd931416d9d8f0f56a8913a220e86b6135bcbd7b15c2afe2d2/000000_000000/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8f7269975880a4eda11cfd438d94650fb3914bc22c4794822b9a7bd5/000000_000000/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ae1cbba26bc7afedcb245ff9e1220a2419686c64b534bd3552bc0a60/000000_000000/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/86e2b91491ebca1dd2181cf1be20eb3a0193d8c900d4c3e1295d081b/000000_000000/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/34439eaece9f6410262cef2d98cec2e8762b7f103cee2430337fce60/000000_000000/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/67dc957740fc9cad3450db0cf0eeaa9767e45ed4fd1b0e74b40fe03f/000000_000000/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/fffcb090f093ddde09fd2e8e7178749dc5e0ceaf36be9af6a5713075/000000_000000/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8b42b0d019218f8c1a63016b3b2b9840e4c6f89a1c9a6080ed9a84de/000000_000000/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/15fa9832352693c8995c0d009c9c24d0bbb04bc9a6cb56c319f72468/000000_000000/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/979d48683afe020f9acf5d2f742d0bf2aba3cd3f64d93b72bf900269/000000_000000/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4c6957c1f15594b976a6c0c4b4b6b6734df81109185b7239fadb5cce/000000_000000/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9429303f23e05e4868d1900e839eabbf83d04622df4d05aa6fc7ebc1/000000_000000/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/79ee9b235d29469e20d9ced2550af540712135f681ee8c1c347b82c3/000000_000000/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b954b92b4deff7a5335325e18791a89f5a6342c42f974f12a180ba43/000000_000000/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f69d65a5ac99e771b81a5889474e53abd9c23a265acb0a2125a2df5d/000000_000000/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3c7bbb3b3f983752739232564bf36297e8f15058834d297dc9e596ba/000000_000000/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/19c707198a6214362a3b249243ea0cef0b34f6793b8aaf70fb6e7504/000000_000000/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/38d6a49bdac2b417dde49d857c1c6c452b2a75e5bdca2d0b391efbaf/000000_000000/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/cbdbd751a9f82e0b69bc40cff6c5031fd7c998f297e5dda2c664addb/000000_000000/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/42607b4bfc7181a9ec508f4358bd4635a624e05dc8a03c1405f15a83/000000_000000/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ef03b45f1bed03be009a0572e4c62784725e0adf5f28070a968f7af5/000000_000000/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e736334a9d2927138751a456ff6112fe521896235b80cdec2204e02c/000000_000000/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/335fe110836cc65adb2e07414fb7e9b482a2a8ac6027793dfecac45f/000000_000000/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8f3f4736bc1715429364c17dde4fafc69040a12850663d2f89d0a9ae/000000_000000/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/38ec45544639ab91dc53c04d818e5628aca29af7c76430fdae9d8192/000000_000000/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/72c9af261981ad914e88c942789faad7544ad31e2f51828958e1396a/000000_000000/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c6dbf75cd2e613cd748d336833c2bbf5bb1b0366b7f75126f66177bb/000000_000000/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e81a90ecb13de034ae21b7a46ee575101995c04c79e049a6c2d5ac37/000000_000000/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/34558a83bec07a987396b328c591296a752aad5f3c947222a107fb10/000000_000000/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/73d598d5838ad96fafae96809863bbd0a1e0ee049668869e91658d12/000000_000000/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ea91c0ac4b4c8cd48a1fecd36b1755cef10938692423bdd08b4b3aa7/000000_000000/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ae77aeaacadf653bb59b841555f061a80fc0faf0662660aa30be5f3a/000000_000000/0000/tree_202.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/7d123fe2e13da34910c5c5a55da81f8cfdde1b97925515c9f074c45d/000000_000000/0000/tree_203.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c247532fddad888112b9504e29585409b8c9e3afbea9c00bd93de928/000000_000000/0000/tree_204.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/7c9bbda04e2092a174dccc0948a18e1a081961d2a899a81a3ffcb02c/000000_000000/0000/tree_205.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4b81c87ff22d1367fb6a927ec5ed37dc997ae387d7b3ae99aee2d6b1/000000_000000/0000/tree_206.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/63c2d8707c0bab8fce1b1dd0f4e2b49ba0abcb16319c9b7fc01c3c4d/000000_000000/0000/tree_207.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5788b9ccc3dc51c4474cb1990265c24206df5247432898e6a64f9124/000000_000000/0000/tree_208.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5405858538a439dff019f391ca7be59273c70c723349e9bbd3afae43/000000_000000/0000/tree_209.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1a053d02760ef80ee582c187f42154e696e1e86a4728deab922c862c/000000_000000/0000/tree_210.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9f3eceb1f6bd54e16775551a1337ae56371a19d03f462ff4208acef1/000000_000000/0000/tree_211.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/216e6179e459b211dcf97c46c91c133d882c07f36652ec5d28c42ba1/000000_000000/0000/tree_212.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/46e5906136369d7554b0d6fb301d1f0b34295e75fb51d9ec5793569b/000000_000000/0000/tree_213.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/958572e1ba0f3eeaf00dff18c78ef83dcd571f0f036e77d72ae38413/000000_000000/0000/tree_214.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ca790b5c513b419bc0c18f34a07697eab9adc0c54f303e31d9abeb8a/000000_000000/0000/tree_215.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/cfbd9198f7cbc1874112c4f9468924667934830fd58150ab8beb4a85/000000_000000/0000/tree_216.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a99f0fc1f0750cb01da28fb67556c8e00e3d8bd10eda5edb1513819d/000000_000000/0000/tree_217.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f162ffa6b2ed447080c7926cba7d207a4cbbe0ba3f664134218268a8/000000_000000/0000/tree_218.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/6484d2ef69943cae500ea5ddeb6f4aeb4e1e00fe11fabde81bf4139e/000000_000000/0000/tree_219.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/78b3df86db742a76b0c6f95217e2f489ac350ff65ab7deef37fd667e/000000_000000/0000/tree_220.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/21f4a3b55089ea4f77b4e6d68bf3b67491765a4a722fc34a55bf5848/000000_000000/0000/tree_221.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/afd040e2524ecb0546e8dc9da987d676fdd553de0fa937540c3f7e97/000000_000000/0000/tree_222.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/31f679b763cf6f1072fcdbb8be179de4b24af4e527dcf0f6df79e327/000000_000000/0000/tree_223.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e5cf663bb5a2056bc8cc9f6798e631b81f281f6153650cd5c1f7ae5b/000000_000000/0000/tree_224.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3cd0e4903d0bea1845f4f0e7534b548fee6dcc8de78273571f267b72/000000_000000/0000/tree_225.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a78068f70742a60208b0b5a31371ba55555eedecef9b1a2b4c006277/000000_000000/0000/tree_226.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ad5b9a1a5cc2f523a88d0485f404eb6460ca833ac030e101ef2871cd/000000_000000/0000/tree_227.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/78397eb648aa6b923f18fdb0c2ef207e5c91c341ec43c3fd184e013b/000000_000000/0000/tree_228.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a687c69d8ed68433679f7ad94521e4d6c9502d6fd38009264eea0401/000000_000000/0000/tree_229.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ac8064af3a67ac037af2c63a8c429fdce1946658d9d213915c498ef1/000000_000000/0000/tree_230.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e57cf0f7cd1f47e6960934ebc6a438f57ba7878621fcf45ea5cfc3cb/000000_000000/0000/tree_231.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/dd711dd19c9b32d5fea2ed1a6d9966cf1f3799b6b032a4d28261ced7/000000_000000/0000/tree_232.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8c691cd3f98aa688c0fe743f31d5ea0c0b1f08a6421cd2d047a2d0a7/000000_000000/0000/tree_233.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/30d745480eac1d42e5302cea89c5a2556ba0cd4af9f4280a588a0aa5/000000_000000/0000/tree_234.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b4b9509e3f91ebcc4e75c49fa79e241b10932c27d76e7254ee159d8d/000000_000000/0000/tree_235.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/83cf77a403d72b927f3b0bf7aa4ec5d97914b31710d07313ea5dd208/000000_000000/0000/tree_236.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/26b1bb1fd31cdc46d678773d8582c602f71ca3fb244de722999e9d87/000000_000000/0000/tree_237.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/de004004a178ea4f82d2fc55e27bd806ac9dbf6dc3510f9e1f3a572a/000000_000000/0000/tree_238.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c941e508f9f8ba6f49d0ce233be9315bf9f076a8af7edc41f59da6a1/000000_000000/0000/tree_239.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/61ab56d2f5fb79d85b4af53e5940047e0d41bcaef1aff20822fa72ad/000000_000000/0000/tree_240.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5e57a7c86348daaa4d05ff05e9b20b843d6adede74cb6fe4fc90db13/000000_000000/0000/tree_241.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/fe9cde26a8c698985bc4063a6f912d9f2fc558b6f22865b91f8f9bff/000000_000000/0000/tree_242.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/99905c38dbec57aa8d9407a9623e8faeca032b42a7ec8346acabba94/000000_000000/0000/tree_243.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/26b269c0e4b09b10b0151243e28c9cf7651a55b70213f0cee69c7263/000000_000000/0000/tree_244.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c65fb2de160eeb38ac8b146dee597d7634931c102b0e7e6c2ecfd169/000000_000000/0000/tree_245.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/52e7abd8bedbaf2ef48650927aed63d4256208bafbbbcbd94b1228ab/000000_000000/0000/tree_246.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d0897cc3302af59f614629162b5ef3805003ba09e71f078162ae57d3/000000_000000/0000/tree_247.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/cc830c8e3e4327fc99310df3bfc5e6ac4476e6b9df383a31613cbe3b/000000_000000/0000/tree_248.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/6415db3e4ce5684aa768865f502b607a8b964f86c097d3d095f87142/000000_000000/0000/tree_249.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/69fe3682203384f6f47d63e07c353bcf0c34d399c527f2143f7dd8f9/000000_000000/0000/tree_250.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e22322e2e7848a94d9b180c53695dc14af47c7914a6e8159b1e9db16/000000_000000/0000/tree_251.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1cff1468de002b8facbdc9714f49fdcb18dfad396b5f3c8c56417b04/000000_000000/0000/tree_252.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/cb65f5ee707fd503decf74c6b28f76e1925a7ff37151b9b5c31ea8a0/000000_000000/0000/tree_253.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/39fd25f17a965c46c636e437b918150111cdd6d5dcc076fcb8ec7682/000000_000000/0000/tree_254.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e36e3e8e2e9555e70f37602a16220d8479c6d47e04fbf0d053eb2194/000000_000000/0000/tree_255.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b03e9131c81ce455a6f4d6dfbaab24226978afa1bee4fb10a51ef474/000000_000000/0000/tree_256.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b045e752bac7c99813d0f994dc7c613c79629408f48ffca3060a49dd/000000_000000/0000/tree_257.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b0248f78defbf5708dc3df818d7a028b69634066b5cdc30b3bdf8edc/000000_000000/0000/tree_258.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/686cce4443143618afe48e516d4771e9d895cbdbbfc1b6770ce0ed7d/000000_000000/0000/tree_259.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9c279faa356200a76e1651df32b227ec86aa23adb5f99786ed21fcf2/000000_000000/0000/tree_260.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/80e10ba9428f44335f43cecedf5e904d13ffd5ba0a32222f7a884a99/000000_000000/0000/tree_261.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0767d7b6a2e07cb745f3b927b37b530d7d4c4ab75a4c9345da3b7edd/000000_000000/0000/tree_262.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/557f622a64e5aff80c275ab8d26e39fbb3c305b753b8fc0cfffafa3c/000000_000000/0000/tree_263.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/85ce8d8066d1cb078494934828168e840f450c28236599bcb8d362e8/000000_000000/0000/tree_264.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/81b60e450d549f599b22c1655ab16a434ae0b8438f4ec64c4c269ecc/000000_000000/0000/tree_265.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/91a02c9a458d10fc335a3d024f0c87e1d2dfc67e25d1175f23424a67/000000_000000/0000/tree_266.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c3064bb01b9f85748083ae8f89ad1dbdc5b14113f7b6712beae58308/000000_000000/0000/tree_267.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/090da0389f53a0703343d4a1ac122da6daaa6faa2681638641edaf7d/000000_000000/0000/tree_268.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/7e42525eacbea1a29665e6b7dd1c0cc46d69f8264368b625aef7420b/000000_000000/0000/tree_269.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/afe0799f0a96a323d5b93d881782cf248923375e665e115a64640786/000000_000000/0000/tree_270.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9e7f04db8e133df6e3dd3ffac970f0a7868af0e8eb37aaf1e39a59f1/000000_000000/0000/tree_271.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9a9389f9099af42cc4f1c29b9dda21868ad59954925d4cf4787963c6/000000_000000/0000/tree_272.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/30fa6944953946178b07f4609e32584dab1052f9554b2a575f3e7468/000000_000000/0000/tree_273.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5ddac536712cbad2037195674aa506baf37ef960f89eae8ea1467da5/000000_000000/0000/tree_274.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/7f9ea723052f4381aef3df772b41f480a01fc0ea04c4f602f291fe46/000000_000000/0000/tree_275.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/7a3383321316acbd931395067e6c5de6e7b1f677aa9a32c8ae994a94/000000_000000/0000/tree_276.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a091036b7b0b0d0a373348305c0cdee28b04891ccf7f3b0c0a5f8eb6/000000_000000/0000/tree_277.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9dbfdf07e314edaaa4bd575b3811c9928cc577cf93ed676090cddbd6/000000_000000/0000/tree_278.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0e590670dd4c39f4432cb010ef1bcd646c173688b849736357433988/000000_000000/0000/tree_279.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/356ad5d635a3eaadc5bf5a02de1bf050293d72bb36ad49ded7d0b4de/000000_000000/0000/tree_280.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/7d9c8b0a8e254db3ab6dfcf6bde0e4dfdd770033793ee1c84e20211a/000000_000000/0000/tree_281.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f8386ae1b1a8eae22bef24fd55d5c1866c7656b832e5d7bcb1143c5f/000000_000000/0000/tree_282.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/356b230610c2bcc1a26fb9232e99601dc5ef3dc3e0ec54e734b27657/000000_000000/0000/tree_283.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/81ae8328c5bc291418c6d8cebe71c7d57048845e33f64d0d940ca129/000000_000000/0000/tree_284.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/15c890b6dd9c8ec4f161cd9ee7f4aec12bc56c240c7240f24382dc1b/000000_000000/0000/tree_285.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/33468338558af2a190ce5e3cded0482746393befc4da8be8d90ee64a/000000_000000/0000/tree_286.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d52d8df9a11609fe28a9f1fd17cfa5a080b6f4a22346cb4df1972e75/000000_000000/0000/tree_287.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0ad132161226ac0319a7b1a7048e9d5102f8e1a0221c3c8436de8e57/000000_000000/0000/tree_288.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/26a8a26355bf732a8e7c5dae8c4553b14dcdeb0f13a6b1887c96b50b/000000_000000/0000/tree_289.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8ef63a2ecf37bd558db7ecba3cda427045cc9ec3be8076988bd10e37/000000_000000/0000/tree_290.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1ecd6c876d3cb0ad26d091a97d4a208182e5faf78be979d278061238/000000_000000/0000/tree_291.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/abecd5cb6f60fb2b5e26a90bfea224c174b0a64de5a8ec5ab195d44c/000000_000000/0000/tree_292.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2a9d075173e53fc281b494e3ddd6a02b6d7b234acd20e79a9624d845/000000_000000/0000/tree_293.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3d8a63d7c9e4a5c58a15f33e42df7491b95bd21ab54c7c26c9f2d6bc/000000_000000/0000/tree_294.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/bec2638ffcde41f527277c20d5ced35044020a2260746d79dd2a0e63/000000_000000/0000/tree_295.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/712ff9acf18b716b74e5cb125353cd2c44384df1663a76363acf2f56/000000_000000/0000/tree_296.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/838ee4b1d2ba819e5a465e9831552c535078c447c3dbaeccbbdf4bcb/000000_000000/0000/tree_297.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/26c7b776227a30dd1edf9219e0d70c612009ea7e4e059550733e32e4/000000_000000/0000/tree_298.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8dd4140cdd84e0636c7913c646132c68dc8967745a35445c1b6cc7bd/000000_000000/0000/tree_299.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5e23c44c86b5f517c1addc9413d69d29e45ded58ae47a0f3b07c1d4b/000000_000000/0000/tree_300.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a5e9a6b5410fed639a2325c5b65251a78708d16240777b72c3e9e380/000000_000000/0000/tree_301.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/69f3f16517838302c35cb55ec8c204944d2b1e601996c6c84cd7b38b/000000_000000/0000/tree_302.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9891688878314b1fb7b530caa49e676b0d7ead0cd0744cd89c087190/000000_000000/0000/tree_303.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/87ada39b66a2b8573a4e032242f58d994af89bc3df2c529da9163c5b/000000_000000/0000/tree_304.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c29ae6759b1bc12bd41a660b66092f17ed4f1357e755ba3589208347/000000_000000/0000/tree_305.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1bc61d5054aaa80d0db377d3ab7b9f796e2d2be7cc8b7fba56506f4a/000000_000000/0000/tree_306.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/585763f5adc6f2d5abbfbde892e816cbc764bf2fd3597803433e9e12/000000_000000/0000/tree_307.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e3a51782fa97132c25d6d2c21dafa49d642eee5286cdb60787653572/000000_000000/0000/tree_308.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4709bf2cf57a2a5366a555059bd0d1be8901b2d72b00caa3782755a0/000000_000000/0000/tree_309.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f70e9a240c88a260a31efab72c31a61ffa89e620ac893cb2866c5a8a/000000_000000/0000/tree_310.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0d853a255c37d226567613a6bd261040f48ea1052db067526ae16f4e/000000_000000/0000/tree_311.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f3901d3eaf565c7c9f32b1e2b53ea97249f82fab7af89d6362402935/000000_000000/0000/tree_312.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/292f3f3a40b167bc35d24a54e5a645942bc72568a7a34230d989da6f/000000_000000/0000/tree_313.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ee0c40aefd75d58d75da6b5c814a8133cc895895c7ef5e5f154469c1/000000_000000/0000/tree_314.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/376168e5bea3779ac8d0ae5fcdbda1b84ef55bcdc4ef3dad4d8e67a2/000000_000000/0000/tree_315.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/46a21048e860bb63ff8d8124e06c6b86c6a6f35192c1a0a5ed0bac2a/000000_000000/0000/tree_316.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1ee53c97d3589420965f940cc562a23454e79f5fe302c5c454dbf431/000000_000000/0000/tree_317.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4b2c1937120cb191f7e726a3eeb68fe51c2c0bc7bf3838944440b5f1/000000_000000/0000/tree_318.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/11f02d5db5058e86f190c77c269868b7c87f86a1fc15ac49236eb826/000000_000000/0000/tree_319.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f503a6bd5f4feda61f7fd61a3485e177431d4dad51f7dc829f5c45a9/000000_000000/0000/tree_320.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c13d65e1cec0676d0acc143322a9a494c00305f29e72b2597fdff247/000000_000000/0000/tree_321.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9e0dfa2c3ba481f7bb6d3d679426a1e1afaff97623750d72d37c3844/000000_000000/0000/tree_322.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a58df38bc2704963e3037440bb9188f2d1c673fb94c70f58b99b7dc4/000000_000000/0000/tree_323.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9f6b2181dbe253e6bd9023ed81464996f7cf40fe95698d2916f00e3a/000000_000000/0000/tree_324.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3dddd277e3b309f859494d802cb86bf2bbb65d1458b122b5344b0524/000000_000000/0000/tree_325.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/52a107e4bcef659e3849dd8d1ac63fb7a17a7f07f641dc2516668fd2/000000_000000/0000/tree_326.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/864732d2d38855307bbbe408c85ec04e1fed4177fd5041645f9a1c9e/000000_000000/0000/tree_327.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/6faabafaf0553252d199b685c7fb1f39e0d11f068193e37108f92085/000000_000000/0000/tree_328.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d215fb024c7cb5f2d5bc7f8b92b70401493d40bc49e0f124da177ef3/000000_000000/0000/tree_329.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b2c418755a1c172f256ac65c3e9a91e92abfaef51d947c88dc728585/000000_000000/0000/tree_330.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ad58c71bd47a8bb0ce7eb522c11bae7c7aead9c48a4993063598c6c8/000000_000000/0000/tree_331.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/802b25fc55411743bcd477882831a7bf203eca39aeb1e1e27dd6632e/000000_000000/0000/tree_332.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/875655b7f745050abb3f6c601655acd65479c266d567ae4b0d51ef28/000000_000000/0000/tree_333.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/bb52471a5005e4c2545ff852dd165647b1b6e1f5ed67f299e23a6bed/000000_000000/0000/tree_334.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5dafcbde8fd07a5f06f0b8c970316870df9a6ec415af5f65e335282b/000000_000000/0000/tree_335.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b08f3539b903ac3b0d541af8a36997a0ff6b8b4a993617e40b36c440/000000_000000/0000/tree_336.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c7d6010c9fe3f4b05f4b70792f267a3b5d3e5350356d791fef394faf/000000_000000/0000/tree_337.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c2d9885ddf009e3ab13c299c7e0f9bed0687a361517d7f876d114985/000000_000000/0000/tree_338.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/40cf926918f68803a7f5d0cdef74f4aa0e56dec23812af5bac159bcc/000000_000000/0000/tree_339.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d99d0d4c8533654a0b8275a4ad8ff5b8edf06f8527efebb048138408/000000_000000/0000/tree_340.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9bed9b3db80f80be5de6ec912a2546a5287657c8fae9de2fdf1acfd2/000000_000000/0000/tree_341.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1ef8a707db14f6af49e4b19c6815b50eed29c809b84e9ec2454f7f29/000000_000000/0000/tree_342.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a47fe5bf167caff0f0384322de217132e9d8a44db35c24da89e9076f/000000_000000/0000/tree_343.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e6bbda4f9ed367ab736e2f4606c10af54b113dfcb564e115f7a48594/000000_000000/0000/tree_344.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/bef0bf67017aacf70fa5ab589bb744a74b2e1b4b91b2cd01e9429c4e/000000_000000/0000/tree_345.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5e2009ca5e48f8c6075c86fc55405f85c66b21677324c77f588d5608/000000_000000/0000/tree_346.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/bd6936249fb99962682f9b068c00c0cfba8b81a4fc1291d20ad0d0df/000000_000000/0000/tree_347.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ea1da123e6d274350c42a1f6a9fc09d88c8a60117c14a3de00af918c/000000_000000/0000/tree_348.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/beb410e644dbafa11bb8ef16d0343a499fccffbc5b8d17dcccb05139/000000_000000/0000/tree_349.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/bd74318c780210ca715b6110e8d846e71ed6062176cf206296392c11/000000_000000/0000/tree_350.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/29891720ea99190122cce262437b7e4ec900a997f4bcb23de6fd2e73/000000_000000/0000/tree_351.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/479f91f19f05b870f459d2afd1ec4f53f1c4a30e6efd051f0619b56e/000000_000000/0000/tree_352.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/6e67a76ec70b639a53ab3363f7d87bdb57157cb02995a73c8b74e101/000000_000000/0000/tree_353.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3dbbe483c57fc6fc6117ac41736856f911ef3f9b209dcf2624c4c73b/000000_000000/0000/tree_354.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/28ea299f4e90ef88c418f42d2f5cadb8b8fe760e2d9bd0d376320ee4/000000_000000/0000/tree_355.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2f82f3fb96708ca7f8d137155ded13c7d2a514ae373f3fbd0c4b29f8/000000_000000/0000/tree_356.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/701e9beb05361b45ae69676c5df10bbca8b4cf423acfec2272f52581/000000_000000/0000/tree_357.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5f4d952b921a3322f2291f8b2284b6e624376218b558b3b724b805e0/000000_000000/0000/tree_358.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/30d6e9ba2d1cc0a4a28c4e5671024e0fd08cd6b7abdd3af042d08147/000000_000000/0000/tree_359.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8dcdb8d384c9c9c6998f20473e639097e5a07662fee13a212378e995/000000_000000/0000/tree_360.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b795a5caafa88bea263a94bfc6125d5d3ac0561e0b2fb5469506b866/000000_000000/0000/tree_361.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e952c0a749936e9f448852b271d8487683276ecbf2ee2cec0febf2e9/000000_000000/0000/tree_362.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/69fe39ee2c59a401731ceac1c552dedec9d2eb3e5f31e5a8918ab534/000000_000000/0000/tree_363.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/51515030f266e857a981a81dfd6c480457d34b165a27884d7b1c0924/000000_000000/0000/tree_364.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5020b34a5eb3724bcba73d50c78c4688c556e2f4b089ea43e9b34aa3/000000_000000/0000/tree_365.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f3a52c743656882a0dfecb8631bd7f52078adf8989387a4784bb50c9/000000_000000/0000/tree_366.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/43bff275b15f637f96165c51c007183061db5bfe13f26ae7e2a00bf0/000000_000000/0000/tree_367.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d307747a74675745b6e2b4a7123ea7bd9912439431aa9f4f62c64e16/000000_000000/0000/tree_368.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a72d2dbec6a0d53cdc3088d87abca6dd5713818f2477e020c1718e2a/000000_000000/0000/tree_369.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/86feca3d4a65fb09b6e01a4bea8909aecba6de2275f05c2e7081c19c/000000_000000/0000/tree_370.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/558f895c8c543406ed5d293d417fa72e532dec9d3e94eb1b6ae772b9/000000_000000/0000/tree_371.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/626c878fa98b31e21ca19b0e829612020553d1f4b6930bed9d59a511/000000_000000/0000/tree_372.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3f5301f406a059a5cd9d482435f6890f5a50684daa5cd077f07b818a/000000_000000/0000/tree_373.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/6e4b67edfff7a4eb77d86652eb4f01f016f31dd55799a4db8fa39b6f/000000_000000/0000/tree_374.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/057c009012fcee4cd07821f104070f2bb752ae351bc54642fcfa35b7/000000_000000/0000/tree_375.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/cd621992136f2f57b7ba6976e108f8aea4b21d9b619e01136384ebd7/000000_000000/0000/tree_376.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c797edc92371727d8a2d885e7089105b6b427d8a009e419b80430972/000000_000000/0000/tree_377.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/603cb6b676efa89751af8b3fe8dbc985e1d31e209352a9754ed0dfe4/000000_000000/0000/tree_378.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e875fb0b2f99d35221b8a168e328a4d2dd5afc3dab32f039fe7bef0d/000000_000000/0000/tree_379.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/140745076d45c51483c17b420c3cfd009190975e3a45243a23aaa112/000000_000000/0000/tree_380.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/aece28b9529e7bbd0ba0cbab628b73472a2fa37549e7d6397de96d67/000000_000000/0000/tree_381.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d3ea4b64cb1e579627b549497e22ab7949cf81b448030bf80a81f66f/000000_000000/0000/tree_382.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2e1200f13d0b94a03a9a3648d9f3ecd32dff81968d9df0018bf97eb2/000000_000000/0000/tree_383.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/6812a640641f54f52ed22d7965a73df3344b2889591e877152cd344d/000000_000000/0000/tree_384.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/17510cbdb6b417acb865f84777eac3bc1b379243aa8adbb9bc052183/000000_000000/0000/tree_385.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/84214c73f0d4853f6a8da04aecf2621812c4e1fc152be0bcc233f451/000000_000000/0000/tree_386.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c63646c5467cd0d7949ac236337061db2e4b7378fa97ccb065700a87/000000_000000/0000/tree_387.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8eb23ca8f1200e60df5e803f8c8f8a753bcb29a470346a89929fa272/000000_000000/0000/tree_388.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e61fe222e3d3fe31d3439a97a84e1833ff5c400c1ad42fe9437bf594/000000_000000/0000/tree_389.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5649f9d7f7f2c138f1d3cf24ea09aa70a0793e1f1fe8281783c49835/000000_000000/0000/tree_390.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/fec9879f521a25924a46372e6d2036acc47a11d2d0357f7a7ae08dff/000000_000000/0000/tree_391.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/57791da9425457ae67600072b78bc5b20d44b7b97aace3c26a88436e/000000_000000/0000/tree_392.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4468ce05fb001149f5cdeda290521d3d937c5acd6871bcb8bb70f709/000000_000000/0000/tree_393.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4d28cba9af5b83d4d26d816c1571afa7696c9b039bd434d94face22e/000000_000000/0000/tree_394.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c51af50f6c1cc9421d0bab80558bc6abb8dc7b34f0a59cfbbc6ab8c5/000000_000000/0000/tree_395.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3a2a63150f9583ae9f3366836eeb9eedb1afd04f189394d4fe729b23/000000_000000/0000/tree_396.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/82cacfdc6de30b45ade430257efe90ca5f1af9a6c6d5e920f188079b/000000_000000/0000/tree_397.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/70eeb59e912a72ac8aea9f894ae859affd21c91028145a2557a0eac5/000000_000000/0000/tree_398.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c6641ab4fbcf8254b51eb94ed0e2021728a6ae28fca3e6cce5d78f01/000000_000000/0000/tree_399.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/bd7084bcb36b61e7793ff77e8e40d66b7a294a84a23350017e778562/000000_000000/0000/tree_400.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c15a2b7f26895bd5ed06f4abd83be4f4b7a31985be7982faf1e40dc2/000000_000000/0000/tree_401.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f2297e8c83fe95dc40a5149798818cdff0ef3412698c62c8139a5f62/000000_000000/0000/tree_402.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3acbd0191bf08c927acca841ecbe4b95370cd0425535c92fe0d9d780/000000_000000/0000/tree_403.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/7d20a142e83efb1b0f34cc9b918024680dd3eb5c21a2e812b1c04332/000000_000000/0000/tree_404.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c535c6a4238b812230d2d79f9147480f074cf0cfeed091c77d450013/000000_000000/0000/tree_405.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a2474af099194abd7ef397899102381cc7ba8346a92b68a9b34c53c4/000000_000000/0000/tree_406.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/6086c12d47b11792ba06c0d2fd680cd243652dae36ea9d0f1db5e2e1/000000_000000/0000/tree_407.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4a038429680f375e5f6c90d8ed739225ea65237b9f98c4a2fcb31f3b/000000_000000/0000/tree_408.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/73232797ea1d2ea113b390091f1c98f2d64a0ec76e848dede854eaa4/000000_000000/0000/tree_409.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/484a886495a2dbc2f629a86d8020cd0d7c884ec8561f36482890d235/000000_000000/0000/tree_410.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/daf0c70855c9945e177fadc414dc97f829a958835dde6afdb1aaa288/000000_000000/0000/tree_411.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4575ab90f80a862ee884e5a551fdb83ef3364133a4f2fe4a4aabd569/000000_000000/0000/tree_412.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c6c6913a18513a14f86a6aa981235d574ebfdae579638cf5ee8b14c7/000000_000000/0000/tree_413.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/91cd7e142f8516ae226d58b4ab720b96a428e7eaa1e55b3a15160d89/000000_000000/0000/tree_414.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0b1479f1096a8b4d28de97dd77fef7cfbe5bed8bf6063e53ba8d45e6/000000_000000/0000/tree_415.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/719f0259a98f5ed491ffb9d389b35e10a201db0ebfbe9649bc32d81d/000000_000000/0000/tree_416.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/acc3220914ee6964885a913d38e977c10d4103740ab22f38ceeafd22/000000_000000/0000/tree_417.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8ee054dce48525af43adca464cfd8ae2f928a340bc7e99b1df1d5a73/000000_000000/0000/tree_418.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d99c1b862bc17474533524c81c6076a2b9ee77cc9dbffeb45b6ac458/000000_000000/0000/tree_419.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/401dceb412634d15a252c4c9de240b8d9ac8db1a10d4844a32c5a8c8/000000_000000/0000/tree_420.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1c4f3341e52b22ad47d9e79ab8b5498e62cd5bb67e2fb640ffdc0a8f/000000_000000/0000/tree_421.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ad958a3819573ea289fc6490c3eb7b9b6c8fa84db40732616106c992/000000_000000/0000/tree_422.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/bb64b58b755bf24488af0d34b43691ddd512e51acfbbae0b1f42fcc4/000000_000000/0000/tree_423.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/35ddfd6874e945897bde94ea64b59b677fc17c16c6121c361dc7d564/000000_000000/0000/tree_424.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9cc2f48d2cdce9290eb888da86d233a5a2a33d8525da70b1359dbc48/000000_000000/0000/tree_425.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/826bec4d0b8bde3de13eb299ad21dc1594df9087c8ae84dd9d3df8a4/000000_000000/0000/tree_426.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8e1349ff9f80061df965a5eda2bb32fc2850b0c33d205d97699f3a70/000000_000000/0000/tree_427.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/390b0c24752b2ee1325ac38db162fac7e1aac1c733a21fc67d00890e/000000_000000/0000/tree_428.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/362102a2a03140c38ef569ebb5a205baa2771d21ef2f1b633735dda3/000000_000000/0000/tree_429.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0a6518fccaecd1cbb2e339108b48a83b5ab33ddca0f0fd5fdb8f0f8a/000000_000000/0000/tree_430.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/19e7f343ada092d51938f40804fff0bf3a67cd29872951b37f7710b6/000000_000000/0000/tree_431.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ebfed1d7db66e4a1d1c587b318de4e16b0cf1c41a90594b22e6a6ec3/000000_000000/0000/tree_432.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b34180974050cd5c13c092b3938d4e681f09d88cfbef8e40754bf3a7/000000_000000/0000/tree_433.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4c731d05e8d97972dfdae5c4e7da5e4b05031ccd1e328a728ff63ab8/000000_000000/0000/tree_434.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/6d0ee5d6d32ee873d07b2ea0cac13d4fd27127b228cbfb836d403454/000000_000000/0000/tree_435.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/17aa3cfd130935a6b797825364ff0f58794122d6f67a82c6d9a15fbe/000000_000000/0000/tree_436.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/bf787b2e86cb8749bf07026944f586a2e82e64acb9bef0584d82ca5a/000000_000000/0000/tree_437.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/7217fbf0971e1b3ae979e8712ad7b66dc1d01c2c96d119911f01afa8/000000_000000/0000/tree_438.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8e219b92b24019e72e8a2a0e6af9a5418a4131608b4c3dda29015546/000000_000000/0000/tree_439.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/bb5f857d2f13228acdc72f27fa109cec3b694046e403b48702ee0a77/000000_000000/0000/tree_440.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9507347f177639271d5f1f4a474f6b3dffdea30cbcda84e8816d05dd/000000_000000/0000/tree_441.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/db248046000576e5442e3279c5768d9c74ec3c85e5496ec971e33e7e/000000_000000/0000/tree_442.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/bd08f015fc68df941b380ceb1004aeb11aab540601e73109482f4a6c/000000_000000/0000/tree_443.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/123845a419dc57cd799b8776c4810d5afe66f34cc8085c452c5d45e8/000000_000000/0000/tree_444.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2482bd299780129ecb3a6d214ff30b4c375bbd71a4359785c04bf475/000000_000000/0000/tree_445.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/19a4a8c41a1dc4b454a6113eb48f466ad799e8f1a5914c26164689c5/000000_000000/0000/tree_446.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/7c5adebe7446bf8624ca2891bda2ac1c5418a062ee2495ed55eed3e6/000000_000000/0000/tree_447.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b18f3703b26157920023e3ab11136e367267698ecf605f1a2382f8f3/000000_000000/0000/tree_448.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f37546966383ae287cfcab45f4228bd1ee7807c1294f5c27e6756da5/000000_000000/0000/tree_449.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b0a212abbbd721954d2e9482c4c20da2d2d74110bd0e17bf30891b51/000000_000000/0000/tree_450.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/62145a5e45b26dad52fc01dbd2b4cbefc964c5a6e9e9925d7701129d/000000_000000/0000/tree_451.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4feab36989865489eaf871d72868a85c874808d9151f78c50ad5f2d3/000000_000000/0000/tree_452.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/84311736726c40d93bb49647bef2443ac8be839eb272ad2547b0685c/000000_000000/0000/tree_453.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1b9a3809634d167e30980a235d9bf834792e7e1442ad6744c3b696f8/000000_000000/0000/tree_454.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/47c222a5649da84bf344944ef74e94e3a2faba1ac974524c7f98d9df/000000_000000/0000/tree_455.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/cadbfcca4709bb794eaa278484076de23d04770dffe5293d0ba06891/000000_000000/0000/tree_456.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c8b21d53dcdae311c070c473520ce7ccfc2d530c1f9b4d8c4b5926a8/000000_000000/0000/tree_457.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ef8ccf4d23106753d8aa0912a864ad5feef992445bb91d9b0fbc8845/000000_000000/0000/tree_458.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/400e04d9d0b61faa575925dc31ee6e1c65713b3253483ba18053479f/000000_000000/0000/tree_459.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f5e813d8bc7c26d2d0ecabf43f7f8ef41dd6fdf8c0c859359a2104e7/000000_000000/0000/tree_460.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8fd67e5e6009693d60465da92a47264068964cae02b6979d8bc0765e/000000_000000/0000/tree_461.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9cd87bd338170f7de10106edfaaab97764ca9fedbcae6d6f00a1e10f/000000_000000/0000/tree_462.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4e9a9e1a584f5e922e586540cc11d130d5a72a6f0a22f5d9cfe892ba/000000_000000/0000/tree_463.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/7327f59e8ae82c10086b50e84d75a23b326b3d4bb3c4fa6b53267d6d/000000_000000/0000/tree_464.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/13869388b7936108c1f164f6faca7d9cb0bfaaab13d178b3d15e980b/000000_000000/0000/tree_465.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/383be1dbea4d575802a2ffb89a4c96eafcc41afc16259408a41974b8/000000_000000/0000/tree_466.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/630ed18180abb24689d08fdc3dd94ac82e0cfdf02c0aa875af21265e/000000_000000/0000/tree_467.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2e28c778760e971fa8278182cd68bfcdb0af293187bf61f2ea582673/000000_000000/0000/tree_468.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1fe550960ce96d7084154e4e5f695fb9e30a25fc6494406b2c5e4463/000000_000000/0000/tree_469.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/211af2875c77a5a6df295cf3ecf6cf311d1801028842872aa072a7cd/000000_000000/0000/tree_470.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/788c3f840ba3add3fb19cde82e00eb506d063de7b8a06ce4290cf17e/000000_000000/0000/tree_471.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/710bdfef9313fcb8afc0b33c2401d5ab544aa8f200b972e190fc2f3a/000000_000000/0000/tree_472.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/984725abe03ad0de8a554eb429bc9eba8a903ec311b3c470b747b0e2/000000_000000/0000/tree_473.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/57f79cb293839895a636d96662e38197ac560de213936832e5ad3bc3/000000_000000/0000/tree_474.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ab74ed1b0064a16dbdbd8a615d9c01eb6697f83993ca52bdc883dd15/000000_000000/0000/tree_475.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/70973671885e37c79bd7d83f9e83b08b27838e3bda6f14fcac1d7a83/000000_000000/0000/tree_476.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4e1c3b3e55881444fcbab7ea1bfb0b59a9f457d0d9252c0349dcd94b/000000_000000/0000/tree_477.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/479cb5629a7cc1162de105f5c7092167e01a5a0da0c8cc82959e4869/000000_000000/0000/tree_478.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4834cf826f9a702606f8d5795174c3f9c4fd553641166078794c0f08/000000_000000/0000/tree_479.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/599559360ee7f9fc06321a167b8e31c8cb01bbe23407e3e411b6338b/000000_000000/0000/tree_480.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/209e18f5796fe1ee4ce113d9ceed8bd7847ea932e770cfe4231ee4c8/000000_000000/0000/tree_481.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/55e2153207e45e5988f2076282039ef7eea66610491b362fbd92405f/000000_000000/0000/tree_482.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/74a82b864bac41ef9fd84e6d6ccba74afb79753a751396f88b699620/000000_000000/0000/tree_483.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b42b1a7d8020a7a4c311d96289a8a3dfcddc662e1b14877f76f3c09a/000000_000000/0000/tree_484.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/dc8a35fe91d75805b759432af4d1e0555bd6429007115ba19d0a0e40/000000_000000/0000/tree_485.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/eb843c17769f0f83c004fe389fab8cf7fa73a47198d3ce3e2bdfdfcb/000000_000000/0000/tree_486.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b7c64e1e36c642b4fda1c05c82622caefd266e243b32ee7f68d2d1d2/000000_000000/0000/tree_487.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d9f03781ca95298dee24b881cecfbe194e65bab4291f68125f1af217/000000_000000/0000/tree_488.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/eb97ac7d614e4f34b3fe26233d98c8f1c66730c53831e463e9522ec3/000000_000000/0000/tree_489.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/153368891b2568b9dc0ac37c851d666ee96f1557d4b74c56c794ecd5/000000_000000/0000/tree_490.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/77b8aecbc683578eca869b607ba36d76e37dd02b3cf010b45ac34c6c/000000_000000/0000/tree_491.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5b3fb400f95a6c42c80a308ec49867c43497a4918a7a98f5ce0444a0/000000_000000/0000/tree_492.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/323dcaf4425b1b519cec6292e4c7cd344be06bf310eaeefa347f3f13/000000_000000/0000/tree_493.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/10c86cf58ad11e540f3d98dcbfd46182a238858bb9b07ed755bdcb6b/000000_000000/0000/tree_494.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/22d027679b173af5f77e6c880ce49927b5708bbe33abebe7038d5241/000000_000000/0000/tree_495.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f0a6bf03eed48cc2b3873c02fb15baefd0019944d9937d6b41f7dc90/000000_000000/0000/tree_496.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2f44861d518201d7b74f6b934cf2dbbb53534bfa90d21a221cc19703/000000_000000/0000/tree_497.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/cc616d8b797aba7a18b50127c8d7d07231c8d8fb3d457640280a9e55/000000_000000/0000/tree_498.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c8320458b898bc41f7e932178ad5a3508aca78a59c75564c3be38118/000000_000000/0000/tree_499.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/36fe494e0a8ec484d8f397fc515f3f80a83760d47048a3f631229872/000000_000000/0000/tree_500.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/32eee4347d610682996268a278bdc232f6173608efea20e630d103d2/000000_000000/0000/tree_501.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/94ca025c511d447e2efa22ddb5d173a8f56cc2673dbe63c4c89cdeef/000000_000000/0000/tree_502.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/513ae52b1f1eb7a44e53a2a6404907f1ac52452cf2aba1b06b71c699/000000_000000/0000/tree_503.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/73cb23dd4a88a32d75d6aff0caa3d6446bd04b1522f7bb394d8e1d90/000000_000000/0000/tree_504.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/15b15b5633fdf11c4a0cea7a31d1027c4cd806832855fdb08be5f5a4/000000_000000/0000/tree_505.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/54c05ee42aecc049651f88bf8565a4049d533f677dab293b2a8386da/000000_000000/0000/tree_506.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/438f2a3544cbf3acfc4cda5effa2b84671c8cc402fbdbd0879399dd7/000000_000000/0000/tree_507.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/bdf16294904f97c5c3c654dd77d3d9bf02c4c06f31be568e9ac00071/000000_000000/0000/tree_508.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2b5a0f84d6f2847caa3aec31ec0bfe839d42c4db9ecfa683bdaaf0c3/000000_000000/0000/tree_509.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f0e89667a37953ce09dc292794ebbe7ff6c70774f06e509977fe421f/000000_000000/0000/tree_510.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8134e9ccfb2abd75ca3b83dc2cfb59a24da22fa9bb1fa7e25beab063/000000_000000/0000/tree_511.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/dd19458fc507f51ccc456e258b16c5be29d80e8479f8d812470f30c5/000000_000000/0000/tree_512.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3dbcbb96b236aa23612da56c5f66f33891a23290873aa40f2e8bd19e/000000_000000/0000/tree_513.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b6d771604c546128c5483c8e19f0c3461b3404f2c4d91aea6cf9409b/000000_000000/0000/tree_514.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3eb36f70e7e00130ef8613350c18473201da7a68d5f89f28251a9d45/000000_000000/0000/tree_515.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c4de9ea38d01575ce543d62d26ab9961ba1a7395bd95b5829f55be84/000000_000000/0000/tree_516.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c626e83d00e435dfd4c0c4d8ae5d2a6e6eb7dcb0124ab065f3f4cc67/000000_000000/0000/tree_517.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/80dc087668d55347c7884d07c5e0473bf6c49f45e91cf2c7364d4d3c/000000_000000/0000/tree_518.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a45df223d2f03cc5c3b0db4f65fe0104fd513dedcbd4150b1a45cc1d/000000_000000/0000/tree_519.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/33eb9bc1ad8a0f37ddfd90803660113ce3045c54a70906a3f50a3b2c/000000_000000/0000/tree_520.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/cb50d978ab7e524fb3f75804aab4a33b49372d77e82d96ec45122fd4/000000_000000/0000/tree_521.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/86b387a5ac41e2266498b897b722930f74c46e2cea4d8d43ce970ea0/000000_000000/0000/tree_522.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e481a0a9ca4882e24afecb6ff88c1534db92c2fa289384b4ebe2298e/000000_000000/0000/tree_523.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e16450ac2bfb2c0dde82e89a57a5035af095ef325c60677aa673169e/000000_000000/0000/tree_524.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5dcf87c2f4f811feb3653073d1fdc2da62be053169594c64ef4ad88b/000000_000000/0000/tree_525.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2a7f056bbd80f402833ac27d6748d980c50bd39aa67bef05e80ff0f1/000000_000000/0000/tree_526.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d35be3ea90368ccfc92e3c1ac1c940c68b1f9d35ba144d19ba6e630e/000000_000000/0000/tree_527.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f30378eac22760e2510431d36a58ec73dc6556318a971d3c47c5a8c9/000000_000000/0000/tree_528.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e72255ffeacf13d846bf42eab3ad3ece0a1276694b76bb57f1bd7b85/000000_000000/0000/tree_529.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/68d7ef1c6847e9fcfbf7a1c896805f296fa9744d58168d5998b0509d/000000_000000/0000/tree_530.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/7c160db0e0f4d6a7a20990616dd2adcdd42b6707ca8bf8719cc462d1/000000_000000/0000/tree_531.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2dbde4bc196d8fc27949acab3ac0bd7066dfd2c5f79206a755c2fc4c/000000_000000/0000/tree_532.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9862536eb069c2109ddf815497b4a6f33d92339c1e3c4854661af673/000000_000000/0000/tree_533.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e62d33790204f628d1a015ec7bc92c74c2434072810ce19c31fa740b/000000_000000/0000/tree_534.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a2ceaf100026359e56719687b46651678b837d51c04663f7e789ac7c/000000_000000/0000/tree_535.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c14abc2941381e24c2661eed44c5965d4bdf2f900ac7b742eea7d008/000000_000000/0000/tree_536.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d0778755ee633feb4be94424aa05f6d253a8b6b8f31317ad2ef3c74d/000000_000000/0000/tree_537.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1a8b651c8fd22c2ef7dfdb425442bbbbcf019869ba1ea55946e82e6c/000000_000000/0000/tree_538.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/739492001a0a317e5758519872bfb50a10490d91fb235058649c32a4/000000_000000/0000/tree_539.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0ab09cd571edb762376182216d8880a867bdd76cc0d986c70414d527/000000_000000/0000/tree_540.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b9de865e0a912f7e7c31d732e32714903b9a441fcaa079315632c33d/000000_000000/0000/tree_541.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/6e0398ad929fabc6946c5053d84f93bec13373e130dae17ddce388b0/000000_000000/0000/tree_542.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/7f51891a34a486e56c444ced52f5d0a6dcf8483953eb5be84e5c3d82/000000_000000/0000/tree_543.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d89b6cf8e0fca110a372bc96729e46edabbad609a30bd14fe3334c04/000000_000000/0000/tree_544.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0722550cbd37fa1fc8a39999de07bee17bfa69e5a6148143b3e6b887/000000_000000/0000/tree_545.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0ea49c83235426fb1545199368e462119b11722e315ef6765f2e5d8d/000000_000000/0000/tree_546.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e7ffe17fc94b76156805be48d4c2c8b8a2289237da4c9f9f4eebbdfa/000000_000000/0000/tree_547.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b723def3ae4a9ecc6fbc4ff52617def4231ad6860a0054708c313ca9/000000_000000/0000/tree_548.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8aadfc2dc3b064c33f77e8fa430c28838f650ccf71eb432b49ea2e37/000000_000000/0000/tree_549.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/55234220990501c964a0293a10cc3b41e8493637022501bceac5630b/000000_000000/0000/tree_550.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/088fa1e83b26d481ad7bdd7daf7ea7c211840e53a8475860a834bac0/000000_000000/0000/tree_551.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/072cfcafc129de9405363e8e93f6db511fcde59d2d1d3e281a5dc343/000000_000000/0000/tree_552.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e0f2d7253f2e1265d05614d735bbb0a918e0b45b06f538c043676b06/000000_000000/0000/tree_553.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b99a8360e38611edc9b73c1a5399b9d651a291295d9055140bfe7d6d/000000_000000/0000/tree_554.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f3c2761234e29e5bd15bd4271456394420105ae91d41476ffbfa010a/000000_000000/0000/tree_555.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/419cda48e40f7e8af8e493e0234a5a255a9fb4a93aa28d1e1e881af3/000000_000000/0000/tree_556.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1e7f21538475e8576cc26005b8a332de934ccf10d0b561a389629139/000000_000000/0000/tree_557.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/08dfbeb739521dbfc91bc72654fb0d2c9e855c932cbb609d33ac0ffe/000000_000000/0000/tree_558.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/741f1c52e04d0435075dd4fd8e38078135af422bb3a1d5ded0e7600b/000000_000000/0000/tree_559.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/244ae9449852ad182d17cc6fbfae65897576ec7025b4337b92da6dd4/000000_000000/0000/tree_560.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/36813ad079695c5ce5956bc0db679651d1dc35d03610d6466d97976e/000000_000000/0000/tree_561.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d9df8270d40d53286b1fc5a41b3ef7e80584cb929b3f4f05054362fb/000000_000000/0000/tree_562.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e1ef86be642e0a948a9edd43b81ec993bac49fae28df4683237496ac/000000_000000/0000/tree_563.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/09f62114bfc7148e3c95de86ba596cf4c1c248edc9d490a7a381a3c4/000000_000000/0000/tree_564.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5457574abed870ebc36145668d020043c0b65611ffb1fe8a1c2a17c1/000000_000000/0000/tree_565.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d8194b26740c6be11ba741079bc36f4c0181fac0b73adbe142d3a584/000000_000000/0000/tree_566.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e944c46621f9745a3a15cf9e7a5fccb94afb5711436e9a23c2331cab/000000_000000/0000/tree_567.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4c527727a038d94fb6275805a8364b129fc6c6ba5dadf20eca5ed258/000000_000000/0000/tree_568.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e9428b1d3a938f2146af1f09fd8f6e6dab9311e55f9c922debcd6b25/000000_000000/0000/tree_569.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/cbce378aba93bde8ede90edad1a47fe1d92953df7073dfcc866c19ec/000000_000000/0000/tree_570.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e528415b931fecb080e376a329f20d9c255304858636207d04316546/000000_000000/0000/tree_571.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/37b3984a7d14f465866736eac4d832108a9e2cac17ef10d7bace66bf/000000_000000/0000/tree_572.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a8e80802560a78fc9af6596ee3b800a584da80b62f6fe54d0014c84e/000000_000000/0000/tree_573.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8120e6ab137b6cf232aa21e4751b662f93e6bedc5ac9a8018a05d582/000000_000000/0000/tree_574.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/768741fe32669342b68370d7952a1559c8f05c6a294e4337025f2fd3/000000_000000/0000/tree_575.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/537bf6b08d8f2f63cef685983d0d9de4cfa6248ade1790d3dcb022fb/000000_000000/0000/tree_576.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1f6e7555c13217815baecb5d274ab2cd8d7d7b4afdb3a1f6bff47394/000000_000000/0000/tree_577.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ac510f250aa28c5a21f4b1f98a43733823d23747234830fb46193e00/000000_000000/0000/tree_578.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c63206f6d01eb7f6f9bd5bbad1e416a00b11ea6a2a56c72c049cec6a/000000_000000/0000/tree_579.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a07d49230d85fda6d96245ba1b925ed336a88b7f179f086e9f0ca99b/000000_000000/0000/tree_580.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/6ce739339016d1f667d02049976b25662606d7426b3347622eb1d9fa/000000_000000/0000/tree_581.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/62de38852c2a22c6d7314c215afcdc9a67954f953e7e0b8a4a987c5a/000000_000000/0000/tree_582.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b64dd18910ba57225e7fb79465d2a09b01c2b142f3adb9f24ee8bfd3/000000_000000/0000/tree_583.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/be97b6675602aca694a182b94a782e4996837c0e283e2439b2110e58/000000_000000/0000/tree_584.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1ccb7355dbfa9145fecd8a4c4f29102390d34627f88391c11b697c8e/000000_000000/0000/tree_585.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/01d2ff434efa685ce1f048896e835d1d4cc641f2bf41aecdc3ad6b76/000000_000000/0000/tree_586.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/18e0aa832d1bdccad16f3d4823387ee60a9bc03077a908433180d1f9/000000_000000/0000/tree_587.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c59dd8e64737508331e4848a19eb5502244ca19bb722662955e7b675/000000_000000/0000/tree_588.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/87ecdd6ded2a0170f1f5c87625d03bff307813715efc7d4660f76eee/000000_000000/0000/tree_589.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/31d4a4fbe79ec77f9794f6a0b82cf5afbafd510b4506cf1aca4261f8/000000_000000/0000/tree_590.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c90b138d8b8fcb7db1226fa0a4199077f856be0c5f12e1b1da8e61c0/000000_000000/0000/tree_591.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/abdfef196893b34d47af62b476b68ecbef17df9369d19a0b644fbde8/000000_000000/0000/tree_592.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/7c73ca85d2c0679b6c3e1dfe91de0026badc64ce6b4902bdbd70a0ff/000000_000000/0000/tree_593.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/cbd4268e35f2619a714bed29ed0ce7c539f1d0f1733ddf720882d637/000000_000000/0000/tree_594.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1770f7ee109a61e8774e316aab25529e0dfa015b971b116926be1335/000000_000000/0000/tree_595.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5c2a2aad2b64ab756e069c3b1f817f36f1700483695911b40a40cc59/000000_000000/0000/tree_596.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b67632ccbf3d604eade90c8f62c3a38c8257bbc7be7ce2a69af4a824/000000_000000/0000/tree_597.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/84801c25165cc1e0e7ae1a8586951a09c9efef2bc72eb54438eeb32d/000000_000000/0000/tree_598.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/460734bd055313b836a30bf60e68ad81c307b549678d7eba1ddf72aa/000000_000000/0000/tree_599.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/78a215ad74f67481e459550e8b216fc186667a97c380e54a0e3e9f83/000000_000000/0000/tree_600.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/7d29f76f94a171d140e8db476f46f2358b91697b2c479dab920dfe53/000000_000000/0000/tree_601.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/00a10b71044591837255295a9f7837a5d9b5c36a7d5f25e2bdcdc7f9/000000_000000/0000/tree_602.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8aa2be6c4604a5e59f98a3f72d36b1e8ede7fdda788433f9507fb960/000000_000000/0000/tree_603.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0798b82d16584cd7461e32e3a2e49e5a45ee7fed80512c58bebf5644/000000_000000/0000/tree_604.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1ed8f6f1628efd25c8778574d116d6fa9bc7755a13691a23ad138da8/000000_000000/0000/tree_605.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/714708dfcc37e2ea1cb5c80f2a70ea56befc05d78040f1e91d9bfced/000000_000000/0000/tree_606.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0b4215f594da0415f9fd5c87e91c1006d5d768bd08eee93ca3acf2fc/000000_000000/0000/tree_607.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5cf25725e173a52257aa0d23b191520d140c3fda41e241e856f3398e/000000_000000/0000/tree_608.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/6adebbb65db9773918c904aacaf7d9610d75a1296728c9576322becc/000000_000000/0000/tree_609.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ccbf8414b13aa8e7080f9eab1a908bee75191251009c081daa85971b/000000_000000/0000/tree_610.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f5580734599495ec957eb99dd312a41b30f6dc490b1c6e9cc687eb6e/000000_000000/0000/tree_611.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c8953c70d9e4817766be7c3a8bc74dbfbbc1dce3a68fb9d903a11079/000000_000000/0000/tree_612.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5987b604eb568f880a8672f8f627dfd10d0dcc57dd7b05e5b0330891/000000_000000/0000/tree_613.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/445242e943467689caf35ef275cce507453fa3e1d5bb1cdba0766293/000000_000000/0000/tree_614.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/10afb5d8b5193fc1487f99816f3a8bee402098810d7f973644226699/000000_000000/0000/tree_615.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d773619c828b8cc1642902c8eba2496a06444ac9dc82f47d0c384a61/000000_000000/0000/tree_616.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8084b8f98770457023f741aa2678b749bd4cdf061a8d0890cbb450b8/000000_000000/0000/tree_617.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/01d7ae6fe7a50c4f146d0fdeae14fee2191681547fe5db0098f05461/000000_000000/0000/tree_618.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/88ab7107584654621eb6785b2b1c2ebc5e417f6f6f490e76e17f95d5/000000_000000/0000/tree_619.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ca3542aeabca537102bd153047f2ac764662854d3271125521d8e27f/000000_000000/0000/tree_620.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/360a17e45a18ad85853a0203a9b0f2ecec2917003f3ffad0c06bd135/000000_000000/0000/tree_621.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9650c6e2a1ecf5cafe210fac4b87c54a323fd6751bab1b66bbf09742/000000_000000/0000/tree_622.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2bda1bf59d381bcc6f40385702cc9a42b06a5200a5ddd25a22ad6b7c/000000_000000/0000/tree_623.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/49e59b7e9c3f1e837ce9f2d67f323ad814d3f4c8c304b8faf4b761a0/000000_000000/0000/tree_624.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/6fd9c6f7890e0897fe4a4beda83521b34cf92be0191ddea612a21a53/000000_000000/0000/tree_625.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c9d4e67282ce3b8808b80d5a73fcc73e83297cf0eee0e981c8615cde/000000_000000/0000/tree_626.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0cccbdaf30c6cd09f7f8403faaba336127cb1c9434ac5b23c3f4f7ea/000000_000000/0000/tree_627.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b059737b3f8494d2746b6c0732522d49e886675839fe74c0c5823fce/000000_000000/0000/tree_628.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3bede37a70e87f6bed3b24799dbfadcb2c00c9708c4c1abd23ed6696/000000_000000/0000/tree_629.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0abdf1d317a9fba63f80efd5f2ddd861e49676843e0417c22590f2a1/000000_000000/0000/tree_630.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/bae2fb0a3f9a82dca1bc4fdd4511fa0c51d1a28bf364b241c852c32f/000000_000000/0000/tree_631.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a2ee342805e3a4c55f54fb643d3c762d418b717f7b5ecc69778db9d1/000000_000000/0000/tree_632.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8274e45791793a4329dc7cc889e69abafdd3eca73b1dd0df62846f6d/000000_000000/0000/tree_633.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/7aaf119f9b50270458fb283d6c2a2b0fa77451626159a663575cfd92/000000_000000/0000/tree_634.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/aa67d9d1aa2b05bebe9bb0786deb28c3fc3a9622efebc1ae64e4bcbf/000000_000000/0000/tree_635.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b147ee90e3a842e4d4bedae7fd4387302a9f338927002eb33bd02783/000000_000000/0000/tree_636.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/233702e80744d10a339a013ea49781b16bac2727eccf485d267967ac/000000_000000/0000/tree_637.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/aa55fa6f09cb476a6a6eb1a884f4aaf6bd9062735a2991cd681ed268/000000_000000/0000/tree_638.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f744c9adb22f585c6c55cfe938c390f4da5b56afbf2cb96a5cad8cad/000000_000000/0000/tree_639.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3294933695cd66786c02a593ed4426690d8471d298a08c9aa6d813b1/000000_000000/0000/tree_640.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a62772a66cdb23558ccc84932efa9c85fd97c87557f45bceaae9608e/000000_000000/0000/tree_641.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d508069e22964fd9775c0dde022db2697275f0611d7e9aad67ab1201/000000_000000/0000/tree_642.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/60c74900af20681216736073d078bd731a7709856a8b9dc20ef4e96a/000000_000000/0000/tree_643.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e05a7f7a850662a6f96c3b586bd45d7f33b052c5fece7833307ff654/000000_000000/0000/tree_644.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e0556023b50cb6afb22c761740273687e70bd8ed0837c7e4ff8699c3/000000_000000/0000/tree_645.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0292023b07014345486dd8312b4a4e11f4268c6e59614c17c4329e35/000000_000000/0000/tree_646.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2dce9558269214ca3e6e21e14be0156855fe7c9dbf45d4c41e968f44/000000_000000/0000/tree_647.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/6bc013129b941eefcd3ebe9f7128009f843c378007311d229241118d/000000_000000/0000/tree_648.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/7f3e9481ac6a5545895fdf863bf200b8ee7d15d4324b3501125897f0/000000_000000/0000/tree_649.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/505a0c137264c75c9d3b44d94d68055f2896be4cd2db4228b2127683/000000_000000/0000/tree_650.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e2c5e7b6aec1572fae316651aca8ab5e2f81728ed9d2a6c50c50a834/000000_000000/0000/tree_651.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8865da55641b0ba46fc84cc750e19d067b5adf5d62332516ac08b910/000000_000000/0000/tree_652.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/48b83b1727b867b22740d3ea6e3bfa5a6fdde76542ea4ed5e4e4d546/000000_000000/0000/tree_653.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/53e3bbca799fd2a550481dd337cdbea3c844ab2b45f5b4af7546fef7/000000_000000/0000/tree_654.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/83f98d2e7ae7fa769878145b9ac717932d428ea0c7670d054f39e590/000000_000000/0000/tree_655.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/01d51cad39d57ea8cda9b422ccc99b347a9979cb5d8dbce23058d394/000000_000000/0000/tree_656.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d43b551d6532c1dec04b07de6fad68aa7961269f3ad2c416a9fd3bdc/000000_000000/0000/tree_657.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a6a4a2a762d029a5e654c51facd9847db0a05ccbd4044c51edad7d67/000000_000000/0000/tree_658.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c20cc80536bedbb71a132920b4dbacb71ab975f989dd6a18d3305011/000000_000000/0000/tree_659.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/09040d69a230ea48b0e2a879cc347981c17dd592d31706f59498b3d3/000000_000000/0000/tree_660.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/eb070ac27cc3552d74c8a4c18606243b3a0d8e7ed5c4f26781cbbe9c/000000_000000/0000/tree_661.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b4d5ac1d5913744199703d88cbe074781244168459fd8bf1756dc701/000000_000000/0000/tree_662.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/cf8a4a8d4f0e4dc4d30f8cd9357c40adaaddfcf2d46ee250a60e96c4/000000_000000/0000/tree_663.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3aa8c05af83efdbd9407a25a2b3f1ade66b5d7cc939cddeafc2b9d68/000000_000000/0000/tree_664.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0ddcd9194eb868d71014119bc12b9527907c79c3694c0c694223fd3d/000000_000000/0000/tree_665.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/305c01bb2c2ee5c1883d4636605ed68b58a7b9fcde440c894cda62dc/000000_000000/0000/tree_666.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/fe5c83f5431e365ec7ce520b5948921f95bceb4ad6f9362c7f3ee3a1/000000_000000/0000/tree_667.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e21e6442959b029976c61f986e866401a2b978a57ff636a1cac4fe20/000000_000000/0000/tree_668.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b4444d897324901f7d741349f40afac317c4f0a24a402e1670cf4584/000000_000000/0000/tree_669.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1b59e8c778624f3618c4d427cb71644c17abe2d0fa14e57414bb5941/000000_000000/0000/tree_670.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/83a5dce77cb8d33770fc915b1115b59bf67d2560df9f0a16f4646433/000000_000000/0000/tree_671.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/688f1c98afdfb7a42c15dcf7ab8d5c32e4c78fba600f9b2577829a75/000000_000000/0000/tree_672.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/66904f453946d328f0112577b69688fa8feb86cf22fe9e715020a5c3/000000_000000/0000/tree_673.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8fccbd084c114220745843e22d0d471ed815ddb14114b3f678a5000e/000000_000000/0000/tree_674.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4612009a11d55d9ddb8344f7b164a383b75d4f3b85b5e373c759bb2b/000000_000000/0000/tree_675.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e077e8072d950ba478b90d7333606e76c1607f3f3bea12906951c227/000000_000000/0000/tree_676.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/7ba09f1e1fb1e70ab1dd7b62a201325fe8036cc549a68b7bf3bca4fd/000000_000000/0000/tree_677.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/db1039f7f689b26dc94aab63243a812122480d98299b98577c691c9a/000000_000000/0000/tree_678.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/63e882d3917a8718e841e14f60c3ab0e557a0178df53f813cc656ef5/000000_000000/0000/tree_679.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4e1ffb512cb5dc9f9db9d3a62bcf1919a5f0c46d5ae5a2450e1c5f07/000000_000000/0000/tree_680.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f2c9b0ed698172b588b595f3746b1a1b3debdc9318b73ce9d029d88b/000000_000000/0000/tree_681.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/cf0f93ad2cd2f7cd77c509b8509b67cb562a8b717a38bdbaea823f9d/000000_000000/0000/tree_682.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/042561319ced421d06aba86822b279bd5c76e1f1b73bae1b396de1fd/000000_000000/0000/tree_683.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/25a07667c061969fd72a9a20a99ee9a8135f247559a50b453d22661d/000000_000000/0000/tree_684.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8eb8ecf0cee6a8afe6bdfb1c473fc6f114e7b558a76f2e43372e3119/000000_000000/0000/tree_685.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1e6052d3ad3035249c4044a83cd2199ed1837176bf5852f65093a494/000000_000000/0000/tree_686.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d31dd2b9ca4aaf79401624baa2c6c7a7574b068b21a3abd4eb415537/000000_000000/0000/tree_687.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/dd3b8ef96f0a821143542e79ae49a0bffb085727d3796b6100231c1d/000000_000000/0000/tree_688.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4c36fb99f23afd0040f11e970660462b238df2ddd1686ad42212cc87/000000_000000/0000/tree_689.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/bfb182fd74f9d56d2b89ba63a2baeecf58bbbe5bbebe8a77dccaa219/000000_000000/0000/tree_690.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/dd0f2a37fac144e20170e05ddab949db3af21696950e72ed96e67274/000000_000000/0000/tree_691.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0c0da4a91fbc714530c29872b9c4c34a52d56173eadd1bf865330d3b/000000_000000/0000/tree_692.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d940f33d7d9927f357ef4858168ebf437484ae441cac6c93bbb103c9/000000_000000/0000/tree_693.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/84731373c1e60affd243f95b629f0281ea4a8bf9739dc56d4888e26c/000000_000000/0000/tree_694.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b351fd5a8033f7365539fa45044ece81a624578dcdffeb3c7b0142a0/000000_000000/0000/tree_695.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5d9a0db588a949416925a4f4578fe1b31561942bc392f0fe35154d22/000000_000000/0000/tree_696.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8e238124fd110964943d0966ba16cf9b06996374271dab8b5b04c33d/000000_000000/0000/tree_697.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/893a7aa9d5173a786306a88571d403949ce1cc927d7ffaf78fc5a942/000000_000000/0000/tree_698.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d207b0fa456cac3f24a0d0bc100329a0b7da066360648f4feea026f9/000000_000000/0000/tree_699.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3a667de2bd7bc1e8216029595378520ae99f676795b53e13dcd24fb3/000000_000000/0000/tree_700.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f6b37536954d9f5d9ba49da141489c196ccf1cc6d61b9aa57e0dd60f/000000_000000/0000/tree_701.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/170103c94377fd0ea6822efd3843ddbab7b429767c13923e7e77fcab/000000_000000/0000/tree_702.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0c030477c31dff689c55465881b5dea3c2211742456b93b0a52707b3/000000_000000/0000/tree_703.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/15cf5a31df737a6521158abc144beb9bd31d11246a552eb2fa33fc49/000000_000000/0000/tree_704.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f5f59de6773443f9a22f51a37cf39005b165897a84f783ad18da72e4/000000_000000/0000/tree_705.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b1e042f34473ddf1903da0cc088860eca2dae15f9a4e4a62af250a6e/000000_000000/0000/tree_706.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/046790620eacc1353d6c5b015afee3a8f86189855b04b5a63e346523/000000_000000/0000/tree_707.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/817264f95edf49fdc060fc51c5900ed5dbdaec6ec91c06cc5385abb4/000000_000000/0000/tree_708.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/96349a2effde518bf95ca986397d33757ed0baca2c7c95d53fc52961/000000_000000/0000/tree_709.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4dade86ce5b34b45510fb50d51c87e39968f69016cc9229ca1d26909/000000_000000/0000/tree_710.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/50d40a67bb94081770f9f6b6593b6485edbb99ac4b23c1da954c70b8/000000_000000/0000/tree_711.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d6507a91d4f79b1b85342532937a2d12c33298264b3d88fbe28b7662/000000_000000/0000/tree_712.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b11bf68426d1e30c43549bf280223b16b6bda0680bfa35298cdaae10/000000_000000/0000/tree_713.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c7c56d10a9b7d1d891592d2660d55b95c8669c1b276a4f64d666eaed/000000_000000/0000/tree_714.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/042e379ba77b23539e61bba6f585f9d1c3a69d9d409d4917d09a9578/000000_000000/0000/tree_715.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/17034c69053f770c6a9beebaf0b8a8c58d8601d4f91785e8130eb6e1/000000_000000/0000/tree_716.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a3dd426fe8c27a06bac21221d0ba02f930660360f0fe425303e2a0df/000000_000000/0000/tree_717.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0b53f0c94ec9f5ca8bd71f22d3a6e4ead450debb58c29ab91da7a88d/000000_000000/0000/tree_718.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/327e8f905f98d3692ede016f7536f7d138de3a4bcb65d6b186cb3a40/000000_000000/0000/tree_719.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d8be11957524be6daf89097a10d2409e4eaa9e6b31a66af96097a98c/000000_000000/0000/tree_720.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e06567d4ca66c2a4caae558b3bc914dae18ee3453d8fc648392272d2/000000_000000/0000/tree_721.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c2cd9334429a6162d5b3ac5f0476eefaa1a3cb7a1c097124d464cb02/000000_000000/0000/tree_722.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b81c84b06d379e01af1345c34e6ed3aa164b9c79177bb3524dcd4ac2/000000_000000/0000/tree_723.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/fbd631a19361a1f3ba6e93afa7b4b589323a56514024874ce0a14581/000000_000000/0000/tree_724.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b46a07112800a2a3abd0133fdf19388a96dac7d7e294e9fb863c8fad/000000_000000/0000/tree_725.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/122786985b87ac80d88f39086519996c6d688d919f8a4f858cb13692/000000_000000/0000/tree_726.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/75afc98189f8f6261debcddbe484242a80e110399860d07f7ee01c55/000000_000000/0000/tree_727.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b9917eb2b237129d6ad96d0fb25fff81e16681db27bc931e449e9bac/000000_000000/0000/tree_728.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9bde487bbab4e94a029858f3ad29ee508baf7720a7eec2adcb0bab5a/000000_000000/0000/tree_729.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1985b56b66dbf2ad289a9bde4e9763fe0266d5134a6d4f44866aefec/000000_000000/0000/tree_730.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/57cad58485c59ca9cd88277a3065c34d55f7f7acb90e214a01f7e2b4/000000_000000/0000/tree_731.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/W2JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W2JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..71c3516ef --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W2JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8/718006dbc1d21d4e8b3d0f7c8bdd4899c69eabb52411e1c2f026e097/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8/b89e956a64f7696327a4d59af6079788486af18226172d6d489ba8db/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8/2ca6051ce7fa5e7034c83f412cda9f2c67966ab9e1c499d3d2aedb38/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/W2JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W2JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..8255128f8 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W2JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8/4d200fd1ac0ddc5da2729c1d33684952ed1bc981aef37ac18809f2c0/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8/68c47ed517bcbd22dc42cd17f2609d42d2f25af1c02b1791ae226e4b/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/W2JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W2JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..9d9b46682 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W2JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/e3ae073336fb896282a264afeaa0a2b1ca05498fb464d023ebbbb39b/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/W3JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W3JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..492d2985a --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W3JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,9 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W3JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/25f03e2a51ce40b907d5d7bb1eb086f745d0adf988e9e2d36f4b79db/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W3JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/c4ae4fbdca85d54cd43ac461021e70cdf16ac93a864463935a5eb992/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W3JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/7e46e41cd1a9b91866d0a1679b630407fa41709d52442efb6ec0813d/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W3JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/bfa448bc0d3eb504dd6399cba427699ee95e13d511fd825af58a3d42/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W3JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/b48f855aea56544eaacdb59262879694ab7d01d8fd5486b3039a9d2d/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W3JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/6d7bb4455d21f863859e4083e4791bb5ab8686ee0fa6f0b3c21896d8/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W3JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/0b4cc2d59f0e1e4a4ec323698c59e43e86c74d57236463f75f984fea/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W3JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/82b0641fc62630637371d7a4892496b80ab955dace4e17a2ab2c8639/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W3JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/75ec10ca0433ddcce29c5c3163e2daeb1bd7f307b6e7012f5008f6a7/000000_000000/0000/tree_8.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/W4JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W4JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..c0aa3ee74 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/W4JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,7 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W4JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/7b3ab373a6e5f27b958b6968a5f0315627640f0f310bcc436aee7bd7/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W4JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/0908a41219047775041ce43848d5ccaccf9151c27a542e13ace11a08/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W4JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/bf3591e9581cbdd0190bf9f40aabe9b9274f9600ac3a40898b00a5e0/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W4JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/8079361c6af797642eb703f3c17c7829ed39fc679f13dbcb14313ea1/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W4JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/7349ff351b36287e98f7b30e2fd3579ba586706b7f5ef135231b7809/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W4JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/d23391a58e0401dc337f8ed874cf2c66cb41eee183b120cba0dab34d/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W4JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/0a7d75d3f3f44de228ef24e9f8ca757345c32a60d0342a64c412e142/000000_000000/0000/tree_6.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..c0ec2c9c9 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1,12 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/1740e84de10440b0d3987f445f50d0fd1a1290f80f3606fb810cb7b6/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/91c252da5a9236c571a7288092a76aa26b3fe4e46d8b084e80739320/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/dddaa6d130c93c00b752b0d4319675ecdcabc3a5e2dd741c42060350/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/0316da02f1baf9a8b3d5684fcfc86fd9a21fe02b6268a3a565bd1f67/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/02018e51a564d014c3e0deb6fe996ec6597235dbbd07752e5a2a634b/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/a907f29e4527922e243dcdb5b3b70e3ae64306bbed4a4d303591bd3d/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/c489558193be677d592e1c73cad7844da3f4496cfe498c6263bc8016/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/46a2ec4f09cbd40fc59e38cec47741a7bc5607436510b93fcd6603b7/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/9f47748f2f77f9565d129391da2246dbb610b40aa953835e31728472/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/16c903491747954f93de9a437fb5e9b9453ac0e34b91914fae54d6e6/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/22d76bb0e3d0ba8aec625939ac8969ea94fa12807687fdbbb94009c3/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/29e93b62886b2e7c32b9cb01d560c2e7226ced7a3373d24adb89e4b0/000000_000000/0000/tree_11.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..cada513ad --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1,13 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/5a6591277bea7d2f7df5328bdb57b3bc184f7ce9b600ec6026d15de9/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/1b07f4b023af9569f3c662e7d8f7cce80e0f56276d1080ffce02ef55/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/d1fad2e0435eff51c1a3f67d2e7b924973fa47cb4d5eeee1d7047e3d/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/763a4a59277a744bfb1e9b3823623b279bd3015bfad11efcafcc6014/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/2ee66ab029b7bcb1703f7c8ed336acd08d9eaee4176ab3f2efd13a72/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/06ed2e9fd161a93d3cd27d24d2a90ae6c70bb669aaec37ed6c805563/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/8a1c9ee264d6cdf1314e5b2d3370ddd9464883db6108440b429c2f85/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/b3915943556131564754d847050c082bb9f9d1bb66fc74f66f840734/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/86f97b90cbea0d929b8bbb3b8568768d50905e39880b3bb409e4abca/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/24fdf9c7636df5b2b646dba228b9cdfb46ef7ef2c41fc93bc5bccc6f/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/a1688b4fe8f20f58236c0a869f72226b0bd12af3c4a4413d834591eb/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/19bcc51eeb416d30a3cb1dcad76ff96a522d1d886c47a7c471210988/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/b32fb574c1455a184a585d583ea32762d3a7d5f31e31dd0ddd92385e/000000_000000/0000/tree_12.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..8ac04d02f --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//065501077efb5dd107cb3937035054b207158607e6c5ae860ca211e9/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..316002f93 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1,5 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//523810d6198238a26e1bc399e179e88178a05a5a05f7c770f5bddc95/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//f5514ac8fa53baaa8d42c3b0ace353b80ee1306ecef1b8668afd23f4/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//eb771beb5893ebdaf964184da369cc8241cd398357aa47c99804b6da/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//c19648f7af556deee344b99c09b7da64b83559f25254ba6af0c69367/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//8227e5ee8c8ab696615d59325bb8d6b5ad83d406635bca56bc586c29/000000_000000/0000/tree_4.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..8294a8f7d --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1,48 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//e7ef8116d12faf53978d891c7d4865b401bd13b3b34c610742c995f1/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//90e33677d8df814456ee5af39e4da5713039e5621a58b8c5ca110446/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//afc465bd718716553203fe6dfba170de47fc115d3a916fba7891bc92/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//1b360f4890d4fd87a031919e3feeb21f3dcfff423cfc41aad72a3b12/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//f879c0e9fdd3e138fbe9eba97beda28876ae4cea75765fad70e2d93d/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//eba66736fc482a3ed8348e29072f9fed4604bbcf4f97da79bc62eb78/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//f5a0951e301cabdbaa116675455daf63cd1bfa11a1980533511d4f91/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//f415b577a76f8f66919c452b0027c3e92d0e5558d306cbcaf2532bf6/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//03708848b091e85c31974e548f827ff003c0799d51bea6805e9a62fd/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//b336a824c44d1ccb23728421cd43928befd1ae6191710f7fe7d89bb9/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//bebe55f4c76ac9903e78c9ed67d5d6bfa4727c07340144128a2bed26/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//93cd7ac1623b514652781319452047ccc4f503bf883ba4ef03031ca7/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//320ca8197d3c6b1e629d00d1d69e750fd3bdb5085417e66c30a6bdf0/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//f78448703cbf0290a7c2c0592ecc46623693886cd9d291c604c8aa19/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//63118365b6aa67fa2b5a13c5a91b138925089b2f7aad89a8aaa171f1/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//c6bffea6f80ead5955d2470671490a414a8c77d9835d1bf803e499db/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//1d598096cb9feb213d17f9172ab623d62dca0e1e3e38b385b5fd8b36/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//c9179c84cd1bf258e70b150abfc67e69afa427758c6ae8f33e504728/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//63caca71c6980bebcb587698989c485ab9e3c564716a118269c6ecd3/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//d7e17a1ea93ef81a5db8e89417e722890df71fb64f6221cc0eddcf37/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//6d6f4c5e8ccf15fb84165c89fb6489e225bdbc1c8e66d688cce4acd2/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//97cf8847980a540788dcf443135d0ec30937fe3cca8476aac1b84494/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//5a4073ff576777de4bba129acc432f9ba595737aaf942ec48db8a75d/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//5143e01b95efb7b1148e0c06074b15f9376203d1b078e26f54de6d82/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//c81ad5b91d5d722a76126c7b4648dab9eb3dc286412db077c5747358/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//e25c196b4bdbc43aea4510750ba5873ab287b350854dfc46862670ee/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//08d8e75deb32219755f0d21b771e5aaaa89c35f1c35e60bbc8ea0ef6/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//543fca41db3f804ae5a460a246c62e559b830425bbba455058cd3c13/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//498b7f938c675b1bef2ee61ee00bcbff2534a4a104cc6af11a7b0be4/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//9c714039b339781d28329e486fafe4b8ae3c461d072d1240d5acd920/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//c3721702b3dcd40ec05e515ff783fbbc59f2b41e862b3125be78aa09/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//caf4510f7f4cde0e5a3bbab70f8300afb9d37a0b27234f324eadf44f/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//46199c098b9d8e9d9f52db18c15922817835daed199f7f1ee5402412/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//91b68e4b922e6bf000fe95293aab645627e66fe8b7034de055732823/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//bd741b89e538764e26121b5a2fda41d4c005646f50722e04a5ad777a/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//bba04417ef45ccda732ec8b8333b67b7c588e44836e3e51e071e27b1/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//63026df394fa2d950e406475bd71fcdfb03041eca06055d2955020bc/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//6790fb2396e496d26960409c336666a13e648045d9e56554ed4ea585/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//cbb2068a490c1017011ec8b8c48d7ee0c4f20cf80e62c0e7e70dd9d7/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//c311285b3d88c20623afb91dd46b23d706b7e34638d7a025fbd19485/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//60c62aa48ebc98a95c6874837e134a65d3ecc38d72e79eacfa3ab657/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//40a6adc49ba714ab976c2e15e135ef4ca41603a94537e9a56b39a456/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//67859be58b57827d0efbdd251609eba83deaab6d1f4301f8876d7331/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//de3a80bd811efc3b6c5a24d5065c33cb3ef08f5aeb381a17be9a88c1/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//9c0ceb46e40be585a29ec925913418c49da0cd70feb87803b804a643/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//3c51d34f5af25c11094741c61e32a771e593d19751ae36bbb7e76e18/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//f1644ccd6a8649fe999279af2e35e730a296662f9d2b671de2486502/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//10a26e9705402c0f420161012a9b2547c34299e7050948b387873553/000000_000000/0000/tree_47.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..b0c2a0cc8 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1,24 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/8fa6e96ecf1d9244401fa2d26e13ba1e0985172f64c1d8ea372b56ca/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/e9385444702e8059b654b723bd2ec0f80d456c613eb17dc067894156/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/fde3882e87975a2c817a7e7d89d63d3c64588c16d2ab07c7962d5e86/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/7e1f8e157685597e6c01702086b1b0ba57b00a0fa04bd9bf89f76631/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/e475e003598cd334d09c0ff3a97d3aa6b0ae3332c52671907ffc8b84/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/9acead8794dbcec94334d5ce135752712ed4c0c0705d94471dec0f75/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/f878533bb72d6b508ce0d8db43aa74f0598d473bdd424fe6e090b903/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/d03d4c71db3e6865ddb9c626f3fb83e6ef93b63676a4541dc8e7177a/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/30d7fd608dfef435481df2d9f05f243f5f7c9af06e146c13781d99dc/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/b5cdf535d8031f9c6c7b5a39c3c2af2119dcc427d99d1f5c1a77c76f/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/e87ccf27fd403dd28ca5d2e8ead948b0a7eaa9ec3ad9ea59216e5550/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/fd6817a3378b3fdfb1364582d76b4ada8c55d545b3236db9ebb8e38b/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/251cae6c0f97ceac944996b801eaa7bdd982b74604acc45f14dfd8f0/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/b9720378fd9c2c42c62febf976216c2b3a66587cd16bd134f8d98033/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/21b1ac31b1c709f8ea96d30b92fc545f508333a3c8c63a4caef2edef/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/4a5cb9a97e1e00266b016316acb6603fd367e7fa94de62a3243440a4/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/2b8b17ab39e9c51833f076e1de3dbbe73a39fef76cc6bd6033e1fb71/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/313102751e9bd029fdfe57d77d43981642279d5ea591bfe3048405e9/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/c524ff69ec72c9282ffc0e638fd731caea898e6d62b17469f5e4dc8d/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/1074e6fd2eabec36b7c468d10388fc6dabb5a9e5a32b6b2cbf990f75/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/67bae3c1908ad31c8396a6440b594a10dc87f464353837016b6e1fa9/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/b9d714dcd66cfb8c8de3330543672a734be2be15099b96e2f790b7e5/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/9a2d83e6c725a2f2e96feaf687ea1bc29ca0d3f9b0e3488b7f9c0fcd/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/1cabdb782ccc6c3ac9711ef07acc5d46fdff8228fef20489623c52a9/000000_000000/0000/tree_23.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..1ae9ae2b5 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1,18 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/038d97baa3b27ea2ca9083ed0dbe83a23cac5f41a1bb34eb4c5a432a/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/e385aae3481c274d672baae480e793d941a7526c676632b704120d6e/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/fa1c96294ee6e925be82bf99a8ffea7d64f0a33b3a826c809e01f65b/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/6b6c4a7fec26c0646b51bb7089bc64a285bfada3015af220e84b85e0/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/1bd78a85a37db1d7657a82943f76c0c9c56c669999697a673912d7a2/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/4ea6c5e3580ef4b11b8b43ef050a417a0d3ee3e819a4fa0a592e6145/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/4c0860e2ad88a978816404eb45ca7b04dd45ee03ad610a903c36c007/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/ff2287175b763882808756788e2f467ad9229049ccec099f7beed4a4/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/ef53969827b6e8b18dc785e29c0973f25df9d47d696e7f4da75fc33e/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/f1289bdc3788946d67bae32eefda4b211dd64c7878c1811f41afaf34/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/eb6d36cfeacf7c23cfd1de9e0c61887115a073fcb3ed483242a0a2dc/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/1c3744e72ea154f2dc6710953e27247860a9d94282e639ff283d7d94/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/03d534a9fc429d643d4f91ab69c8f445848ad7fcc4225f2bc7781c86/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/79392bd0e01ff91c00e69c27f2f8914fbe9b3e7e6f2ae3080e6c5cca/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/bf8f647f6da537efdc1cdac73027dab730421fff5704aa7f61da9643/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/09c2f4bfde9dd03844b45b30f87c34e44ceeaf8bec62d29620825eb5/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/4ef2aaddddf881022373f827bf0e3e3c159fe261f8e8ebfe875fe3ba/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/9db0c13db48c6a42556ad0bb13afa1831dc99dd8a24a46ff9d4be706/000000_000000/0000/tree_17.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_HT-100To200_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_HT-100To200_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..981652135 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_HT-100To200_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-100To200_TuneCP5_13TeV-madgraphMLM-pythia8/26bc91eda3bf52341f6349efa544bb6beb18c2b6beaa225e3be6502e/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-100To200_TuneCP5_13TeV-madgraphMLM-pythia8/35974278f061146758152aceef1316569d8a803e8a8e86e64b55dd7a/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-100To200_TuneCP5_13TeV-madgraphMLM-pythia8/26f58c32fca48253fc988f8a9baa0b048c8eff016ec50b1d5b3c6c3c/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-100To200_TuneCP5_13TeV-madgraphMLM-pythia8/022426816f72ee2d6ed7922ddee8d991058f8f458d6ffafb59ac945c/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-100To200_TuneCP5_13TeV-madgraphMLM-pythia8/1adf54f71e9f0bfcb061ee8c26e505bd4fac6c44b4bbeb8d6c398690/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-100To200_TuneCP5_13TeV-madgraphMLM-pythia8/042512d10e40f4d61f4d9bb2b457083a6d4aae9560ef8b532d8b1974/000000_000000/0000/tree_5.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..52b3442b6 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,16 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/546ecde9c3d5fd3c31412f8edb4e4a8684a3734b796261779098050c/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/2bb4aa201c2d9a68c681ec8a09df36d079cc7d19aac414d8659947c8/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/7724e71d35ebf73a1fb92cdfe886e2132b0a8600c9f6afff51a7fca3/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/cc64b639b11d316202aebe1834cf0e246d3534b66a16b099721a0074/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/25884b93f0a14d90eee180445c8b2d854f430823f74155cd46b7e4b9/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/7cfc6b7c825aa5c44f17fe014e07549bccbe3bed14f60bee612a01e9/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/b6a8a0b126919c62451671edfef2513c14fb51de87b773529f4d3070/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/06e4659b99c27559762befde08b29e6dbb192a45ddc6e41af9f291e0/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/fd567936c1f149d3b8286a1e658b0498125c3d5795e401aa63e81a1e/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/0583357ef3b8159a1d5a94ffeb087b293d443c26a4144a74f1f769fe/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/3c2c4cd12856420ec6a0f406768fbcc2b128dee3d8df4ebe929ec616/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/1b3fce0b57d70ccb5de52e29dd2724bf52d6b012ecba8ebe133f8cc8/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/0c8d7b64d9fe15f133fcca6532afd7becadc6d27ae4858cf06396a07/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/f0742be10897dc6b6246f8ee8145f9234e9d5539522f11f912ce0633/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/25d9f35ac4628950f20026ae16328637359ac85f6ba6a2f1228849e9/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/c3beb5138c0b0a0a664cee7c98b2f8ea914a1a6dc66f1985e7ca8d3e/000000_000000/0000/tree_15.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..2f7864c8b --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,18 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/fac9a55c548e893b6473ea9a905f75b1c680db981b4f9ffb1e0228a8/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/8252dd726a6541c622e476ad1f321694f8b258026ce1f0d1bd36d2d6/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/3591bf7eacd1251c749e55933f8fcf6c0f14b077b12324082551a62b/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/cb17f2a306e90eddcdf3dac2116cb48797838124404b071fe4a6e102/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/09c64591d957be5732b7d4dea7d927a39364d9b315dc10848e4d35b2/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/a0644b13318c69374dca3d5852e0b35bbc8f0da6668657d554cd9d36/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/298650ff221e6a014d7d9dcca389cd501a24e35a3913d5fa0dc598a6/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/3649952cf6631a2bbcbd3930dcca42deb584838ff2ec34fdd0ae803f/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/c860ebcf8f28379561ad11a1aa6311c580e5f9fa44456472a251c3cf/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/777573ad03f6f74df56f69a3c29b58af70b11d3ea7ad178f59118fc4/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/49e496bb284118b4555a51f960675d87aa2a54e579efda40ce5f0c45/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/db2ecbd63c9fca0b8342c544fc614ea8af7fca95ba8449b7733d236a/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/574390f2b4048d9b62ce21a910f10aff5cd4585013d163946a8969a0/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/fe03e2d03b1668e252c0ddfa98e910d49be4fd9c064b9b65c1347555/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/6be57ef3152ad492f8e33c99024a955b990bced1f0fc029d8c13b510/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/aebf8576f0345eeb60aa7b7e3bf2ec2d448aa77287dcafb3e5c1087b/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/7628425d27570acbdbc334f978622835e6d7be20249f9774842abb9d/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/2a5bb1d816738093d33ca0bbab7e85334817f1f27ffda5e7c59a1036/000000_000000/0000/tree_17.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..73a0b021b --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,19 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/0158b8d76b89c454357cf1835c0f31f7cbe192e5543dba2a0fb990dd/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/b736a6229d8df710635e94d9bccfd701eb53cbf6c44286acff00b104/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/d8a2d782b6a3ede9f625a9a447328d6d536efb65cafdbfa5369329d0/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/2ba7b08b7e78e3137684ca4a3019610fa863a837c0dbf506d5074647/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/35a7d5e93408f881b92fe6166bcea0d9bbc5e45f025c0f4caf1147bc/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/ab83674ef5ff114cd5fca771b51b95d07eb7367f132b8ab8bc49e628/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/c7e41d78c6acb64bd7dfe5d7a78549ec1a35e778f6e7d6ab902a0c79/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/433b632ffc6e32dbfcde31321468888fafd097c6dadb71be01615094/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/626e837d607fdcbf0a4a70a88a0e71bc3874472099572fd599adae5a/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/cf0fa139005931e079a49b46af361328a37fc816e0fe87526e082da3/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/eb023260ca2cf3ff3d3769fdcc74029f61addd6be4a9beff3b61dca2/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/c4e36b050633ec613395034229f598e3747716860733c80e8c466bfc/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/5a42668953f7c8c2b874b8e1c6db6297317c697078a8f46659245555/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/eee9777d60796859a7e361739ef96fc1d9e806ceba3e9a23834f32c7/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/d02e3a906ba2f996c1f067273edf01ee13e70816f8bced6fcdca2caf/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/2dca30ff029bf7c0c3b07a4da68fe47eb656be725d5bc55f457004fe/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/93ddd5e77bee48f1c21f2d7ec3457bcb07a22b400abfd420188d7918/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/c5228a526ba249e37c42b55c3254af1da675b8b992e6e1e33118129f/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/0cf5978f3102658fcbb73ce31495a9ff7934786e7b2b2453012eb1ce/000000_000000/0000/tree_18.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_HT-400To600_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_HT-400To600_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..05c43038d --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_HT-400To600_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,8 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-400To600_TuneCP5_13TeV-madgraphMLM-pythia8/a987c5fc0632abf989f5210d132ab51be30b58d4724a4da93c7c4aaa/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-400To600_TuneCP5_13TeV-madgraphMLM-pythia8/0fb36244806e99f2933b84f55acc35b5675f44416339708599338179/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-400To600_TuneCP5_13TeV-madgraphMLM-pythia8/3c98731c3ec5609d1b55e7a5c0d438bbd5f824dfe72756b1d597b1d5/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-400To600_TuneCP5_13TeV-madgraphMLM-pythia8/ff2c364dbf3c37ed92ffee65a6aaf8e8af16acc042b2cd03ad400945/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-400To600_TuneCP5_13TeV-madgraphMLM-pythia8/b2e26450737a23dfc2e171a56365c9cfd392c3376bdf0083b6769078/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-400To600_TuneCP5_13TeV-madgraphMLM-pythia8/9733206e5f1d83b5e29c9e8f06da06dd56e8565675c88f7c0ddce9ae/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-400To600_TuneCP5_13TeV-madgraphMLM-pythia8/a82dd906595a6e62dcbbe60cd6869849d8f52893d119bc7eb2588b9a/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-400To600_TuneCP5_13TeV-madgraphMLM-pythia8/570350952196f000f7f104fb562c0f38bd42d554cd8f155430db28d4/000000_000000/0000/tree_7.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..91928ece0 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,23 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/319b673cdb9546cac9d075fcb389112122b413cb172f0fcd85f6af1a/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/df4f397fae8fc5d031cb50139a3509224de53362834d1385d24563e3/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/dee897548a76dd399834c3e1fbc904c2933f4cdb4247be4c0fbd0c69/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/49fde589557e2013d33e5feaa53c006ff0f82ba9a9382cd03cfe10f2/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/7436bc09007c9c2861394e07981105872f47f49039c6c88d944bee5f/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/83d1bc948d46c86a00e1274da54672b482c070b62bf52f65df4f6bc3/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/5cf8676a5c2c5d1f7410c990f80b66f2d944d7b0911d3050d39b82cf/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/effd4b03d23d4c3cd2456d20c4c76f60d6641148685ba74688f53285/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/d2935b568dbe9b168d20888f2d6bc77248fa44b1c1629bf8145ced4e/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/ba257776a8d3af45b9cf6b32f96ec7d12e53d55e4a96453dee469c6e/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/b418a56ff19fc8c19ab9cd749981718b3e3ef5c0a15077ef83b24623/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/f04fe27d171eea4a27915be92ba56fe5937c4ff0b16d8e58256975d0/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/94e6642ff72ff067331ef8dcc5692bf50be5d5146bb6f071a0849acd/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/609fd773b3b9456b0a1ba01552416dec027a35190f41d1e679c4050d/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/635e1783402094b9b723a6caee5292d3bb3b7b506c51e87a7750051d/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/34d1eec4d1e430d252e5db8f69ba7f43743e29405a5b7ecbf25f2cd2/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/0c382d8a895135786457ffb862551222cd0bacba85b66ff902f5ec12/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/325a86b48edb21800c40fe9a2f7fdc1b464b939f826e8cdaa3c284ca/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/3360f5dd89370fd12b5f89ac03723ad2196ee25353aabfc51298443b/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/07ddb84d76c3ba05c3d4ac10a1823fd9d2161756e4631f18e2a8ea8a/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/54eb1effd126fe98971d3f3b36a504af8ca9077bf57d8a95482b1eb2/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/5e0cfde89927df03b7c78d3c73290c46395bb78a20b28714d57e38c3/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/04aafe93af210f679ef6d9c71093da232b7be83ce09fed04e095a32c/000000_000000/0000/tree_22.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..1c0a8540e --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,14 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8/f1c851a8d5898a209592bcb15459c64030a604691a9e8ea2a8d4f46c/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8/e6bf8e6736ee311d203fbfd6a2bd4b65abbdb44375c18ad83816b555/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8/2c66d34e62176bc3262095d14302056754c93860a7015ba8b563a60e/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8/28f7f18e6699c9accca267f2be405331a98941d4726dff8a80bf74ff/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8/c5361dd8c1d18c13244f161f4294a76a595ff45c22d93e650afb57d8/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8/00a23a56e80ee156dc3722284114a2ac895ea060247c59e580586974/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8/57ab1d76488bfac89e102a2500e87c4eac0e02b9391cc7149fb7b84d/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8/5648ead8c8e4ccac05bd559bee9b49ec35648885e4218bf9b1e59a7b/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8/9931b89ddd5ab9ab1fe36ae7f4c840abac8b5c61d8169f178da17d07/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8/132c63b957d57b75c4f0578c0107eb832a6eaea4bd7a3ba1c6a938f1/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8/0a1b16b901c9adb46c76d9dae8917c4f9fb3a4303ea19fa72c4eb446/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8/e0ffb36e0f2194b2e3d4cc863e1e79edf0a826285d061649437f5753/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8/48fa8881a412a4f8f3027569c94206725b9f217b37593c5dd7e7dc62/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8/28627a2375783f04eb8e04886ee4368845de6fe204ab17d7640497eb/000000_000000/0000/tree_13.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..a74acfd12 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WJetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/57e5ba6fddc6543da89e7095222f0525764d3f4040fc1ee3617e07c1/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/8934827266cf7a7c3b28007e087448236729373739a0abd2438b803b/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..bc7eed2dd --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/c762d9e224b905a371c18ab8f3a4f9aff80e65a96b73caf806c6080b/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/6b9708a6f4ae1e1fd44bf75b597b8d581cc0d9b7c002b0d0a88fa74b/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/f7a35e440841ee1449fda24f134e69eb4afe726be7b2579491a5840d/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/WWTo2L2Nu_NNPDF31_TuneCP5_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WWTo2L2Nu_NNPDF31_TuneCP5_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..5f5119c6a --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WWTo2L2Nu_NNPDF31_TuneCP5_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WWTo2L2Nu_NNPDF31_TuneCP5_PSweights_13TeV-powheg-pythia8/e068c537fee4bd8f01a36b113d9009496d995e2dd8ef4e4079f8dcb3/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WWTo2L2Nu_NNPDF31_TuneCP5_PSweights_13TeV-powheg-pythia8/2925f6a012598f972a933948580054c682d569d319d12b9ab6d32277/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WWTo2L2Nu_NNPDF31_TuneCP5_PSweights_13TeV-powheg-pythia8/998c051308a51d61f80e774916eeff9433cdf3d5d7010aa57436e1b1/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/WW_TuneCP5_13TeV-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WW_TuneCP5_13TeV-pythia8.txt new file mode 100644 index 000000000..3a2c4b2a2 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WW_TuneCP5_13TeV-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WW_TuneCP5_13TeV-pythia8/2e4039594520e3ace0554728a2fe880b5302f4ca2821d625e953a02a/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WW_TuneCP5_13TeV-pythia8/97c3e42ba77162e39488458ccde36ce1e68b7e30668789beef76c88f/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..4b6faa6c5 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,16 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/efadab6caae4c8e70aaf71586694a0ca352fbecc11f6f7c1c7f7851a/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/800bacaac8c103a3331c5500f01a85d84c35de3b41a264cd6fe83741/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/a2925e680a1da92f40fce2495265757bb4eb696b117b00b4c8e69efb/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/17f032a1643b4a880d1dfacdd6ba1a33ef6ad2ca954c4a19c1d24765/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/bd54e29b5f7410574089b7f5c09f68b58f5db9ccd73847922e394992/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/e9329b4344577e31972e27eb6990e5fcc9e9d498df8156e5dc1f377b/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/b3ef698a5dce035bbcf2f32bbb5601edd29656581b4c84ef25f00223/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/69b817167bfcde0b59845a65e4aad95430f8e6df3b416a815e88b2f5/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/d48e82b82cceefe5093f92ebfc2dba3825308c633116ddd6a0b13302/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/207623d363242db5de68141f1b7671f0f18ede6bd6a08ae797ee4698/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/db260f7654c175a074e07b01795478ceeee2a71ec00370e5018f1075/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/734600b2de10ba6e70dc82e9e631e1008415808e8f87a5d4e7e9671f/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/0090965a6d6f7064cb95ce16bb5de5790be15da6cfc31d42c7ccbd55/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/0a373e328d3e09d373edc541fa24e16f19361652e656a7d624ecb0e5/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/5c2ca30099753fd51994824837eafb7e91b95fed58459e40373d01ec/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/4cd9bdacc069c0a345b21ffe75527bac0f35bc3e17b252ee0543d196/000000_000000/0000/tree_15.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..063a00d75 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/01480c4a8230eb13a2d2e4331af97a156e1961f0323ef7dc6bc8bede/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/8fde1eadcb0b957c9e005a849a7ce2d81822a7e961995c12595599d0/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/WZ_TuneCP5_13TeV-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WZ_TuneCP5_13TeV-pythia8.txt new file mode 100644 index 000000000..6ff5e0439 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WZ_TuneCP5_13TeV-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZ_TuneCP5_13TeV-pythia8/9ca831de590cd536ec0aa28cf775244b8be1dbf9752bfdbcfbd817e0/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..4ac15e762 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/5db02f8c8a1d5f9ce0b9cc6af5dab7b6ac52fc34fd803d373c3dfd08/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/ea29651fa98d9a3d5376e0476c0199d50977460280044790647b2b45/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/baf5b7d14cc5e5512ed44d9cbbe6638688a5325d653f77bd3617fccd/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/5e651eda8bc544badbfdcd14bba4488b195c0cb582c91b64d6486411/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/51d90e7307d9fcbf806248d7fcbd816beb5a5ffdb18bcc45ee4e740c/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/067b4658c1315663b5585e4c1139f1ee406c8438b4979a5a78c974b1/000000_000000/0000/tree_5.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..d95dfceaf --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,13 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/18c72fde9fa16ba4aa1ba66aed16f6d922a6c4b4dcd78524753bc1e9/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/73769eccb13b229e3c1d84100f900734e7b60f76d90d779120872ca2/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/6c03b47cffb17c4ff4f95730fc931b66cd3b9fe62995f52865220c87/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/d63cc00b0292241766d2735d22076fb41b941448aa465a373778fa75/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/486f3d28842e96a3e2960d21ecaa46d135bc65e99825b388a1bec0e3/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/874f5ac81bc483b7638938384fd386e264b07f2b53a688442473d1f6/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/be4ea784323d2b4ec45694bff998e86255f15542580600489698240f/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/ddb428108123ae58afd2be0883f8efad3d3e19f32917ed6ea5df7976/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/6e0c22d61f74787845f0b43ad80f26a20fc8d2a0a2a28dfa55ac66b8/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/fb50c785aa71332159cf34ca2c09039af0646f8fafcd11f234e1e2a2/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/ce2dd64e1b1375a693175e935a00c37e945c2b7a6b5b38b836a7f6d0/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/b1ebdb4b8e6c40b328bc370b6a7842399eccfeac0bca77b9cba4ca18/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/b5372b30271ddcef061fcab04d3f73cc14f6bd111fb0cefa348900f0/000000_000000/0000/tree_12.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/Z1JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/Z1JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..78ebee9e6 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/Z1JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z1JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8/240d113c152d19bd2611344be10a462f7d349d9dca17aa423b04a65c/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..22d745420 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//127ed0bde6729c8c11466089425e9a1913afc72ad0ef54d8c623dd66/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..f520882a1 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//2dabb5c13bbe39bff0b24e411d02e4f022726580f7522ef5f43f00bb/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/Z1JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/Z1JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..31ba4edc0 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/Z1JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z1JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8/336d0c8c593d28abd881e1d2bd892b08fc814f989e93066b842a8b7f/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..5eb54bae0 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//ebe55a19d2f4967623b10c72f0bbd848781c00030fba0525cc01dc49/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/Z2JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/Z2JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..2bc4ae3bb --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/Z2JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8/0737f98fe897bcc6e36607f82b9332d1b30ecbe7afff77fc22d362f8/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..2f26c30a5 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9e228ca19712a2ae8f429d9975e0f26877e421be76a8a254f732b556/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/Z2JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/Z2JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..98ba4fedc --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/Z2JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8/70c7b7264dd50b28deae8480eb4c3bb08f6b21abf00edc1ecd696cbd/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZBJetsToNuNu_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZBJetsToNuNu_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..650ba0908 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZBJetsToNuNu_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZBJetsToNuNu_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/71d6f6076ee3d89fa89dde4c4cd6ab2cc6d16219f43e8fbe8371effe/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZBJetsToNuNu_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZBJetsToNuNu_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..90d734771 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZBJetsToNuNu_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZBJetsToNuNu_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/f62ff8b7568c265dfe6fca474eb206e6715851aeb3972dc8d9f68486/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..011558c41 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,5 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/c1e84caed1263f5265e9d3fed7d68f4ab7a58c16a8322c00bda74b4f/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/4d0932406c09893773ffeda1fd14259411732e848313de0d329da1c2/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/036f6be06d50ce64d3c919fa64ba3b079132d72869400040efc9a43b/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/e00334bcd6b0b2bc3463da1795f2a52b13071cd779ea3ad375ff6ece/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/035a08b6f7a37762c89e6587c65fb760f25d05d6c54fb3c988e6d208/000000_000000/0000/tree_4.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..3e62b2f84 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/ca5ce523e5ca11e82e663cc5b7ccf971f54cf48b23a23791f0359efa/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..4af4361a7 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/4fd82abd2b7da0e082a4745bc19d89a15d1db205b55107364e3276ed/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..02f5d440a --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/09c7ce5ab59662463422fc4f39709534ef66191a14481404eff659fd/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt new file mode 100644 index 000000000..8e2479a86 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-100To200_13TeV-madgraph/3df274b5eec776d84760be12ac2e75af7c82cba956b1d244ee4df490/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt new file mode 100644 index 000000000..c300436f2 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph/b641123de8f8a120e5ec7c280de494401065fbe6437965e14095ef7c/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt new file mode 100644 index 000000000..51708932d --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph/c9c29c39bd8742113407491e3e86476c214672a0e33d607bb1137b4f/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt new file mode 100644 index 000000000..b9280c2f2 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph/0a07af73ced9d16b16ec59eddb8d117a5e5ccaf5b5156b281afeb7ac/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt new file mode 100644 index 000000000..1f54eddf1 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph/e4d9f67770c24158dc120beb1f0145224d6b3a5551b634a6b830abe1/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt new file mode 100644 index 000000000..c4e00488f --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-600To800_13TeV-madgraph/da488d706084164521f7d71a5d6a5beb023d3e5baa7d917dded691c4/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt new file mode 100644 index 000000000..9b9aa293e --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-800To1200_13TeV-madgraph/8fd717d5ca900c9652e315a9f0ac01e42bb2ca5f44400619f7b545be/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..2ae7a007d --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,8 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/0fe98fd815cd0a79e9fa8b7b82aedaf71f8f71d9810c88b0fae83dcf/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/77456d8dccb35e085dc2db91e1896b43eb6d8514ee333e288bd7f5fd/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/51b38ce3172c9a850c1d236e94b27692c3281dedc31c4b368aab38b2/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/b9f70c930fd8c3bafea52c0ab5aad08dc2bb3da3f141e0173de2fc0a/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/7e2cbac206725bdd5ed29006448eda7e1c174a1c060574f5ec909c51/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/bc3cae2b58863b0f8de6c96b2d7a4e534c86aa4d63ea98467ba0d221/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/aa923da17a723f6e37ad785b015b8ac299b2b306d9a09f1896aea057/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/9bb680b6c09d6e65a46f52289e1cc7ddeb370e12efe7a846aca9c905/000000_000000/0000/tree_7.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..d7e300532 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,44 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/603e64ab55b9de31bcdd5056694ea445b157ff51f0ddc2e709354f72/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/9a6d0b240bf44541c7774f617afbcb6561afa9f8f60c327d4160ce0a/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/e297dc1cbff779b306a09b8d502d3efa1d36eb5d6af33f69805cc21b/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/fdbb1fd47dabc0775eebdfdc86017513b498acd6fa25f2f390ddbdb2/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/ddfd1c7465dfe7c35c06a3927045b13c628c3490df77791b831cc3b6/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/af29b1c57ea811ae0947369edd82874d7c0529c7682804077c25c62f/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/171b8e60b740b93173c1fc0c01ead6a9a7291e6ca58f1f8663594dee/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/f3b1146c0ad6f644f07e3baf4dc9e04c854f53b314dc85385e0f390f/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/688b4bff03284a1d66299479dfc227de3ef816ea8ca9e55815c79d33/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/5b5370b46f70791d2df5ace3a2c228b3a6741dae8b194c1b89b932fb/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/d86df58ead9beaf808afd780ee917a37b03e6ee9cf7750c81e060882/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/80b1a679673ad02dd97d0ff28b24be8bcaa940e8ba192f6a05421a21/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/b1390271e576f29d99a6c70979201fe219dfd1b8eab03f8140ef1417/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/504b4f0b2e10d2e559ed07a658bfa5ba01cf0cee78ad3b6ec840bea3/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/bb0b002f5f5d2c7b8eda829519c3bd25cc6cd01e0420660b7faa2697/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/6a45ef75991d1a0c215120866bbecc09ced3a582ca39590165f11f6a/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/5fc1fc684e083ddbc05ccdc9cf5c71a1f417d893bee5f1ccd3137252/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/ffdf72cfe65bdb7f87c8e28d3ffa9c612cea1b76768513f9b5c8b814/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/c1c8b55f22f72584e4fb5a446a8df197f02da390ebd4d25bf64fce66/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/51aa6293c2efdcb4935117bc3803f90d560bd24826dcf63d5042d537/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/a4afc49fbffcbb2361478817e12a9a2a2bd34d433374cdfcd7235803/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/3e0f53266f45a0824346e206b72ac9e274015b58b0b25ec619c9ea14/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/c141374037a5fd862c0ba7a3adaf8e5c149b6d8c437f097657551d4e/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/9fda548a3df797017c2ea03ca63114fac35bf673a4ea5e351232f8fa/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/e4ce047833c5961047c82e22731881e5e199c14a9cdcc12408cfd467/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/9d81d5f45e1490acdaa25f41a861ce1243a36e1ed9324e3afae86df5/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/5905cf57b04927fa206de8b1e85c9d6fec1a09b4fe0492428da8f3db/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/421d0a2560857f7acaddf1c7710d93df1ea544f7d470674954267704/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/da0985d6b3d78a3ccdee4972473823b06a0706afc97dede19f932f19/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/84b7434804dea7987296c192cfddf0208e609de843154b10b5f4c1f7/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/9daf6f972ca87f749e02637dd52308b998a0655c03896f50fc2bce25/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/62603dd653bffefeb51dbf775bd52bb87dae56b79d684c57152714a8/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/182eb6a988043f53dacfe36068cbe8c1a56c065a7616ba56c57357c8/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/14994949e6a986339c9128aaa1b7b6a749b8f8eea4d6968f863d20f3/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/1f7d10f456d79d40dcaf046371dd11dc73fc3cb20117c4579e694f38/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/e167dd924d7fc7ee6af4a41c578f4530d7974419faf8f8a79b3234db/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/d6b068912130d7023be648e9ecf92e2de696c6692af1f9204de4144a/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/f640d7f6ef3ffe2d7ade2036f2dd0f36574cfd5a7bd6d366052e50bb/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/48ba0b2b75dc021f44a482459816115f56736d55866c8006e93d5fde/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/8331ba3ebfd05d3593f40fa45a1630692986a0c9bfe5a50c1965e58d/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/e761a9eb012304c89915caa5f94ce4404d2ca6358cd555e5356a5439/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/80622ce61776d5dfb7628a651391f63756e0ca28a9fd9ac191c87632/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/30a33b989e3a1796293519a92fa9be9c237105ad2922818fc5d2cfde/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/b540a438d624ba1a8209374075788e528f8859c21a98ce983c5fcb23/000000_000000/0000/tree_43.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZZTo4L_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZZTo4L_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..5ccc977ae --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZZTo4L_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo4L_13TeV_powheg_pythia8/7931c93c5a5084c342a8289da4f12258df6284dc5faaf3cd0000ce64/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZZ_TuneCP5_13TeV-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZZ_TuneCP5_13TeV-pythia8.txt new file mode 100644 index 000000000..eb67284bf --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ZZ_TuneCP5_13TeV-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZ_TuneCP5_13TeV-pythia8/7621f70d03ed28e0d3f78eb4fc2fead2275323113895ce9a51e83bd4/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..1ffab3c05 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,5 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/de34b708eb7813b03171092bdd969954a8942f393b4edd609103944a/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/d438abf3a91db801d953eb15767ce47378de6797419ba0c38c05a9d2/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/f2bc38363f312af266e3c364bd0ff91bfb9679f3570f084b07457bc5/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/c55dbf572fa02a1508481a60cd79b7693ee037e2aafe10506e753a3c/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/2eb1ce63bed5f3fb43820aeca79ffdc6cb2f09b5269e952124867cbd/000000_000000/0000/tree_4.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Wlv2017/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..3a6f7a506 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Wlv2017/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/edf17d54b1eeb80b8764d16862a34c62d0146fabb534398b1e1b198e/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DY1JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DY1JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..b7b81568d --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DY1JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8/562c32b638a0e49aa3a464d7a03ca309460321dd55623d4ba4e94f45/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8/2451d6f9200dff115167b9f267c07997b1191aa02fd7da708cf21297/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..45cec0e93 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,101 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9634a0a7312243ba8e0e22f9b1347e636cd3f4657b5af77722034e6b/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0d5d4842de91aa6a016a9b1f25263d3d2f313cd1a34731a9650e8977/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a5d56c62a659823fe57bc46d73c521bbbbe87ef0e37efd111c791c76/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//dd0411677740194c65e1e0e7f67717fb7b965223228d8b298aba4ca6/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a89675014bdc51296018ad1b0fa13926515f07f46f97f009c80430b9/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0e6c1513101ba456ed0a4039bc4dd2fbd71bfbb2272070e2972a579e/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c87ed355b90deec164ac53f48b0eaa0a8d56b9e5fadd5892e767c74c/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//673cbf71f3696fc8613a266d810d59581187f08aaa1c9eb273222e74/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//15f061493d0167c62f609122873e1b856583f69a39ed8fe1e6cf8bba/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c4359a57cd08d697231e874f4e1998708f5b038ead0a5918ed4a524d/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0050e73c1457cb417e07aa77a3bb9f3b096667295f1119e465288597/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//efa069667c4cebdcfb88c3377df6d82ccf53cd2232e33663d918e4fc/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//464930da3be6abe2f5fbe22ef8ea2b85724a9be66f471f66e9adbe6e/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b04a0e89228e6aec8e92b58d2462083f1176409d31ee9b3e6ca15213/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a015bac0ce8e2aa371f29978c282cd38a32577876efc666dcb0bc90b/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//eb3caf4444fd9221bf50abe8ddedbc4a99884391e68210ee98dad523/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//46c2a1a02ca1e42a3b1d259e79e7a77a701d359ec32e0f974146f481/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9c533b15e1225cb5742c589335816e848bfebf36aa66ab0aa59f7c2e/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d53b221d8ced8982ba1ad081d4d142d717c6c522e1dd622e081aa749/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6ea7c93c91d435d18800d36221f8753223754da0518059c07f095431/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ba3d84285e9ee9d5450266a2669508713541082ae7b248ad60cc8c0f/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0a87f6d79b1bf287bcdb5dfb0d723b686524d95ac820b314036c007f/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e7db984bcb7327ff88764ff809147d1bef70e70ebfbd55d164497815/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c2667534996825a18e5815823829744f0c06184eb684836391c7ef7c/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a3a6dd3ffd06bc8a8cd09681944f2ae57b0f18528fb8c0a86e92c590/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ce9dbbb3ee8491ac8c33360ea726a80b628b2350990d6ac9549936a6/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0466caf07db1b8583125562fa7d3d5611c0138da020d6a51d6c6dd22/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d219ef9a32590a804d0959e5732229a9c98c685da65cea9af3eb4f28/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//be65e3868a30aadca125a9f23e2ae3dc9cf25463dd69190372552a1e/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4a17c4ccdbfe4c25ca11bf290cd1e10e801748a5ab34ea9a801d205c/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e0592d54909d43b94e758bfd32794330f0d081c26c5e8ad995b762b7/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//dbf9453fbff7de2da7612a50988563983b4c9fca5a61f2026e237f49/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//bb90fdd461a600d45d32ea5ae6fe9e42d739cf62104f912d15ed49b3/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9ed3b1448e27cc7a33402fefdcc8ca06676078c0390c94cf988427c7/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d35c1931f8f54bebdbc2841d626e81a0675f69aa39c489153cbd3164/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b9ddbbca03d141729470616db64dd00ea54ca2387ea294f6a0f4a56a/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3410c220be6d5c73fa50f2dccc76dbadfe42a2c70a6050e3b2fbd726/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//7aef2e5a5f90ddd96a082ba23898bc745f2cf50950e9c3628f62474c/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//160bcc07b39bbf4eee98e5f363173a9532fa7944092d586fd010fe8a/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//dc7db0129ae9bc24aa7f49a979bf6cee1ce15db7fc57ec57ea880a90/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//bdc19ba4aa0ca18dd33ca196a1da4f730906c7a13420fd4a68bbd709/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//218804968a40eaccc4097a17d03de18a9a7617ba6ad9437afa0428fc/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1dac3edffdbc81dd4ce668fecbf50d15c42c6a43322e0667b552e3d8/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4ac0caef2d418e697ca1746195f4cb29dd92883b156f561ecb087905/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//87783020aa1801d67bd7e84cabf3601aa45022b36bccb2a6dd822315/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9a03b6e9b9f4c59fc290beaeb556c39e8070b6fccc1297ed4220d36c/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//55286cf4a3214a21eb4035af4c8db5013515973ba1bad69d9bdff177/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f34bb0405d2f813716f4251d46372a5a5b28d1e2f8c7468d7c8e818c/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e4cf11e2d7f1dabce6195584ad584f5cc556da3f7da21f481afb741c/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ce0c790276aedede911151d99f3b085f634b698b470e6699dec5ab7e/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//76be5c7c45228ae218299077b2ffbdd44707ed8fd731c951f00e7e23/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//822b4bd6b994ec740d350f3dc0e16e763db1b972069559eda57cc68d/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6034b784cbe4cb10f35608022e832651d2fdd09cfc2c0850dbcf2ba7/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ec094c2fb30edf1fe74d975a47b89735892fa0dc9e928b4a4d31925a/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6f5c7902f94f3ed2d08af3946d089e93c59ac159df8b7aa81e5f8f3f/000000_000000/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2a7bc7b0e4c55d4bbeed6d379e29201c16366f8646caf4fabbab3c0c/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b1451cedba1cf30a7dbc216ce40d97da4a25747f2f244453e57ee338/000000_000000/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5cc2dd9ac2ae477938e435f4f5260a5b19a7471dd6d5aab7a0f319ad/000000_000000/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4c5453a59a682c3de20187b919825568232dbce4af773160acedb604/000000_000000/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//81e3f79daa8831e378b629db2f4c0a2998750f8742d0bc18764ae324/000000_000000/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c6dd85b6a79dd7ede65dab45e574cbb561e2468c40b8958e4ab42f62/000000_000000/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1e383682f4eb31d18d7fa9e46a64ce656207ab1ea4043fb73bbe0c09/000000_000000/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ef698b05292e05856806b529a3d6e3210c3e3aa5a8ee2d67950dd5ba/000000_000000/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//341cede8ceb687c8b05abe5c57c84d677a2379d60d6b33753e306c92/000000_000000/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//231a0fdb5d7a1df449a14cacbf7d86a6de6340717bfb945f61013221/000000_000000/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2e2d1e604fc70630eb23ac4037ae9941a875177b83b82363380aedd1/000000_000000/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e46d2517eae24fae9c0b5998109f939e1782c6f07a74e8f0cc7a1c72/000000_000000/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3d616588be271850ec44b4489300fa950b967685bf21de2a1340c2fb/000000_000000/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e4b2ad4725eb65f031e1c8c9182cead2bdb4570a4b737cc462c6409d/000000_000000/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a68168c89c318f45f53d45f0fa1bceef4feabc1072f8aefc5a75faca/000000_000000/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3d34d22ab7986417dea2801e30d39b992f20d4a2a56d39f8d6e0f4ed/000000_000000/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f173af81cb316f6ce0e8e8b3bc9f853a8051a1fc269954a0020ee830/000000_000000/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0f8db4b79082e400278a58df92e04a6b7f66878614fea156a976dd19/000000_000000/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4d0b957de028df77a5afb4a9f41b62cda482f073a848a291af33d1c6/000000_000000/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//abe9ea57b96357ad9eea4d9118a47927def78f2924adf964d7b0834c/000000_000000/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9eddd95b293c8c889e08ce9323c95065e29bda9653b689ac238329d6/000000_000000/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//93a377e5e6c16a32438a1e0dcfcb96700cb281621ae7052cf3af5263/000000_000000/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//35865c15dc4aa3c9ea4cec9624eaab1bf12bdad10cbd1b73a5ba1e51/000000_000000/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//14a3fe1cee4119cb9d265cfed1a526661cfcdc64eb396f3da674ae13/000000_000000/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//73532866df5fe6974457698330825b011e3bf39ce23ef90ea32c04cd/000000_000000/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b33d93c0b0e30f355ece600832611f8023de4952f74f4dcf9cf0940c/000000_000000/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6c68d44aeb724633e51689d86d47642cba00a899d796ce08b8386839/000000_000000/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ed234a55a87cbaa6a5c1959f9543df5a358eca4a1682c5ccfad670cd/000000_000000/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//bc8a1e777dc66929a66a50c3c1011b8e8678eb45e69d92783c2acdcb/000000_000000/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//276118ea8f4873314695dc9b312f88a3da72b10288bab401d2551601/000000_000000/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//fef5b7f6319c863ab7427a58678e7a8b6461c8b8d026d580ff5e084a/000000_000000/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f15363a73a80492d240f37ec8a7315d21ed895fc2317249a2ca1b9fd/000000_000000/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9014f02d676bb913a3d05add52b85fff3e60f75604e832b29af68c20/000000_000000/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//dde66c3d3eb880f9919ee33e8cd6c1e402e12ed227a1354837d30478/000000_000000/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//41c235791cd9de1177a9ba8b92dfb9738c54192286fa9f5408374b32/000000_000000/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1386bddb616db2da49b1cddde99a6e8d23cc0b19bee2ed7b40e7e0de/000000_000000/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3bb1cc1b50533c83c481583a6aa35f1dc176d9e4de4a6c53f657cb08/000000_000000/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//23d0531737c96fe108338aedc8c62709c6c53f3c0990374d06cce986/000000_000000/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c21de7b0fed84068d895eec2466b5c04a37dece27fc6b851bc019ce8/000000_000000/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//555b7d89d88eb44232a8352e74d9b6a38b3ff7355fbd84097d7f039b/000000_000000/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f053adf7ed26aea0c0fb10a12e784ab056ef0a3851046b52cfb5d852/000000_000000/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//cb91d5913b67a5b1b906ed18b36ae81695e19fcde03036882e5ad397/000000_000000/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f29b9c6dedba2e74f01ec9267ef95f7a0426b95e1f382a3a5628c25a/000000_000000/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4eaab70ff1b735fa4fabb9d6a7fa59b306024452ee9d5cd048853eb7/000000_000000/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//03115cd9216cd72701e9b73a1b05dc7caddb9308d001f1b8d6f8a747/000000_000000/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d7d79877240767772fbb0e3cecb4cf3c1f2d8fe4bef0acdc458ad83c/000000_000000/0000/tree_100.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DY1JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DY1JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..060b11ca9 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DY1JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8/ea85b5d3ac72ded6d2b245da6449fc5af4a7290d0c3fa569de153174/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8/b396a7580006ebaa100560724d84fe4e935ab52f1996cb2e3ef7970b/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DY1JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DY1JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..93253b7be --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DY1JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8/51c74c1bd66f4b876e81209c7e6afb595d95460193f13e1c9ba7c965/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8/21360c14947fde0c1b2937e4b73380b0e9ba6da951a9a603a731a151/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..dd67e26d1 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,11 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//1d9a7268bc87382a0e40645e66de2c0d8cc360f826da5a50cd87459f/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//8311d364716797a20bf68748392ee4f8edd071baf7e43bfe827b5315/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//d95dae51ce7da18080ea151568f8cee349793fa70932d86a6d1e7bfe/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//755aee649371c262dc3206f31a4184b49523ce28b2e000c683f054a5/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//8e5ac5cc7d643cc8809cea54babe6614a505c79ca7ba23b73534abdc/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//89fcd3055ba85444d26fa1a5c6a8815daceb26aee282f8d4ed41ad85/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//9c576fc5d43d1d7157caf0ef2be6b6cee6a21179b8e6ea9c4c6f8605/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//448612b1e96dcee1fd4c8516d57eeb8e937de517eeeb7561671e98c2/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//46880e5eb1d2e50bac37d3cfe0d42bc576c56a1ecc6adee660483c08/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//f0f12fd1c7bd44ab217c9c4dde25896c1e6f64b69eed2a99b472f87f/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//f7583acf78ce127c6ed980c33cc602d721903031cc2291fbf5a85406/000000_000000/0000/tree_10.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..cea73c10b --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,579 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0bb53994d1a40c4e2d7cae8133bf4aa462b039761d92d804c359db31/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//39d6ea45354fe28d20088bb0da2e9b31d22cb2339f87953c3d9d77d9/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//84f52e37b28e1b757ea366206c2aaf87c945440db58ff2d6097d10c0/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//17f8c88ea5f0f883b5137a5fa8554c83e3054d55a1cf29185f3b1a28/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//bd165df1d256e8ddbdf22a946fcd646683ab16ba4f7d346c5c34ed20/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d6b40d07e29a27304a48f7e2c8bc86cea01aba5208c23500044dc8a0/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5494a3ae17fa24b1cfd79a4abc1bc64f843a4c806482d15a8a625357/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//eb05a1288c58fcc77638f0678566963a2d825e8d9b5d43f55e10c2f4/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//bfdc6f3a5b0e86c0e2fe585209dddf30691d482da303606cda427821/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b8c86a69b7c46c645cfc77f91cc64723cff236fadc401edad52e8265/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ee8717a306b7132e358d9c10ebcef433dd80fefde338928b9dc487f2/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//fcdcc41e7f9ccf62fded80abb73e1577664e06dfc0e827661dc6cca8/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//73b3b69ec5e0d77d4b8ef78439528000f1e8321c33d4b44aa379ff72/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d836e997634bc61c0bb86b4816898d0e2542d414c8d2623b80cd1e5b/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//36d28347d5afaa467216f9f555eff6ecba793781cae284f87a672276/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//058734eac46aca9c825eb8d4cfe1826c1cc5df615ae26122ac7727c1/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//7943cccd519994f7822bea1dc6744bb905021b5c65a55eccf9d17a9b/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//05a5505f7063c50e6d831c66be4c6ab194ca0dc289e670ad76c2b4ce/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//25deed22b81c7dd5ac2a71d49a5b6c1096961ba30398c0d5af55633f/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b6a79e14db81cb372deaf6f38508cae06cfe94dfbc46642b685694d9/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6b02077ce05c6d1d04346201d64030e25fb5cf7c9614f43741e2bff8/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c21ecd430c44ad19c737850cbca3cd7b23517db79749486079e5dbf6/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//cbff870dc694b42d56bebce8e903d5f535f0f09d61949c8fbaa5c1d8/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//449c25b3b564b4ba3945f1528b5714f8e9c16614116611205029d6f7/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ff50bbbb52d6a1552820abc6c55c496fc490389c7c72a140ff824f89/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//25ddfb0e08facf09d3ba43469c4db732b8b7109beb372906fc480edf/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3ba85c69fcdd43982e6d4116cdcc057c607d3fa8bb0c8fe579e3f819/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//198ae1d57439cae38edbc6af38ed7c6c2770520e212c8f9382190748/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//792cd421ed2f1ffd959d1830f368abd567ba70e69c56880f96a70e55/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9039ce8d02706bd13673b86fa5e708d7694c81171de2fc6d3870fb32/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1582681978fa32b14ca400688d0e982bcdf78571b4119578a5122ce1/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f63dbc7aa3ce5416b04d2b7f75cf7e92edf777590a31b7285d8f1524/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//228c23e7a0b06d8be247082f9f3bdc65ab0969cc4b41d0b9d836b9f4/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e85e89c6265f78a1586d71836e1fccde8d2882da5aa2a30dd7f3ef0f/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//232f33f0c6da4e36e6c251f130542272d76fec23a24d77f63277c363/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//fa2406d64eeaf27fa4ca9e9bb7081a88d4cb763f6d23dec9494710fb/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//53ce84a1b3c3474c4157a7225e7796ee0b51a37bb083459af91b18c8/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e86aca206cbde317f62a394fbf87cc71fc4893948ed5726f3d0d3f09/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d004640744618c82ef14d47c4a6258781025fb9cb1810b4f93751ac3/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//87e804830ad938fef42a5e4c2ea0b4327de0f7ce558424f1c1fca71a/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//43187730d6103f1564c29cd15f98a42d2bccda58a4aa0ed02f19c7ad/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9e1d33b989e22e12b8bc30ea6c1fad3291cbba652f68a2c42dd73a14/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5601e98df2510a97d606960164e505d449ca122db18fb0ff0593be0d/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//73d48f52cb89b7cf0d5df4343d5f58bce2d8eb177e9b43f803048cdf/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5f1ddbc3faa490a7d705b8aa61fba8785e15ccbdc8bdf0858ec2c292/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a23c42e591545fa7111dcf8ca95b89ed7a1ef4072be62f0901dc0c1b/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//729b15e617abac0fe5d7838ece0ae50dbd3f04a5a39582c1b10d6714/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//cac967f8776cba227ad4aea324c9834eeb2ac0690a6e535075e1fb6e/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//449b78e6e190af8025a060483ba3bbce40c393c7265ce2dcbb6ff4c8/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a583c97773dc7415bb120fabf907769f7c4f98e36c3b445ebf845a43/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b9d230e6059de33efffd73f1f12f1854a1c14b37a56e0b2da7b90fbb/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9ad4f96b6beadfa67772cd1b069dd9724dcdbc3fb2176bfc63ccfa33/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a0a73ced7f4a5d23c0fc810f3d96096b70df29e05f824ac7e4923a77/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c5bd01feb7c1aa77364790ef70ae7c232e76f561531864d2dfb3331a/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//30915fee049b42dd3911d53f08e2697c0567c9ddff7caf33d3f57ab0/000000_000000/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4698cb447f94798ffb8286fc0e83e70a776c27a6bffcbc01e8027098/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6ef2ab01e931697d7b7363b675217ae820f1468f6b6894fa32fdc061/000000_000000/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c0bd20bd04fbb5f74c4d9977ccbd20af4d938e5110987acd49b8fb1e/000000_000000/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d9eaea5e84ba9c6497191c939d1e614eb379c81f9eea9e247cef0cc4/000000_000000/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ead88c08b22390844bedb1c946a7779b3bea886d1353d8db85109fad/000000_000000/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ff48d344eeeccf15485f4c9aacc55663b82d907166ed35ac6c9bb02e/000000_000000/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//8bbe3975b04e5b70cca70694c90b2710fa1741940c3662b83e8bbba0/000000_000000/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2ee3471a28228a1aee3b3c05f9a06fffcaa04ec7104d1c5e7763de9c/000000_000000/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//342da95e6c068a6df91e4b9584164d39c0ff5d025a9fe8cfd707e539/000000_000000/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//212aa2782e07a827dad520bec669e36594837bc063d843e4fb20ae00/000000_000000/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//acf29c1ed7ef2d97ce9591e60fa5d21d571bb5fe05ac37967dab53ec/000000_000000/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//16d0b0f89cfba18aa9044d4b02d628aecda48962c5e4be1ad8eac64f/000000_000000/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ba97de5e7122b808b9d533b850981d6121bd85f3491183ff45c70452/000000_000000/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//eedb983992d003dba2f509bc46b1f3d953076af436c60282d77cabdc/000000_000000/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a038102c3e45ca12f73a799c683295145016cce94c3a65e65ec65e9c/000000_000000/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//807078194cd424bbf696ccc3d40ea6f97a9a077748c336a53ed927a0/000000_000000/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//00be40fbc4da48aab3a0fc4cbfb05e1b42821c7fb264a9de732090dc/000000_000000/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//765cc2a73623d7ab422d09ad816c374d3057e6bd1f4488e4b355d65e/000000_000000/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//960f5b0689d14f57fd6c99f75022c700c70534fd324d950e1427ca90/000000_000000/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//729ad05c48a5eb96e25acd5824af41215c715e2eb55d968bce61bea0/000000_000000/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2c292aa24fa81383150c5b9569b4c313b4d8fd3979ea2f55e3584e79/000000_000000/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//fc31934d22737be68647f98a5aece4a6768b03c3258ac6569789d5ae/000000_000000/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//fe8724fe27940bc59ba48c03fce2ef795a170d1f2e488bb609928aae/000000_000000/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//53adaeab864ffb947cd235eae42146e13e154970766953a6c7063192/000000_000000/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//eaf36cfa6f358063fed0f4a66f50aac3dd939d1a0bd129a6a52305c5/000000_000000/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5d3094ae47df075c5f22d5c9c74edb4f332b947c24e78d892523a02a/000000_000000/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6b40d1ccca80b77d4e2d8a5471513a6e16f27d8790ef4b9859cbc3a8/000000_000000/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b36f030d99dfcf58af2cc6bf696fb2c6bd55bf144e18508ac900d8af/000000_000000/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//33e8be95c82ba7c24f97b05835353ed6e0450b909228243bbbe61a09/000000_000000/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d1f4a76aeab99e70746e236744ceeba83ff39d5e8016dc3e88b6a5e7/000000_000000/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//89e3f691ba40b0beb48b13793db9216da25f9d7ed881f7d088beaa8e/000000_000000/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2e470f3b801b3b82eb3d5062004bf1ad5d77f47a9aa7f6819d0846f7/000000_000000/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//946021990fe3c3ef685ebc6cd7e8602a9049e7a7d730c1b61b82073b/000000_000000/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4d0d2b2ba7e74cf949ef3084fe2ae74617bd5769b9f3f2237d4145a9/000000_000000/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//648a910bdbda74b4c7c1e0e78c40f6f3888fd6b2f8d5d0744b03989f/000000_000000/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5a956ca77b15a72b0d52431d61d4ca27db92dc54413d4f08c436406f/000000_000000/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ce1b7343ac622981d8ee2cec60df9290ef7d7b08abcf1b96712a142f/000000_000000/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2203160c5033ff305372cb2f518efe656d01e3c913b832e75c00ad04/000000_000000/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//8292b057f6790342649a4fa0d77e3e75a31ba590197f9282f1c27f14/000000_000000/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//8fd9ff8ca0bf5a558328d9539afa8031fc7d5cb916c9b05ced2a38de/000000_000000/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//560800925c132a615b48974cb8f76100ec5776c24cdd0fac2a6e19cc/000000_000000/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b7ca1b0c3494cf5f8979f7fd0159c50090bda1de5c06ec867b38372c/000000_000000/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b3964ba48d69174df200700b08caef46d9171cce6ad9b37c82ed9d2a/000000_000000/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//eee82f12467d4f7fd5ee430ca985281fbef2e511a9bedfff0a225637/000000_000000/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d88f3b01799b2309a46b9c6778d402e5eb29ec7a9c9a00bd421498b2/000000_000000/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f98d5ccadebd1f22e393b5d0e65ea372ce1ef0484bf0a1f569b1233f/000000_000000/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9eebc8a155ddc7a7324afbe9605f077109229a7194634ecf13940906/000000_000000/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//889b4f824422135083d4addc5551b15e237d6b4490d5a575ab877016/000000_000000/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//974954349cec1432e945d9c52d6eb5f3837af8cfc016990355ebc66c/000000_000000/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e7af8f7404960818ff05e85de818ef5c7d8e1a9447ab52626305ca8a/000000_000000/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//135cd6ba449feb496bc6cf7cbe830c37de95c7a5952d2832cf62c99d/000000_000000/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b4ff34b5de32682fdba57696eaa1ba193c77ebff0be54190b6f9865a/000000_000000/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a3148dd7a4ed88a557e305da5b3a95a7858d1820fdb5df3d299ce9db/000000_000000/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//10ff6d7b010b001127cf6d293732721a27c58c6f4e270eecc1d19eec/000000_000000/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//635e7651103663d0e423ec39a61b95c0563b0105fec9dbe50fd4f2e2/000000_000000/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//71c07933da294bdd32f14227b71f2bfd0cd0cc4fe7b152788f3000ec/000000_000000/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//942c95edcdcd683444f75e644e41994ae331bd3c2193f1f42070726c/000000_000000/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//54f98f2877df7f4f84ff5cad82a89026c92918bff29836a642e2ed92/000000_000000/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//90ec9434f49ba449a1e7b1c4d8e3ac94c9672516ef06b2e5222714a8/000000_000000/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a22e6695629a623b9a09e15a05dac967b49009afba936a41a200338e/000000_000000/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//38b3e9c8540f6c155a62bd555f1fdcf74d6f579dfd76d226ec91d809/000000_000000/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4b0f7791c689ab8a69751cad9a70be72c0ec6cb117b682dfe1c68551/000000_000000/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9455b435d9d402488b58df36e043ba14bf26de94f2f902a6001d9efc/000000_000000/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9450b5b4fb1ff6f83b3ace605706f1870540484901db417f449f582e/000000_000000/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9e434084e167a76287cf84f2831ebd45e0479233b2aba6b3601ae538/000000_000000/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//83b39a3e7dfe90b9523238711c0e6cd5240cadbb68d8b7efb84f8e74/000000_000000/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//115768d5fca67592e4e26e7690105e9e6f53e8fc5c86c02f897d92e6/000000_000000/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//011ecd2666cf69d7f4ce5274771b4bfacfb6598de972d086ac17550f/000000_000000/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//02a7007e27199ddf71b01359b0514ab744d2a816f1e01f39bf995bd7/000000_000000/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//79b4bab869e3c2aa7950f2eefca83357e45a08af2435d59d297c9411/000000_000000/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//743fb5d0f292c08f0c81b9f5484526f4ee9cf686f8a3d478bc39e2ec/000000_000000/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4814bc3e85689566155359ad6c12434b960d9be05b5d23adb55dbf07/000000_000000/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//02a7489d1378ea02669e5d21a30ab0f009d51efaa9dfbc37c82001f0/000000_000000/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1d848589d37588dbbf5391950b38cca1aa33c8daf69321feddf91187/000000_000000/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ec73059a29cf4f05db3df93312d810f8da541efd0d7dcb2aee632d6b/000000_000000/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//84eb01f3012888a0b797c776906a7db410419cffdabed75af5b6cf7e/000000_000000/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//be5feb9622056fd98dd96c4bd113d9099684bc66480bb2216e8eccfb/000000_000000/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1739d1158a55a7e8424c7a3193159c2a29a8648587148c0a8f4932c3/000000_000000/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3012c61257cbf0fd7ceb1bd541ab08c458f0eaf5e9e3cf1e1ce3b1cf/000000_000000/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f6151f9db6980d4c548da4cffd93cf8a9eb2e743a9738018b76b0bd2/000000_000000/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a72a10a7c8cf7e79f4101482f15710cca3e4eacc152621f8329b4b2b/000000_000000/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//cbb2253f31f05e4002a05e4b7737ce292759e1f9719e5dff2046ca2a/000000_000000/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4e10c843499871f0b19088869f4f2558cd1bfad5a3ba1e0b5d39c23e/000000_000000/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b25eaadb8df4eda407b491f25ce8d3052f9d2515f6c28c12e100a17c/000000_000000/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//26dac7c91ea27f9183ae4dfb64763762d6411d4a2e9ab49a36aeb2ee/000000_000000/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0fe3db9fa879013686f52bfed24327638c7d92171e2850d5ad13f194/000000_000000/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//aceb0ba9dd863ccc5ae88860d5836560ac0fb2c5081cdb7302542f38/000000_000000/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//045a7579eb04c5d283eada45d34d77710f212931cb0af0016cf253eb/000000_000000/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a4c9070c19772e3faa115d3c154bc4aec9c508f1ee4576cfae7c4c11/000000_000000/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9e12ef741c891f7903379ef194ada882c4613efdb4de29749b689860/000000_000000/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3b5c3a25dcc1469618816aeb34d1ccaded9b9252d9d08c5abe382ba9/000000_000000/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e92b78fe87fe6d2a0e7062afdc4b85ec27a9c379dc53094293f94e31/000000_000000/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a19ec7912a30674b23a6a26fa24e736df3334e8ab09a0b9d2765899e/000000_000000/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d282fddb882bc312f8c1f6a2a18b20275ecfee412a5a671aae80d698/000000_000000/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//24c25ed416b00cbefcb673013539c783d8d5cb85e514d0cd601f13d1/000000_000000/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9e0c6ccc06ffdc2704b828e0929382cc8f4a7b74e761f405c3e34330/000000_000000/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//46eda21f00d92690809a9f64a1af9e1ef2e5d7efe5358b1b8192e3b1/000000_000000/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ae1b29ebffe53c93ef6be2f08cab2c933071a8131982c9693cddfbe9/000000_000000/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b6061815926454b071559d32de484e489d6bf9e9640e78e557034649/000000_000000/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//bac5be3f4af1b5e2a19d811d6be7bb03ca2276a14509613e0fc3cfe2/000000_000000/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//155feff542e4f4e32d47a242a003d59fece653cceb4bd78fa7e3d49f/000000_000000/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//fabbe3b0c9688c41e72fbb82e126198059db0b6391f0551d48d6b1fa/000000_000000/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//350174cc7e04fe32b854ad05d8944a8349a9efe15d62c1d1e949f426/000000_000000/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//32f79ad9d32351ddb6e70ec30f3d075afb5f851d595b0feb0eb20d51/000000_000000/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//26221bac3e925590a36f4b6c24655d17d0d7dfa12459b3083d53a9e2/000000_000000/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3ac7457681b9c0740856d03a725e877a704689a6d847d4fb51eac5d0/000000_000000/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b80bafbc3cd8b3fca96451bbcde3da12dc24e7eff9a43ee3d5c227bf/000000_000000/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c132cccc23dba8f1cc3ebd4889bb2926d6c59cf85175edab0edf5ac0/000000_000000/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0e30bf52e2e53e9890c6878bd1e8468397e0bc5bf701bb87135a9851/000000_000000/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ff2cb1f935f527e5456f5e7c26a9798fb253f1dc35ef9757775d5033/000000_000000/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d0f39c8014ac5ec8365522bbf817cdd921e40397d4a9f6df6e20aefe/000000_000000/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b6429feb6a5f93c23732fa09458d37d8f9c20e41660942ebdf137e65/000000_000000/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//88b6815b39fcc7faf5086b3b9faa25e7b13c23aac74321fb64f86e03/000000_000000/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2a5570ff156854f58f419e08b71d807ea30be4389a4f5350a5845e99/000000_000000/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//089f7334a2053992a63908ca47748c7beb2129832c74921abbbac56d/000000_000000/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//06897d53ae17a7dc1d99aa756ce87a67eaa753d8b6a839930b66d340/000000_000000/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d7d75177b3fd9bfd4c03d8d8b8e369de3378fb33693c3ce7047232ec/000000_000000/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//26ef084c3e0066ba2937fa44613118eb8d39b993aa70e61a564bc3a6/000000_000000/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0f818561e241dd3584a602ecebd01354419993d82bdb7f98f9be52ae/000000_000000/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b21e88efed867a00d430a3dceea146afa6a21491968dc5f506dcbd5c/000000_000000/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//62ccb3b228f07af0e94d7f9fe7c64aef4db7deb4d8cea5a3386e52e8/000000_000000/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//224e6a272e568e96cd1e20418ef6493e6fcf3b3a6825f7d6c29ec293/000000_000000/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//46814ba5c0c9bd410f007355db5384988b032a1c743d1510224c4f07/000000_000000/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//cbb902fbca60d4d96f0f33dc958643238c3bc802d97cc04fe3a002dc/000000_000000/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e8928c481b9c4670653defdd1cfea29942f62110ad7c1b5376efb69d/000000_000000/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//66e6f45623040963dd587b6e5936a70bce80805072592db16131b47e/000000_000000/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//8cc6c20615d9b0d55e8db521dc3c188e6af4f1ace053ce8617bd584e/000000_000000/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6117505809683ef3fefa8ebad56c875edc106d639f182282b01c937a/000000_000000/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0f5d45123b9d5f3fb11aeb0b06a2cfe6b48aa35337aaa6b6843ec095/000000_000000/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//86fea98516064a5f50ab183445dd5598ad461b69b02d9301df30d1d4/000000_000000/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//dff1f508bec567eb63722013787518c79ea8d6a17fc652ec71423e00/000000_000000/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a47b7bfd28a88383a7af86f5e24cde59ee2f3a38043e094c790fb641/000000_000000/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f2fb8e8c2257f780f201ac8903d5fb84dc819d240d8339a5d7448711/000000_000000/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0abc7d8e7ceb5a8b83386f286373f38f3783ad0a2236e173ec3beea2/000000_000000/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1d29473ffa120182506e8aba64397ca4f76b2b5f0033d86b4c67b2c5/000000_000000/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//bcf2c1f7837e2c008d0c4963b71392c65617713abca45360f022c9f7/000000_000000/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//13ef6bdc949f9bdb539dc6e675d8d4f1e51c51d318aed8720d506d44/000000_000000/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//efb3a3051c8cc2c775aef5f4c6d4a93b8c22854bcb0eef2eba8fb8b4/000000_000000/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//cb71c920821351ba294054c4b869ecd80a3869f80fd3c96e6ce0a185/000000_000000/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3a004a772b58adb1df76a647bfeb5a309366323b5720a0477e1b675a/000000_000000/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4d7b48a8db6e5afe666e6af4e4365737eab7b77e8544f681b3540931/000000_000000/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//06e9e986424112e889899c0fb4802fe48ed872c348fa0e4593b41ab2/000000_000000/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//59f3671e3e30523f2f59d9dd14993516f154074d436104bd7e28c625/000000_000000/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//bb5f1b1feeae6a43d2ad18d3446590733e8d5ddec467161628d22601/000000_000000/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//03441ac1545ce436b2ce74cc77bf627deb4f34503e3421a85ed64688/000000_000000/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//608a2ba0cc6182da31cc23695c33dca3c4d78f4d8a834bb38b6b9c86/000000_000000/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4fc7ef88f04078468d5d31123fc19b1b2617aab8728ed2c2cb95135d/000000_000000/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//df312c4be8cbd445f71ff5d35bd2b450d29bfc36ca14ee64f7b74d4d/000000_000000/0000/tree_202.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//fb57faf39a86f0a30049acde94972b9eb07f3bd965a21c788294bf61/000000_000000/0000/tree_203.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5e6da6a0102c68c57d7c3ccc710fca53f6e4dfb5c150bcad6a28b760/000000_000000/0000/tree_204.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9b07622251c0a019c01173520a46b973fcaa2502570e6292b75821e5/000000_000000/0000/tree_205.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d0398153ac6040ab39b997e904e3276a8540b11acfb761a934ce5a4b/000000_000000/0000/tree_206.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b420cb84c7be297e57a0753f7db0fe973565ae2e88eecff197ee0d43/000000_000000/0000/tree_207.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a79949728c49aaafbb086ade4b329a2da7477d1a54294a0fbc6ec377/000000_000000/0000/tree_208.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//67aedf90cd926d78e41299743e59ac91932e18fe1665b633d73b2fc7/000000_000000/0000/tree_209.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a9a7bc5b05aac617bfd8d077197837395937249a1882065d77f1874e/000000_000000/0000/tree_210.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d857cfa7c09bd8d1298ecd276e8f65d1347d9718ba29cb188ef054be/000000_000000/0000/tree_211.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c987a4fc0ee64605de0de2449babe41e2031f755b80826226a2620d8/000000_000000/0000/tree_212.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3848d85967c6d1747748ce2f4e77f6b635ad04c484b36d6bf1ece27f/000000_000000/0000/tree_213.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5e3e99326613d5710b939f4dfa18de809faea091eadab4191a658827/000000_000000/0000/tree_214.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0045d69283bdbcb5a61b236a89aca89f5e923cff7e7901bd7f5d9db0/000000_000000/0000/tree_215.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0b12f9856d373d62f036bf6fa8914ab5a7a29345219e31fe54e2b862/000000_000000/0000/tree_216.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//77d98e6ed4bc58aca1a0cb623d81af8ad27688328e9e1221d7908475/000000_000000/0000/tree_217.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//56b841c4989809b97c91c4284f4fb27d2fdb835af47897a35afb2658/000000_000000/0000/tree_218.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//af00ac4c2ea015cddb9682e5766a74576f6f9193a65e816c9436a1cf/000000_000000/0000/tree_219.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//73bf7546ba6a13bbac4777647573a22b83f297959c92cb9c1d79ab25/000000_000000/0000/tree_220.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//644841a0f8f30ccdbaa7b101e66c29b0553436c5a3020e3bd7e1cc78/000000_000000/0000/tree_221.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2946d1bfeb8bddcac17e43f862cfcb15ccb15942d872f4892c6325eb/000000_000000/0000/tree_222.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0f69996772aba6a1fb15ef34d665e02606a1a884f5434ee88d450c3f/000000_000000/0000/tree_223.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1b54e7a71e2799766feadfeccd748cce6715f261e8353e9f6b48a007/000000_000000/0000/tree_224.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3e7744911e5ee422453a87af05ca7953ef3052b737602145b9fad180/000000_000000/0000/tree_225.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9c40ec59f1675589775f8cd2449f91b94745f3f8eb17200f92a158fc/000000_000000/0000/tree_226.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//800c06c34ecbc1689e12ad1aadd772f278595a0c9df476be6db40b07/000000_000000/0000/tree_227.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5f217620a47a8ddebddf7a8ffae3cd8e8df674ddcc3e3d6e65ef312c/000000_000000/0000/tree_228.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2dd764f3080d48853c0e4130665dd19c3e018ff52d5f452bf6b0ce96/000000_000000/0000/tree_229.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//335abce875e5bb0b310f20d59e4331328274abde20ddec38c683c222/000000_000000/0000/tree_230.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//12d0d55eab76499047a388b2892ed49112dfc99308717b72cbb27e7c/000000_000000/0000/tree_231.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f61ca8e9a0a187c19c692804285c53427f121d5a43784fa1e76f695a/000000_000000/0000/tree_232.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//780488560b46944be68dee067f6e024ce9d2b19e106c9463fae77a89/000000_000000/0000/tree_233.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//47185df7b668c364b1a0499334887e159df62ec2966cf15b48232255/000000_000000/0000/tree_234.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//fd4a8b506aada860cc858171239862a9b1eec58f0144cea18936a7cc/000000_000000/0000/tree_235.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5d9a1d41da36b931170302ab87669e3f41385032eff94a0b97b7b259/000000_000000/0000/tree_236.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//288ac93cd6ff29c45ba78d8e902d376dcdc1079b5b4a6046a2984b96/000000_000000/0000/tree_237.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d6aa047e4501d503c5e2c4e65f95cc9df7fe67906591a2f13819d6cd/000000_000000/0000/tree_238.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b92dbc28e80fedac0aae8332efd0d3c2476fe362626e22c96c5e5933/000000_000000/0000/tree_239.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//dd2e82363529a21c06684c882f0ad8b5afaff76a816f03d52139145f/000000_000000/0000/tree_240.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2e4c5f111da0f3ea1bae5f4fa1aea73e66dae570db1beb0bbf0e01e9/000000_000000/0000/tree_241.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e985566297b700f1f99460439948baad52f8cd2606f315099fafa080/000000_000000/0000/tree_242.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4973ba05b1c5344356cdeb349d8883cc9bffed8d4738f327b061513c/000000_000000/0000/tree_243.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//91e1e3c96b2f087cbb848a4069e20d879f2e6e024cd64d8f69b803f5/000000_000000/0000/tree_244.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//00ac02f7d6530ad97d83ec4fd98f0cf9c61258af736347fc4de2b7e0/000000_000000/0000/tree_245.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e61959cf54c271943aa16f6df567f196a5b8dbf287fa04d5680fee47/000000_000000/0000/tree_246.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//15916013f8d6efcd5f9c86786d61b16aaf4f1d55661c3f4fa2cdd847/000000_000000/0000/tree_247.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//20386ae6568e36e0d638168b2df13618ffd7bfd154838f9d446ef56c/000000_000000/0000/tree_248.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//7926925db8b39bb8f61fd5666b5073d1a19cb52a4e373faca0131974/000000_000000/0000/tree_249.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d17a7d8c3086fa4a83ae8b4e5fef82631880f4661b052f57c7ffee91/000000_000000/0000/tree_250.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//74b5a7fe3e5d2c714b1a8670f475409f100b82a79cb623b355715a15/000000_000000/0000/tree_251.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//35c10ca3b3d1bb3f9ad542bcff46df1123782fed44f7e31de22afa24/000000_000000/0000/tree_252.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1b3056c0c9e14ce54223bdbd3c6d92054fbbd55e8bfc79c462d0114d/000000_000000/0000/tree_253.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//7b1b01d907f2eebebce22e984d918ad355d82cf486cf00c7e9b7e218/000000_000000/0000/tree_254.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2d57200163ecf85c8d5d591cfbc6c9e20547cdd7bc730872983756a7/000000_000000/0000/tree_255.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//176b1b121a0e37ddec9a5bec369e03a3889cc700f16ec97995849318/000000_000000/0000/tree_256.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//bb5cbf578ad902c721432122c416108e75a282d1d1e96b1473d6671a/000000_000000/0000/tree_257.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3bb53018cba07d90b6a822de65dab89506d1460e79536f08dd96eb8a/000000_000000/0000/tree_258.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d70355a0c2f3b79dfd326fa3da38c646603dbe3278c15d2c0bf7f7aa/000000_000000/0000/tree_259.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//405b368920893a242a9dfd5310768685c99b295ac6c3c4761b8af08b/000000_000000/0000/tree_260.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//46a60273c5839c43ba9be473b0e8fea2f76687587cf230785d4064a3/000000_000000/0000/tree_261.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2a92ffb2fc251fd8fd039c851dc0948a7beb7ea30d537a0fcaa17f3c/000000_000000/0000/tree_262.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//38326cec4c3ffe122bf8c0122bb710a9b23863424df9b34c0800ab13/000000_000000/0000/tree_263.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//8f8207a5c9d4c4d579d72ba437012bd260c73d6b7ba4fbaa85d64e14/000000_000000/0000/tree_264.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//83d8064dc011f25066fdf4a7bae83fedf10c770fd6693cd1a71d6dd3/000000_000000/0000/tree_265.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//859a227485c47dc90b39b423dd22def5eec5a318dcadbd0b66bc6a6d/000000_000000/0000/tree_266.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2731990ac3221f987c9652affa381c6a25d9d733b9150bb6d2463e8c/000000_000000/0000/tree_267.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//99ad890e89bdda728cf740012b017ddad93deaf2fe809570435f996c/000000_000000/0000/tree_268.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a215b9186792be3507e65d4692f636cc2450baeee3632272305ac99e/000000_000000/0000/tree_269.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c5da7e292afd451679df585a3ee996f01605a70ab70647681f23a369/000000_000000/0000/tree_270.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//db2a6a3dbbe52a12f4d220024f153d7bf556a8ec7e311b2a17df6053/000000_000000/0000/tree_271.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1b465debeb58ea8cb0de804b8a7ba435cb6f0a176f7cc9cd35b503d1/000000_000000/0000/tree_272.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//7d2f14b409683062fb4b141a49fd8303d70e9e8116be9b82f2dd76c8/000000_000000/0000/tree_273.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//21971cb0fbf60226b8ddd7943ef68b1c10a4b6a9567e716189ce8057/000000_000000/0000/tree_274.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//29efd063d42a1d1f8b451161cc78537a74adf82fa51077cff7f76f8f/000000_000000/0000/tree_275.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//765315e9e17018409ac1f42b5de322ee3dafe640c886b75cc00551f2/000000_000000/0000/tree_276.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9ebebb117965ca244b33122dc9a2acdbcf60d7e1e1821b0c5101c82c/000000_000000/0000/tree_277.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a7d3fa02482af3e94de41dcab862c7b8c0169a5ee492a734ac94d71b/000000_000000/0000/tree_278.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//86dd55f566ef072fe9714baaaddc016cb19694aa6c805a81d340bc8c/000000_000000/0000/tree_279.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//8bfdfd7f83d641b69b44854e60d38a91b89f8c731467b7343812ca56/000000_000000/0000/tree_280.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d154a172f6d2c5a3db5c4e545cb09f5693f713b461dde4ddd01adb99/000000_000000/0000/tree_281.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a2f20ffe2a7968cdbaa1a7f7110cbbb3b40d4e58a5e68918d78b3c0d/000000_000000/0000/tree_282.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4332802563f5c7536f38744bb04343d9e1fa3cf56191a93e4d8aa3b8/000000_000000/0000/tree_283.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0e6884b315506f47e1b1c3d276c9c14decc062f403c687980f7fce9d/000000_000000/0000/tree_284.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//da1ef7a8a0b14c0782606be633e66c59fe714a48c2b45f705c62983b/000000_000000/0000/tree_285.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//103822ef9b4ecaaec455fb3c35a6ced3f76da87fac0e2775015310f9/000000_000000/0000/tree_286.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//73a9f9247f5329354394cbff8ad0d2cee372a29f7e440d6121329145/000000_000000/0000/tree_287.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//8a0c131a534ebdd2e2225ddac3092ff5f68bcdf95c51a0c99c52cce9/000000_000000/0000/tree_288.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//be5681fca8702789ff6feb19f6abe656d637d05dc7920cbdac4f84c6/000000_000000/0000/tree_289.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//06e37f7e087f541e9559a8f64faca9af6a062773ff832fa7b460fe76/000000_000000/0000/tree_290.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//003a96cb5591d510652e1995f0803e633db86467a4e976207f072ad2/000000_000000/0000/tree_291.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5c98ec3bb1a21e82dacdc3de307fb03dd1f90694124aaf678c72cd0b/000000_000000/0000/tree_292.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c5a160350b8e700c9c01ed1771f126e8cbe28625bbb79435edd0287e/000000_000000/0000/tree_293.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//bd4149f056d656ff03cd502149474fc4768a6cacb5eedcfb88a2fa9d/000000_000000/0000/tree_294.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5176c7299f5b07b5db00141b9db0fc60ad2d513c7f0efef81534550f/000000_000000/0000/tree_295.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//fc781cc9543091bf16a9e12b5541607976df74504ae62fa202e5f588/000000_000000/0000/tree_296.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ae67dba09fc0caf3828cc2e28d21da23bc9a9fffc8b71739779a75dc/000000_000000/0000/tree_297.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0cb5f4c49f67d169352a6baa8bb0f863347ae9ae84981f4519ab4c67/000000_000000/0000/tree_298.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//69b63a0b487dca7cad2c133914c9eacc0cde8ffe553b427feb73cdd6/000000_000000/0000/tree_299.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d74910444b58253dbe4042a23334803c8ef7ae0a18c25f16c5cb52b6/000000_000000/0000/tree_300.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e538f96b7dabe14ea2017fc353fa570c707acad404848db20dc26290/000000_000000/0000/tree_301.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e5bcf86bb6d00a5072956383d5ef20b8752ffe448ec38b1c4b0b372d/000000_000000/0000/tree_302.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5e5dfba82756c398af6a70866fc1f7e2c0f623c04633fdd9fddc4fc2/000000_000000/0000/tree_303.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9086b8eee1882a169c8d0cd6110cf976494a9d7248ac773dc31ea04c/000000_000000/0000/tree_304.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//da527f9416df8093ccbd2ee639189001071ca05dc6117dcda74eb7f8/000000_000000/0000/tree_305.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//754bf141e88f92d244a10ce14b87c248fc94be08d6091caefdd72e93/000000_000000/0000/tree_306.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//bfd33531550e1c6821fe61327fbce010dbb57467fe6331446746a8c9/000000_000000/0000/tree_307.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//50a923dc6d5a025cfa885697ce6b4372852f953413cac008d396282b/000000_000000/0000/tree_308.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//8840243f0290295db265aa64bfb59259c97e0c1c57ec9168db6c0657/000000_000000/0000/tree_309.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//732c9cde744218fc2a2b576fbf9031bae97320b99e9590efe9e17147/000000_000000/0000/tree_310.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0cddc4448db31dcf8390c23ef7174453d34256770a03c79807fa35c6/000000_000000/0000/tree_311.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//eeff53d91de12097b9c8f220995de78d05adbbcab7986aea0b9d77ca/000000_000000/0000/tree_312.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6c59c6adf8fb8ddf53cb217656c619370ce888deb5cc52fcc8eabb29/000000_000000/0000/tree_313.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d4b3537f436e8b0b81cdb598b4634cdd8978427cc1070d1250fbc304/000000_000000/0000/tree_314.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//47d3f987ba7abbd9736fb032cd367095b99931db580c06a8749070ca/000000_000000/0000/tree_315.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//63cd4f5f01e382bd9a0e6bff740cc879cc3ad85746c9acd7052d1565/000000_000000/0000/tree_316.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b747e3adc3b9347b7899f387d7073992b8f456f405fc9164916e84c2/000000_000000/0000/tree_317.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//200520d81ae7f9e4edb756d65de9114680aede53c84bcbb962f9e09e/000000_000000/0000/tree_318.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//8d14996fb012d146a75ac297ff8d85b75def13f5e0fbbf40b132fcd0/000000_000000/0000/tree_319.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5bd105526e0f8fc91382819a3c11edd9e9d6f050e8fedc9f7eb95639/000000_000000/0000/tree_320.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ff97b87b6609a523a390deaa5c21546254913306ae53cabb08d58232/000000_000000/0000/tree_321.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//876cf9429ccf7d095e2fd3ffb7fb1c6dced1b751ed9308ed43980708/000000_000000/0000/tree_322.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//dbba548fb862fc6f4b07ef1d535a1dcbd9af8bb7382aebe36b5970d5/000000_000000/0000/tree_323.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//03521481d877acdebd7a0fbd06dbf24f71dc5be4505827526a615782/000000_000000/0000/tree_324.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//60714c049cdd070556dd9858d437ba07213a805d4c8deab5ee94300e/000000_000000/0000/tree_325.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0d24b09c0b937aa12dd3af11c12898e616dd373370640b956d06867d/000000_000000/0000/tree_326.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5ad3ba5b74c4f2c21fe5f2e449ea7feb7b7d3be25ea317c1b378de86/000000_000000/0000/tree_327.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9b85803c29abd72f656db4facfc9bfcb6c92929d57cd75e2b23c2f89/000000_000000/0000/tree_328.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//027067ab0c1b1326ebdda28493420d9340b412cd58974ca0e23c9e2d/000000_000000/0000/tree_329.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9443485688cdd290c4032e58578ddfb49f25c1f85a6169c670c8dc9c/000000_000000/0000/tree_330.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b99f15875b989b8afb568ec81288f29651fb70d50b8dd8aabf564b0b/000000_000000/0000/tree_331.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//fbc02f18d74fe23e5ae6fcfbe331bcf5fe9fb1d27063c1518bf3d28f/000000_000000/0000/tree_332.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//7554aace58ad41ed4b7b4d0ecc7d4406e529973efca21cce402f7b66/000000_000000/0000/tree_333.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c3cd65564763a85b18066631f3cba7bc12b92c07564ec9355cdef8ee/000000_000000/0000/tree_334.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6e70264d545d51dc389694458aa0f287c6ca3f5046515593ed5460a2/000000_000000/0000/tree_335.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d9c8316210cca41853ef0963caba7be0ad3b662e3edeea0877ecef49/000000_000000/0000/tree_336.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1a5a7db9a5b9e422102718d7cfd4ad381d32c3a896b4372f61a3156e/000000_000000/0000/tree_337.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//674b6bd2de9cb2a4bfb510ca53cb17a4603a0e2b778982b9807af61e/000000_000000/0000/tree_338.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//99df805d734f1ca74b3c2f865faa4f0349482655543ab2b5852bdc44/000000_000000/0000/tree_339.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//498687de411da4daa449bb982af2803219d1c908d9729b80403bf124/000000_000000/0000/tree_340.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9f9aa465564ac2dab3e3840cc35c2110e3d7101b00c9f339ea2764f4/000000_000000/0000/tree_341.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//8f1aa4ae10504076e29eb2f240450ad921663de24ee8597442d1d7f9/000000_000000/0000/tree_342.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//8c1c6a759905d09fb99600565fbf785dcb839db98877aff8f5fe736d/000000_000000/0000/tree_343.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//44bdef2af51d5c9ea142410fe90c1cc4e6459efd9323467c5e76db8f/000000_000000/0000/tree_344.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c91c425911735ed6b49f2f22dec6290b4a79fc319983269b99d6490d/000000_000000/0000/tree_345.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//be206014840ff0a812949e0c5fabc37a5b7aa6476629f00de5112936/000000_000000/0000/tree_346.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//54dd72f68ddf5fd63b4d7ad251d385cb61bbde0c1c210e7b8c4d988f/000000_000000/0000/tree_347.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//bd727987febc582e62ba3221ff4d0059752bc819203950d6120d1637/000000_000000/0000/tree_348.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0164d082ff6e3ef49d92f847d68af6471b4b2285ed92b58b9a553fa1/000000_000000/0000/tree_349.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//443f9e42a052762ffab8259a26339c39ace0e387323b3944b6d12f55/000000_000000/0000/tree_350.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f04da5955dff35c168ac5f253c7aca512c799daf5c76c77be2772958/000000_000000/0000/tree_351.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d9edd2eec7cfa8daa995c8cd193cae9577e64f63e29acab1fcbd28c7/000000_000000/0000/tree_352.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//449de53970b9e67db7cb272b914b53c4523c4edd940e1d5342659656/000000_000000/0000/tree_353.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9baec8ada1b5d79da4a361cbc36b80b3aa8e9354311ff97fbea57397/000000_000000/0000/tree_354.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//50ce59a848a5f15d93d14656a2135f241fc4c28d7cc4399ebf66a374/000000_000000/0000/tree_355.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2c22c6328d72082809bf1748a9fbb7ab652ff0b98b15533605a650af/000000_000000/0000/tree_356.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f0b45c0ced368bb4ea04ac0f0ad748c7e09e770188ac48a33212d137/000000_000000/0000/tree_357.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//7183cc91633e5c55c0f9cb4380d702ece6e755b753f14fbfe77b73d6/000000_000000/0000/tree_358.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e97720c03dabaedc13dc29f4ff1ad60946653632719d971b61596c36/000000_000000/0000/tree_359.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4288ef19ba710db233272ef3a9d634f76eabdf108f077e274f28640c/000000_000000/0000/tree_360.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b06b07d518cda0c6676413b2937be150ef81ec0c0cf5122edfed85bc/000000_000000/0000/tree_361.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1465bf38593bb09d46ddf655e2086d540094a1ec6f00da155288101a/000000_000000/0000/tree_362.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//14460b65f6f3ceab4f61a5a3f36c4a723706caabe546c7b5d9e7b1be/000000_000000/0000/tree_363.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//39c29731768ed2e151d5e05ff661b8688e203fd20b9f66fb87726a90/000000_000000/0000/tree_364.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//76b5a2d3a5d87e5142473d165fc254f9081d09487f7660619cb1e893/000000_000000/0000/tree_365.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0154c7a72578c6dd6358a37cabc7f3537203ca16551dc369e37fcd91/000000_000000/0000/tree_366.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4cc3afce1740f154acc4d6d054276b68d7e82c685faf12b51918bf5e/000000_000000/0000/tree_367.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//bccf93077b5319a43c720b39fc02d76a92a6c47cdb766735100d9306/000000_000000/0000/tree_368.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//21f6bbf78222208f1dc3ded701b0f24d21b2262591a0c761324a2e48/000000_000000/0000/tree_369.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9b1cc26085023a3be7896324c2850d05703561a4693a8dfc63db6bb0/000000_000000/0000/tree_370.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f757e23bca8224719e7a334156351c6755d6c074576eda1176b327ef/000000_000000/0000/tree_371.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c79491097e812daf84168f9d96a07955cebec6254c1a04448471b7d2/000000_000000/0000/tree_372.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//aa18e11b44a78e4b52433c71c6a7c245f7cd71ad05174b82ad424c9d/000000_000000/0000/tree_373.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a1e53979748a95c14e6ea6c26ec2d25db193a01fd0988dd2d0f7f31e/000000_000000/0000/tree_374.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//78f3dbca698c8cec50a65d2bf1d90cb6ee2836b6efe8847e09b93bcc/000000_000000/0000/tree_375.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2a64b8f60c0c5ae1807aafa8d1802908f9cb71c32530503f7d78d52d/000000_000000/0000/tree_376.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//7dfa61f4dbf53066bd6f0622a9f91a84b564227fb85dff6860cf64df/000000_000000/0000/tree_377.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4c5576271accfd5b1d7107178f4a65be0023c2fab560a0f5855e526b/000000_000000/0000/tree_378.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5c5f2c6669696dd81002c63033f88a1fc79d77c0645d4d53a9c285b5/000000_000000/0000/tree_379.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e55e6215b8de12b53ce99371cc0615dbaa7a2106d8d984bd73c01174/000000_000000/0000/tree_380.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6bb9a0398ef1ea51d328db7cc12e87d5b4f3bf794a05ef18817431b2/000000_000000/0000/tree_381.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0ba6f1a1d709b6a98a0158612bb88aa683949aa92ffb41beec33127f/000000_000000/0000/tree_382.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//49513bb706bdf8deab260d7e6f73ca4e419efe5bfe6a02d0584d4133/000000_000000/0000/tree_383.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5e44a63175a34f3b073ba42027a81a239d6bc56aa862e9e5970bb512/000000_000000/0000/tree_384.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//615477b01dfb5257bd718634fcb2b987b86afb4dc609df7a539dc54c/000000_000000/0000/tree_385.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b54b3e2b7ccc6f0dabceccc451208fb14e71b59de8e5eb662fba70ab/000000_000000/0000/tree_386.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//bc0659ee581bb50632110ba7274d6193878e4e25189a558081c464c9/000000_000000/0000/tree_387.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e0cd283421a20522d01b8e9edde3cc9d97d8d4d32ec90a9166d00ae3/000000_000000/0000/tree_388.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//fed0cc7c1cbd535420aa73ae28d03db72bade0b5c109a1a0a6a97436/000000_000000/0000/tree_389.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a2bb2f6cba68c8276f432f2a227691e6c5b60eb1a3926301e7738745/000000_000000/0000/tree_390.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a0baccc9977b08797117fe98d252d9d3114caae93155dfd05bade82f/000000_000000/0000/tree_391.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f6c72ecac2c1fd6cdfadd2475a101f100a45744a0c3be892a77c8dc9/000000_000000/0000/tree_392.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a5e314280ff90f1cbabb2ea4c6fef26db81bc1c23860298346a73414/000000_000000/0000/tree_393.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//94a8d8391c3cb408951f2e611707f7cebc884ba72385fd31337d1337/000000_000000/0000/tree_394.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0210f306296ddd5594fded2806ded0064fd51d9c52ef8a8a56fa37ac/000000_000000/0000/tree_395.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6f2119a33a34bea71cca6a9e0dd5961ac8580f8cf3f79dbc7f41b30a/000000_000000/0000/tree_396.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//774594caade9f88d776df3d59de933d7efdf3bc5bf593d8031af29cc/000000_000000/0000/tree_397.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5317c06d782ce055000f77ba29d8c89114eddf3ef1b46af1895a8679/000000_000000/0000/tree_398.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0b172308ba15588630f02493e7b018c257924313c68f58a388dd4a6f/000000_000000/0000/tree_399.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//8b262b1260fbdf0ab10d65697d634d046838422b236d36b28785643b/000000_000000/0000/tree_400.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c08f3748fafdc908ce26e7efb4ad72de1a400a9916f34ff5e3fca571/000000_000000/0000/tree_401.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//842a10d01cef2a935915f674a5fc598fc3cfe3caa6f084ad30d61f6c/000000_000000/0000/tree_402.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//26f44b36674ed99a0f4872b546b8812d45e1841dd3317efa4f735a8b/000000_000000/0000/tree_403.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ee8fc6b524bbd48a5759fd3633d858c899f5cf7af24d8fd2047d3260/000000_000000/0000/tree_404.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0c2252805f57f7caaa2dc7e8dbe707390ed16a1c143b0b5d97c85b6a/000000_000000/0000/tree_405.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//16c3d5c69c80f858c5059cd03a0681a5cb9db2053fc63c65c45e1dfd/000000_000000/0000/tree_406.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1e432694ef52f3970395548928a881a5a8c68df8c6cdeefbcdc4879d/000000_000000/0000/tree_407.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c5848358398b6fd92e979002129ff5fbacf2680215367233321882e5/000000_000000/0000/tree_408.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9bac997dae7aaba5f8b69be45709d6064f8fa0310470a12d53917316/000000_000000/0000/tree_409.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c38c5f126d5574fcdda5be2867b6242d1e8d7ec0e94132d1e0109a69/000000_000000/0000/tree_410.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3299db911df5d72bbfdf3c99ed9f9dbe19828133894c49130a68b705/000000_000000/0000/tree_411.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1002d8dec24222c189cea302d3e3aaea6837f43bce40230c5e3359c8/000000_000000/0000/tree_412.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//057bb261c187c78a8c598449b499c64ced815f2d303063575e6b215a/000000_000000/0000/tree_413.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b3033c80abde80aa7895eeb0187016d82c6c9b8ec6081bbfa404df01/000000_000000/0000/tree_414.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b0ade8cfa54675781fc751eefc23b4e27842d79c12975d7ebaf76bea/000000_000000/0000/tree_415.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//37a3c65fc4c823fb56f4bb4716759fa403a6679fdc38c2286d631e05/000000_000000/0000/tree_416.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3eee325f604719a995ccee2e2dbecd91f78f57cd2ef190934e0bcfcd/000000_000000/0000/tree_417.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6f90563237ac2154dacbe1ee5302a3cfd340e7ee5d34e156c34e0e1f/000000_000000/0000/tree_418.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//aa678f9f47ee2c914b0bcd1db2f7be5daf955f2bba70455c30713b16/000000_000000/0000/tree_419.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3b149b5feb0095ac5ed0d9fc0917eb7a130306c81e57570356b83b6c/000000_000000/0000/tree_420.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3de45d1139b818c15cc09c8528a9bd4bd407c0008245ce4702170a3d/000000_000000/0000/tree_421.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a9708dc571e2ff88becc1d3ed030c1d564072e931e901a857cea6f04/000000_000000/0000/tree_422.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e2d51da4c8952f17ba9738578c4b21861f3d2970a134f288ec151fee/000000_000000/0000/tree_423.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//66d450e6eaf3edf97f6b939f23ee57fff3c0eebcd91477c9234879ec/000000_000000/0000/tree_424.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6c8d6b7765d7d52ed3784bfd910c56d7def0bb5d59d6bfb865c76bda/000000_000000/0000/tree_425.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a8161a912c711213f5cd3078bd0958af2ff1196fc7666f2bfb48772a/000000_000000/0000/tree_426.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//fb69b302f1d06da229a9d744adc18d98f83e40ca2fbf760a120a2dfa/000000_000000/0000/tree_427.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//430ce854d406bc0ab33766fe79b5027df07b370218f19d6c9787684b/000000_000000/0000/tree_428.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//aa8ba2f39861a955dc036397685d3cba4069cb334fe5940a69a9284c/000000_000000/0000/tree_429.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//968fc0db042648d5fb499cd27a6b0d5425dbacd363e5d0dcc2f77b68/000000_000000/0000/tree_430.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c140285ac5ef809e306a31e0849da09362267141dd56ec4a276ee94e/000000_000000/0000/tree_431.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1782cd8abc90f15f62bbc3eeaa095c0e80cd457784735f5aa3d64922/000000_000000/0000/tree_432.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5e31fd2ae23808bcb838a6262ecdbc6bf26dbe22a4482edb08cc9f38/000000_000000/0000/tree_433.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//66560ea12ebbf8a6d49b1b12925c3b689e0cd42bc584f0c50155e108/000000_000000/0000/tree_434.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5f979d378b3b706703611c457142932aca96bca7205bc64c1d19c469/000000_000000/0000/tree_435.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3e814567a2388632d5e1e307aa58b326e1c76d8765c988fb52a93828/000000_000000/0000/tree_436.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d5594e50d3ea6d675b45ceb519963cb14db7a0f74884dec4f09d9878/000000_000000/0000/tree_437.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//37dc691a865e32ebf14a45fe82aba94706fa567757c3cf29fd5e2179/000000_000000/0000/tree_438.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//30f02c48d5499a1d270a53b95f0dab9fb512570a01f633544cb69668/000000_000000/0000/tree_439.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9d7f09f25b8ba37d7baa668e92f45d39a398e9ca3b858cfc44f780f0/000000_000000/0000/tree_440.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3e983966c7ad5131f76cc5fc24add1db5a578f1e945b3c855c5e8d69/000000_000000/0000/tree_441.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//53d6480b161e4248a7f91c9dd83e1b5100bd8124d04150721642bb83/000000_000000/0000/tree_442.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5017b7b1a1e59fdb32d74201401b0bec999bd5e55393a2e26612ca82/000000_000000/0000/tree_443.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0fc2b43cabd01350212fa0fc999ca80fc1b918c270c85bbe05cb7ae3/000000_000000/0000/tree_444.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ff578bbc5d00219befcae625f1f7201047cd6f65924b5a4b1f485829/000000_000000/0000/tree_445.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//dc88ad266ed80073eb7a0b9f9fb0e58e9adec4596fae1c47a3d84030/000000_000000/0000/tree_446.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d2f51de4013f2e7972d3a3fb624637f3dead23165a2de5b5abe2d9e9/000000_000000/0000/tree_447.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2f532f16a57ced9f0116e28e1b9ef3d974ebff5a516f986c74c7b357/000000_000000/0000/tree_448.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4411a66dd616cf1cab19c572024acf4efaa28c63997fea78b44b7dda/000000_000000/0000/tree_449.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//28d45343be27ca7f2193b5b90dcff1fb747f63ae6346d1c517f8726f/000000_000000/0000/tree_450.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5a7a678ad9faaecdbe12096bd26e740e14abc8070521806dd8005868/000000_000000/0000/tree_451.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0f3276253a94b7ae9d0d425521f1a5539dcd0c5a549e29ac01a3eb52/000000_000000/0000/tree_452.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//862d1f91fb2f6ebd45d067ff9482afbcac899a7f1cad6e4cab624961/000000_000000/0000/tree_453.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//94ca2db1f49e1ef4d4fc3107c615db0f1764d08f518003c00c685394/000000_000000/0000/tree_454.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9a6a2279a9d3895c4130cb7a13c4d10dcee001bd6a531f0c51575f38/000000_000000/0000/tree_455.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6f4af9588210e0e2c227e2cfff2fb37e6d8e6e9f23f0b425c1785ed3/000000_000000/0000/tree_456.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//8c17722045ff89d09bacc88019ba1a774ddd18f86aab5a217d8dc1d9/000000_000000/0000/tree_457.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//cc8c81372accbe21e1b1e58a55ad32ec3f164de8fd07d9d420fc6e4f/000000_000000/0000/tree_458.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//464a3098692d9575c20789a6f15ee64f3d0f94c2ef20ea7923853f85/000000_000000/0000/tree_459.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//82b14399b0dbf68741e620570572c2c78377862a0fe32c3f287bc610/000000_000000/0000/tree_460.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d73190cdc0b648d062398ee3b1b686011289a8689f8c8928546ebef4/000000_000000/0000/tree_461.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f0993a47930dfd0281fc62eae0bda7baf59b5c6d7d3e2880c86fbd5a/000000_000000/0000/tree_462.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//daf4edfd147fc8e61e79570d49cba719f9208250745a85877e22d4fb/000000_000000/0000/tree_463.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2b5525fe6b81308f2aafd490a49d6cf4550c245a14ae061ccc1d51b0/000000_000000/0000/tree_464.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c2d475c021a60b5aa8e52094d347333de6b58fcf343487cea5483b0e/000000_000000/0000/tree_465.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//49646fce0f4fc0a03c75d49258e60259f33e21bec304a0801010d698/000000_000000/0000/tree_466.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//855240463c61767d1f135658d1a181af8c399fc20935bc74d491df8a/000000_000000/0000/tree_467.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1e89bd61065b0d52840512335ec98c95ca5795f44ae70e6aa98d3983/000000_000000/0000/tree_468.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//007e616356b392548e84efc115cc0d54f51668a84fcd78b5fbaf4445/000000_000000/0000/tree_469.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b78e016cad2c23a0ee7f6754edf1ae5a93016d6bd7c7cc7fe21a8627/000000_000000/0000/tree_470.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b83d3f11a96e1b629e0101dbc0095e4f82e7a1e005c7d5060b2efe2b/000000_000000/0000/tree_471.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1fbb8dc3380e84ba10bb4d7e0c2402162ab6fa27a75957109103ef18/000000_000000/0000/tree_472.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ef96238ca94ad9a037a33161f7e49161a77c6bc449c3df1f463fa139/000000_000000/0000/tree_473.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//879f00fc4b3d838b8ce84dbe837257d0ab7019d9506e589760e25b2a/000000_000000/0000/tree_474.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e3f41e2844d4d17489508dd7beff1663824b2b45b7079b6b2cd9c584/000000_000000/0000/tree_475.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6a277f13e73a820dec38d99cd64fda5e1861cd93aac821e93cf6a01c/000000_000000/0000/tree_476.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ad01522e795a16f9993aa6e03471b15d0f5ccbdee4c7a5dc018cf582/000000_000000/0000/tree_477.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//01ffc465aae53535e174d5b3a8e4d80805e2c5053d60210da8b7f120/000000_000000/0000/tree_478.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ed2543a5904a9dc9356e21117d5432eb789155c0ba4a9a28bfe1d85d/000000_000000/0000/tree_479.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e346d47a42c877ab0e919ca94a7c0c697d17c70372cca17bafffef58/000000_000000/0000/tree_480.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//954e100e245317580b81be12e0f494cc610edc0368d6922aa540d686/000000_000000/0000/tree_481.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f1161d5bbecf89e5956877c6109db40fa9cdfc6451ccf43343666a82/000000_000000/0000/tree_482.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f4b82a65db0cae4d77a3caca9160843e53822b7b80d032172a6b115f/000000_000000/0000/tree_483.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//94304c5ed529eb04762a6b78be0fc7e0d94e4d284c5a02b2824cf446/000000_000000/0000/tree_484.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f9095ee56860dc5e2aac2878fcba89044222836c653479ee47d440b7/000000_000000/0000/tree_485.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//af4a5428a0e03ac231d18ee6639f44e8479b0be588a39531e58f54d5/000000_000000/0000/tree_486.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f14e53ebfb83059cf0f0f5139669a93aa9bf24ab751b560da4f6cc85/000000_000000/0000/tree_487.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//33bf7caf9b45e4118bdc143330390fdebf19ff10b1a4a38b3e644743/000000_000000/0000/tree_488.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//253b36426946c92fa016046df8da5b76b857bb85c04fe69b394e4ddb/000000_000000/0000/tree_489.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//07583695e1e1338d5a92be404e1695c6fb6df993a04c1c977c7e24c8/000000_000000/0000/tree_490.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5c66946b7fcf96a844eb2d657aadb38924ee53b8d26217b48940c927/000000_000000/0000/tree_491.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//13e1b9dcf14b8347011e24060260bafc7fc0dbb53fdbca26d021a23e/000000_000000/0000/tree_492.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//387bd2dbe547d31ca4d5001f8fa70cd4b56b586cd89e0236b031ea6c/000000_000000/0000/tree_493.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d4e42a2963521fe9454a50774c1485637877570a7e71dd439460378e/000000_000000/0000/tree_494.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4974dde7559e7daabbe742f945bae9d95caead4400f462bf848969f2/000000_000000/0000/tree_495.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5e0e73e978714e7ab15f3d87ae2234734549f522dad0ab9317c6d35d/000000_000000/0000/tree_496.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//63cfdd48bb34671171a48ca9e2caeafcfea01bcd18765a14fd3ed132/000000_000000/0000/tree_497.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//04d55cca9cacc2da2a2cf5c7b94472c24d18dc74897beb36eddb26d2/000000_000000/0000/tree_498.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3df2acc072afd9b9228b54eba7257b912d91bf46ae20fa4c7d18d8e2/000000_000000/0000/tree_499.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4fe8dbca99f8a9276c837b9a058793db08511d84f6c2554e1a475d4f/000000_000000/0000/tree_500.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//16bcc321a95bf91977471d88aac3fb1384ce895493f6c4ae85d7189c/000000_000000/0000/tree_501.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//89da52dc09ad9b14a4378984fc1d82ff6590fe1f76ddfc5abd8ef947/000000_000000/0000/tree_502.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//880edeb3376997b70be27bbcc4bdc334f7cdaf6fefc05181678a3051/000000_000000/0000/tree_503.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//fd000da253a19232009de621b6ba2f75916460265307e965b0ee1f87/000000_000000/0000/tree_504.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//40fe3fcf8686a4500ab34ac0c84702ab529d8bc3ff1aaf679a938106/000000_000000/0000/tree_505.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//56004259f2820ad91363a07503d38ff3b29f65b323ebde2eb5c1ce26/000000_000000/0000/tree_506.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c1dfd27a849beecbb320782361e0aab45752e72f10c5554ff3208719/000000_000000/0000/tree_507.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f41b20d03df0ab6829c7150bbc43feb02f70363cb1624a48fed296e2/000000_000000/0000/tree_508.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//11ab202a9456221dd31065df2543c833497dabe56eb78c9f7520c586/000000_000000/0000/tree_509.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9d8b2987612d8783f87d43076f1eeff8ded3d35a85830d75479274db/000000_000000/0000/tree_510.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f06d462c7106da921e2150c599f5b62905d33b74653dbd5c3c937c90/000000_000000/0000/tree_511.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9d90a0d4eef662fdf60ea9be41f7fd2750191c88e626800206d75fdd/000000_000000/0000/tree_512.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//891040181f222efe69bac27b1f9f1d674fab0af0cee9a1d1c733c35f/000000_000000/0000/tree_513.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ce3b29577f4cc340ccce911a75113a7a873b00cb77efce64e7a22e1c/000000_000000/0000/tree_514.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//03a1440166b1d99ac34a1477254e177a4d46704e35304b207b8f3f5d/000000_000000/0000/tree_515.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0bd41189d350cf91062a4f1455bb7f39ddae775cc3118c3a5384d0c4/000000_000000/0000/tree_516.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//bda8c6e24547f3524966a6e25d762245e0bd135bca02ac02e9ad98fe/000000_000000/0000/tree_517.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//cacb02066e521f81f224267964ad35f90c4816b95260469278b23bc8/000000_000000/0000/tree_518.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e3d6be1c823b36e7296dadbd006a3074a53881072caf2e1a60fbe959/000000_000000/0000/tree_519.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0695c5750386ecf1976ef7d111f85de8da70cab91ef1f9760e78769b/000000_000000/0000/tree_520.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//8daa024a3a053d21fd45a94aa79a09b09bcfa5e6e5d33348a5f94ae5/000000_000000/0000/tree_521.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1b84b7ae8e0d23a25d9498be556693a810298cf1e9e41a59cb5de419/000000_000000/0000/tree_522.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//fe81b8a2828c9383516cb7f1db71263379e62174554be80e4a6f4aa7/000000_000000/0000/tree_523.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//fb1ea0003b8cd5ca06c4004c18d8012758178a98198945f50b85b70b/000000_000000/0000/tree_524.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//357aa5499e4253f29ec7f05148df73e61dc21434272440162293bfe4/000000_000000/0000/tree_525.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9f891064bdecfb3efc9dd61abb9ae5b3b2e6794ba9cdecb52c5a9a3c/000000_000000/0000/tree_526.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f722843628b31135704194aff8761cf3e9a581fdfbb5ef066edf93d9/000000_000000/0000/tree_527.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ece7d3ca782e09d0ce4426d2de47fd66c1cf845276dbacbacbe3e52d/000000_000000/0000/tree_528.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3058da7f581baf1130da9c7d85d7b99c4b8626a032ddd309d3889714/000000_000000/0000/tree_529.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e834aa80dd13fc8310601cd6428889d3e9814dba70171247d5255d60/000000_000000/0000/tree_530.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c5a53cb6ba6929fc1ef98c07da42b17d2ab97007c6eb2cb7e93f8952/000000_000000/0000/tree_531.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a140177f2e5e5c72b3389a98554a56e1976271d68f3398c93f03654b/000000_000000/0000/tree_532.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0e523dcb8fd3828947815ddceee42294fca2ad59daa86d96eee5204a/000000_000000/0000/tree_533.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e49859fb81e197318560b14b1494d37a1e3e33ebe50de1d0cf3ffd56/000000_000000/0000/tree_534.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//66499af39b8451115c4305951969efa39222d2ebb0ce0d4b064f5edd/000000_000000/0000/tree_535.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0573ec9c645f1fdd9edff9d804294a8d8badcd7576f073cdf2331526/000000_000000/0000/tree_536.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//442710c82fc409693c14e0b63ffa198abf30547e682a15e443790eb3/000000_000000/0000/tree_537.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2735786a7606246ca957a8d46e35b32be495f309263b64fab342e641/000000_000000/0000/tree_538.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//8b65ab8f2d1e57080fd682949c9fc5f06f03556f80c7a996219606e7/000000_000000/0000/tree_539.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//dd4395f3431f716cd35636b98313c3b9495606765487de1cba5fd9ca/000000_000000/0000/tree_540.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2547612efd2fc487c4090baaa11f149bfc740bf1cd31f6ab3e106a7c/000000_000000/0000/tree_541.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d31c7e6a830a2dfff28cb02540e71c2c30ee35fe4e0b759b216102b4/000000_000000/0000/tree_542.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//25800c833cd356277b987f46da948da6186887949b7185c3e4b44aba/000000_000000/0000/tree_543.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//96082b323e80b8fd83627534713a066b71d5ba334e610cdb9fe880d9/000000_000000/0000/tree_544.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//909d309b4d1a5245727af5b4d67937bceb306f1eb99f07bcf1f59eb2/000000_000000/0000/tree_545.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//797fc3fc02ff711f6ce35b4d5919508eabf6e0a0951b2d9080c66130/000000_000000/0000/tree_546.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//44729f45efd10947ac8df9302c871afbdf10aa6f5dcffae3de2fca0a/000000_000000/0000/tree_547.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//37cec8ecb47d69ca7360b456305f61e14ccc33c37353bc61d27140e4/000000_000000/0000/tree_548.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//addc3bb9e414216637ef42a3bfeb1bc984f070c81a1599f77c34f38b/000000_000000/0000/tree_549.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9e141d949e7718580b883f00aa712b16ef619bb12c13ce86d98ce899/000000_000000/0000/tree_550.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//38d5068aacbb5ee7759d91fa8667887cd2cdd094c5b7acaf7e2a43a4/000000_000000/0000/tree_551.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//8db762ae5d02d6de08ede68810d3b81ee0c5fd87787a32a92c4e6ade/000000_000000/0000/tree_552.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e9ace2757282c64ccbb9e3e7280f8a52ede8258d36e45abc55ebf600/000000_000000/0000/tree_553.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//188d5bf7b4ae9dc6b195e9fdefc7820900ffeaa3d106a0e8b2bdc9df/000000_000000/0000/tree_554.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//38206735940ca3d806e0770b967ac032c0cd678c065e4799da2bb088/000000_000000/0000/tree_555.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//bb35785fa2a789aa21de59666c44917bdeef87952ed0084f59058150/000000_000000/0000/tree_556.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//66d7cf11f9abf872454bcf95aecf65cdfb27f4ce4404749a557b9a30/000000_000000/0000/tree_557.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2871af9f32d0c6493ff5d3c13d17ca414a0afe528cdf72690befa9bf/000000_000000/0000/tree_558.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2e124e5b3e30b93c81cfdfdea82c31e9b87f85afbc63151738951a11/000000_000000/0000/tree_559.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//38cbd9f61a47a449231050fb34cb98ed0ef9edc8a6f611b208c6d9f1/000000_000000/0000/tree_560.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//536b5ef8bce78839d1cfc2c48c60c1f6ee85090878169f3def5b10a7/000000_000000/0000/tree_561.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e410b7873cb191fd578042817d3e299a36649eb3102f85bc9da102ff/000000_000000/0000/tree_562.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//482f8a1f87448f59b0c9a628712ce7d63ab20a5688ce92ddc8bcf642/000000_000000/0000/tree_563.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f47fe73494b230855eef1dec05947079eb130bb910ffdbfc2382b81a/000000_000000/0000/tree_564.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d674b52fa031cc7f3325603704e7ad12614c9aac3018c3a7b0882150/000000_000000/0000/tree_565.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ef605d2a63d98a2ef1c42160bc36e5660471610ecddb3214fc67ddea/000000_000000/0000/tree_566.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d183dede656e723dc2b7a6247f595b101f90a2250d848a7d04535685/000000_000000/0000/tree_567.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1811024e2ae351fdf80ccbcb2e372663ad04fab6894ffb1ea183c124/000000_000000/0000/tree_568.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//33bf3fd3fa8eaddc153c46e4ca5b2b4f9addbe9bc28840744df522e6/000000_000000/0000/tree_569.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//073bd25b261b686cdaa1c06d31b81e49aa663aa59813ca65181c7934/000000_000000/0000/tree_570.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5613bf49620f7162564248d15c25a4f31100889548502e56207956b5/000000_000000/0000/tree_571.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//822fa4745d456116ad1fc9c7b186c92c3ef207a6be88cb919f2a2b54/000000_000000/0000/tree_572.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//99c4a6a8f1c43b373566c45674c4e773eb84d6fbb38717bdb568710a/000000_000000/0000/tree_573.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4b7ea7d0bc7d0686d376d383653117bd7bfd10c4fc3b7386b516682b/000000_000000/0000/tree_574.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c14917d7b4fde87a7d9a092bf3662a11f44b9904ca6f5fa611748cbb/000000_000000/0000/tree_575.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//91229594bef4028c2005acefc14910c9e9ca02beebb172b75107c7b8/000000_000000/0000/tree_576.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ce5478bc070010702e4574e8c16c2dedb2056c899837b6f3c3b1983c/000000_000000/0000/tree_577.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//47a9fee87260f561b9e91d464452fd3700bfa52d699299b32db216ca/000000_000000/0000/tree_578.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..460045b68 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,114 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5fcb3ef929abd67887f176a9f365c918609984323c2d310e9e93976b/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//bc99853d3387a957f5b78a4b13186b0655e1f9b13ec36f18d22e9ea4/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//6edfdef9355d463736799ac650e7723685e88041b94eef66e5f4b4c2/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//7e99cb7b37b7c582fa58a42efc264de5cd1f14629388eaff14ff4c5a/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//343496bd732871795da0677842e48fbd861c44d097be3bc1bb5112a4/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d0b2501fa0a9da51f503d509343fad92e99d94fb63d3ed299baa96c4/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//6db61e3aae684df657de6def83dfc2f324d6f1eec521eb565ef4ea8e/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//ba207c5e8127d096371d3363464e08a8812aaa2384c76127fd4812d8/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//455edb5fc66c8767ea793172055ad836c4004ee9b3cdf9a73df019ee/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//e3de083a9d2b47f1eed1c03e5bafde1952c473a6d4d3e52d90e20ba3/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//c6f2f4605b990e3e9f412c802dfc51d4b4ffc913ec5762fb6cd94c8b/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//6381949f8b6d87dd95742ebf802a79b2031b9a103391a79f68bbdfd4/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5c163845e0439397da49c503d1ba2cb01d095fd3007cd89c3ca0dbf6/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//73bc6f059bdc4cfc03311b94b9381f40374642f11d3bad9b64b7137c/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//a596081c35367e271c403de4b831acf83e58a7ae4184bdacc9492b93/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//b31986d3a33ab18cc01b4fa04fa6b41c5adc1aa8895fb5bee8220c66/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d83d750f494191b23ec59a868fb7b258e2ff0d88cafa29e121adabf4/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//a9738fade9c742bb79ca46b9060a978f4bfb80e9c6842fdd84955aad/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//e9c4fe88ae37828d3efe71645361a44f8b0fe02ecf430082af4c5434/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//136896824c83210b54f70d98f626113bc57094f9e6e3456f1e210572/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d2f490e54a6ad08650ac66c7d0d246bad88bb6a69aa0c2e2a7d52aa0/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//994e8d00c3b7eda68cffb9a8828f0a95178239c6c2e031d25b1b9504/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//74358342f0ad545f7f72822e59498182b4e5aa22f681164027551c88/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//6851b6efc7ca111289ab8ce0017b46249393363334fb9320ec23ffd7/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//c907fbbe7250e906cf77b6ae4ac1eff42802427b94851ef36880670d/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//bdda4345dbb68169ed57878161e118760c01352b1d6cfd83b799cd87/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//1acd6ebf8f3aa43bf439720cb0c116933687889538d586d28260a514/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//1f559697e84465431cd92ab2e4558f0b6ce0d10b49be8dae527e4e81/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//0fda67ba01bc7fb79178406c5a8a8f098b4e7aa87fa1d2acc5d8df98/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//2668d5a2f127fb2f7be7c40282165ccc7896d628ef2ef65fdfb169a7/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//54eac70a48695b9e4369d783fed61c4e7ca73bfbc916b1c974b5281e/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//69a08975a69af8e1c8ba647db8f6c25a1916c5a040bc1502e730b845/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//8f56f82090c79cb1db4e3efdb71d486c8b5481e9de62c4f8f1ffa376/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//20faa76190bf0edbfab7f4cd6d663a4441da0dd33a9ad47f5858248b/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//0050e61fe8896a185a2af10d6e3e63a3c96fba91d3eff13d48d3ba3f/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d4a01dceead1d1a23f878ee21491e097d3e86d45816f160cc4f408cb/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//3db9a60db792667b284c5166c66619ca17f5d6be19e3eb2a7e999813/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//2730ecdde6a50a262eb8fad3bf1c080491f7cd986f8f4e01952a1e3c/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//7f80e119d7eac6f44948aedb69e663f8a3029ac13c689ba0de71bb43/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//001bd45d9eced077d596ac19179ba6cf076b1e0875eddf597a69bde3/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//4ffa2cf6af83f34957b495e752ca2bc22ed26914e4094277589d4a90/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//c5f8c476b865937b4bfabdee752dbad2f70f4fc665156bc7eaabaf03/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//9b09c187f04cc71d15c353a4154682579d2a95af347c512a3dc06b07/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5e129fe397ffb6358239061db973f525b35517a352a2a6bcf7f697a9/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//68b0b6b358eaa541004fa29f5b0b611e83897259282ac6a30a870dcb/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//e12838a7b935e00e7b718ddea561fb8315529760adce08c39c0674f8/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//e90984513152196f759be6f0e181ed63023afdf6a573ff658f30d5c9/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//82765fc6a74dd2f51c2d2648e4e18a71b1d26adfffd336a475c4bd41/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5c619f83c4a731b21f06f07e8ec26c69745b999d4d8e85d248a95f71/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//e9f02bad7a7fb7d7ada6dbe427f5fc582931020e4e3868d94364339f/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d02db7606ac716a8b31060cb9e91d95759dc1c6f8e1f25b1030eb256/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//f8eb333032a00606624ff4d950fe228e3f4f8e27f7965c03c14e297d/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//fc2c82d3a567e9be16a5d88591721e01ceb2608e70fe9f313f6b466f/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//232f9a88440c11c4e93ceea81143570dbb78e40d2d406c2fd55d68b1/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//3a52dbff1fff27f291516f83ef5ac3b1e52ea2889249da691b301dcf/000000_000000/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//ef58c15778ea2a8d17ebf4f270528e6660250c42a1bfe7d7ad4bccab/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//91a51db03a1e14c3c818894c68267bddc983dc22335a7af17e42f991/000000_000000/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//795488f650098bf72aa1a63220db126a1b284743ea3f5e5373e2c1dd/000000_000000/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//2163781a4385659c9209ae6aeaa689eeb1804d743d3260952968e9b3/000000_000000/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//e0e5526e7c5a17672e9edd79da49ded78a61d1478cb6cff179075487/000000_000000/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//93966ea40ea98464daf7458089e4944e3316653f488b843a6a13b3e2/000000_000000/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//8f4dba34c4bd8fc1b465f4503a8eda65d3e4754ece549db5c8977206/000000_000000/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//29b871490937eef06f502c95ab5bc1bb1db907697bbc667a67577dc5/000000_000000/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//c09409e17bd514a034f95778586f51eb875c7abbf8e3c149cc5bd496/000000_000000/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//117754c4d26fc8427b2fda9e1ea299613ce3ea16b8468b153bd18f19/000000_000000/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5b372fc91da073b591fd20c7ae6deaf0f0226072a1100455c324079d/000000_000000/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//2e74457626472b8df96e52bc89427ddc27565efbae685e4c81b0eacf/000000_000000/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//3cf555f51a19177bd0dcedfe55e5bfed9ec0f867cebfaf8b171c2453/000000_000000/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//f1c2a2db420e858e49f9b9f210edc7d66b8a281502cd3303c506432b/000000_000000/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//80b2d77f105b0d2de003c5f4d6a4bd437a2b94f835370d84bced63a4/000000_000000/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//00529a3a304dcb607e6e883fa49f53f2953ba78f5d5dde7da6280be7/000000_000000/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//8b1799488ca2f613ac1a3e42c72d1d68c749efc01c5692ba2883a989/000000_000000/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//b1da00c4b8e81cf18c0ec7cfcaf46d890f1ec9a58ed7084b8a617652/000000_000000/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//b89860fe5805c80f340f07f7dfff29e2d5189665b02206deb9a57888/000000_000000/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//4b4be4966a84ca29ba213830e7f605b958a470db09d303902b586fb3/000000_000000/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//c2281069288bd597856f6f32c398215cc5dd6702e0a299aa76876629/000000_000000/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//220f8f52601d1f719d0fdefcb530214e9819d8e76c7512b095b84261/000000_000000/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//c9aab66c875fdccd380c3794f1b27f40858a5225ac1c600055e58af4/000000_000000/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//eeabc949338c9fb1735e0c4bb46cb42a1b662d4379e377236a507e54/000000_000000/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//6a98ceaf3d312f31c4226d349ae6639ff89141c9cca63675348847e8/000000_000000/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//35f0e5263e8f709aab2420c4b0fcbd15f0a571216d36d2d5eaa14181/000000_000000/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//481c9d6fc3ee43a3a84bb4b58070f2c9102ec83b9011d649a3bd6c43/000000_000000/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//f6a003c2ad3bee2ed18faa887b5b8848e5fdfc02105d498442b4bab8/000000_000000/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//def60a99cfb843869a982a3c4a0e2b10628c538eee40a60c1abbccb8/000000_000000/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5faa30db6252aa921f886cab30d57362494e673753d3707b4a031282/000000_000000/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//b66984c8d4b4f4da62305b655b81dcf0a47e38a763012a63fa9d4d8e/000000_000000/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//c99b93f5ab16ee2ef9a8687285a5937ff6b0c6e8b783b1be8d2a297e/000000_000000/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//62d9b72ff324f29f0ed9f190b145bea5311fcaf48b2f58254da0ea09/000000_000000/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5f60e7db3b8db0b3a73aa9d6047eaf5d84c9b215035526807961caef/000000_000000/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//699d147c1964307040c92ae947eb4510b5bb77f6a42b6c6160eacbb1/000000_000000/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d3635e26d116de02f809200867c4a41a19e8fc070e7e7fcd9631b1f7/000000_000000/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//e2408ef1b7dd5f64260faa48a9864bf659fa22755f1401892c81e1c9/000000_000000/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d9882ccf5bd75cda5b29ccd11a08a4db241210191b1fd5afa3161a37/000000_000000/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//28d528b5240659a8b6134f509d5046e7ff8b8031d8e2886297789691/000000_000000/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//41cf8e7ec991699c83bf42fec71d327e3aec498ced5d39f3763f183a/000000_000000/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//45a8af747cbf4bd9ec61b8f26acc0a1959234b99ee7dc4b5a52b4410/000000_000000/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//46bd3b44db88b1585d6575f6d32e12e20966d1f41654392d1e9ac591/000000_000000/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//108fd6e96fe51a98f3d5ce076140f15ddf5c414e735deb2f4a2c1867/000000_000000/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5a990be6d72263285b5bfe13d1b2dcf56beb721e5d21cf3158dad6c9/000000_000000/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//00e1be98f9e8b0f16c31e1901129969e9282e9a581679001caa8b4d0/000000_000000/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5d5689d90d9f7c7b7c02b22546b6bc47990bd16c2ea815a9cba96d7c/000000_000000/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//3c4e45e6a48dc448d84c79e3c7f64f25591b25c1dcaf36d92150f425/000000_000000/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//c2d229fcf0af5445f6cf1fd1d21c198f0ae999027490bcff28532681/000000_000000/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//80d5f974e46e7d4f1c4b6428cb83478f440dbcfe7be1d2cfd15aa6ba/000000_000000/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//14037463b3a741d457eba89c6ac5915f97029e4af568678f6054a8ea/000000_000000/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//22c2652727647fea0d39974c10ecdfbb9ed06b308df32d905ce3c974/000000_000000/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d04c5575123f25e8ee0905376e35cb98ab8e911fa75cf8ad90e29ccf/000000_000000/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//9981a6a3f723bbcceadff36c45d8739fc06fb54e95e6a88eb73e1ee6/000000_000000/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//cec9d416c83711feb397745e433fd555b1cb3cf762f616252dddde75/000000_000000/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//fd765db0cae198c6079978bfd9c93c1ba3cbd766427d758f41c5c356/000000_000000/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//e5329f76fa87e626efb4170e9bb2f81934aed587399da1c5f1d120c7/000000_000000/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//0e120e579260becb55beda95c8f7fa7df86e10d99b8c1cb52102c839/000000_000000/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d76ea7fea8edfb02b48eff4548b1d0a4b4215996a0f41943d9842dd7/000000_000000/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//50499a9385f9be5c24064bb7159936232806d0f0164f1141ecae07a4/000000_000000/0000/tree_113.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DY2JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DY2JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..898751a37 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DY2JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8/c134d5bb8b360fe41af95b9813c45eaeac7748a04a5439cae5e70903/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8/83eaf5f6385fc748ab3f62818b8a3c675d43a539acd230fc6f08ccf4/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8/a7e81a9fbfed7455eef64b0274b6e0c717da099ecf7abf2b9d48658b/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..3a2d6f1ce --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1,31 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/dae517ec530bfcd6822bc779bcc9b78c883d1ba8395494d640421c28/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/4c2ae30e994f019b200cd8e7e28c585bb53923a2144515a13a806517/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/f8dfe6be3c954836060b45fd1ba816afe11fb0e6fd7afc5f780205d2/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/3cb1e3dfd80b181a345d43a48bc142f3efdc165b3016e2cf10aa0f2d/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/dd44fc11a52a1611bb559adb285ed663ac1d11a81926a1f612bb06cc/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/73d564b74795463424ca94033be502267ed202b62ace1c053871199c/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/276a703dda87261cf48eaca5a633be2a08ec140a7d2145e97e1319a6/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/919b38ab94119b2b2e0252a49920faa2476fc4be8dea57b1cd15c418/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/8d38e03122f0c00d4b80f68e6683918fcc878f3a80d3799e1048e1d1/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/598992a79d5e53e290c35dd543b92fa222f6fdc2fa6075c21880f257/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/c1009068ec6e5ef5bc96168e24d30b728718cc0148a3320ea88e2c1a/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/02a3778329aecba0a9f01faa16fb7007371ca2dd710dacda8abc0c4e/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/24c4e84f01dcc026c7c8281b529a463cea2ed123e32f9eae325cedfb/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/e16dceb2cfd4350556e36d1fb0a98a0483aa07c5ead0e1213c7bf772/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/998a9adde5cb64612deb6ae8391735eb2112b10f5bf71fc4f1d3d497/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/285f88da3096d308fc3b1f978dfce940a8b27269fb530e77589f704a/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/8b6501ab7b560474ebedb84760cec1a581159509470939b08c4b2d7a/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/8c54ff142f0ccd9630cd6e72f4225cb236b14967c3f203bc6ce39d3d/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/ce811cdc33d1b919a589607574cc4d4e178d070b77538a543790705c/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/c0d132aa1e195f1e88a934c3b6bcac98732dcce436e2bfd16d1715c5/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/5f54926509392d3b7ed1ba18d40b537453420274f925832af4bc9aa6/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/f6d949e398f57ef0046337c5faa52181262a763675a439b6b53e3486/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/69f3df236c7dbb8449c6db8e3a9c9578a1bd9317221f77f6a15f8cf8/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/82e14d3cbb3f6154b78cc4a567b500b93222ff8388f86edc09866278/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/e79f73d0716bfdaed7b3ea1d6b6d4e83aba9ad5c0ae11c59623663cc/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/b426ef02810f4362de8f846e9bbe13210ce9f243f7964882cebad530/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/1be337b3d8de66ef623c9834593fc488b2cbb25a72e8d467d3429890/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/1d929a0f7fe20f48a2e40f5cc8d0b9b8b5a2f6b2022a522ef92a7a95/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/bc587e1f74b226f30c8cdd0d9778fdcb21db30381dae3c5e35c25781/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/ee570c5b27b6f8b087de13027ce3a134c54c67cc8241e01432f84ebb/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/aa847fc86c78523b7483a4ec6b013d9815e7fd326580a617ae732c80/000000_000000/0000/tree_30.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DYBJetsToLL_M-50_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYBJetsToLL_M-50_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..af70fee1a --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYBJetsToLL_M-50_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1,4 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/8e31646175556776a3cc65554ba63fd7572ac66db5466e3ea945073b/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/810742e6d299f346c0c77848f2aa0a9aa782280fe1bbeba7e18af1f5/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/3334f5750c3935ba323be163ecd9b9350435dbf1cdf968bbf89baea5/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/51e0a90c586d50bb9195d5d67649e742e016d68d565c1340eb41b8ac/000000_000000/0000/tree_3.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..7a35df273 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//92ea5978621aae539b5547e6c9766c20662b350d2c7ee39441e1bc72/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..29a373858 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1,27 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//ac5e8f0acc0d6f53893891b3076ef605f7f6a92d6075a7f739df411b/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//82920a68eeec0dc2769a0466cfd5a0b1dba3d926ab32da66c5cef70f/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//a96c3b18450acbe62daff280e9f8485ea20121fae4339b96a1d6eea8/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//62be86852f2c39eec7cdd5c29da6e7ca61d7f7e53cef524cb6c69af0/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//837a66b761f4223da26439ed9736f48332c2ce2600b737bd14260a76/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//9e390c2731ab1194bff0715326deab5e8b249aeae5da92571d5f1bf1/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//4bfe7611e1a39625b0fcef3d5fe5a1f74b76e7f33e8a91288ff78674/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//a436b994e01c6aaddd715fd973d14b958ddfe7528679152c64fcda92/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//305fdbfd69a4e7fbdbe17ca59b489ec9d0cef24b588bbe56b343ae68/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//754a3d60a63d5376c34b3934fc4abf32d7f3572ea94dfe006b29c066/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//2a158731455ff841619c1c03b3404458ffbbf1dc5058bf043a650e75/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//caaa40e9e0742e765b01e9be979f2267596561d38b8ac0162c2caf4f/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//1c2b3e7b25bfeb4f5d7d06e9ae3cdf44fe3e6bcbafc9d3cbecf71980/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//a2b64f29ccbd3f5782f448a4e4d88752f84be66648ef8acce9b8ce00/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//5f3b5f37fe77bc90e15e84b6e172b8ad571e506f485432868a2d6cdf/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//3195af21d4ebea1ba0ce7b5290dd70c3e4f831d0cf21d8faf6c02fd9/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//940472af3433c43b26b422f4ed81d656a3271c324ed60b5a2b2df328/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//1edabc1241437757ff6c822fe9d5fc8d66310599e091a58c30abe306/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//8e7b37cc4c8d3dc076a80656f71f491c299c3b5edb89e72ee56c860a/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//48ce66e937ca266c3c87fa43a3afae8fe00a419f0fa0dc0e41194183/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//c4067bb1bd031490b4c8a18e337eb330001e3abae1faad3807c30364/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//bf751b87ea727685ab1a693c31bf8bd1d2c7f7934c400105087d2dbd/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//a77399dfb4267d7ca92c4d62cb06892203995758675b006c536e3ae2/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//d7a2a225e95f99c062c269f9277fd772f876688f0f918496487bb4d9/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//6a7e1ce64f5f9edf35edffaaaa7b2198647debcecb0bce8580b519c7/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//f093476a3c64a058c69b5062d2ed5f6b01183a547794ac368afb1bee/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//24a61a7a36c38b206964802293c3dcaa0c7e79e5deabf130984b8541/000000_000000/0000/tree_26.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..e1f0227f3 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1,24 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//2579488f01611cbc8442ebeeda5e3699791d63dc3a98f2d826ab200e/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//56fb0fdd357b3cfad58843e00ba8988cd4fccea01edc0570380658da/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//9ddfd0b1e3cc947f53418a9faeb87a6e3a388138b47063aaf062c545/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//c34475b8114e191e47fd93d82902f97d83058af87ebfec2e7da0b914/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//90f56791874ce7d05e291e9fba7d30c779104ae62e0c01d56b704b8d/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//a260c99118ec87aee2e479ca4bef05934a42088abc7c6d90f8ee44cb/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//4017007675f57d673f4e89a271c7c65327162ec4bbc98c74f85fe627/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//9f052486287d8c3af1f2f5487bcaa5d84b49da3c016d4e9c56360f88/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//eda97dd8e715b028137622442b38550df885ddf06e065fdebb19948e/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//8ea91d0428c3b2a019de09deb8f9e4fbb4f6c6cdb92fbfeb0a03c950/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//f1d98b1fdf3ad3a7a13688a39f2bc7c62aac2d9a97a6a389e5108d64/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//2cdee0b84986dd58f9d1d35625ff3354cf4b2544b447a784c03c3a92/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//a35e3fa8b906e4bfd470a009961087eca50d9bcbf03bc0bae26a1f3f/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//2693d8544be6d3b585788eddbc47ed428d874d8527d9a60c7e573659/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//7026dafae01ebfc773b0de4bb34012e5138704c5dc680239744f375e/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//22a0dab631673be6b588d06f5c928bedbab9d7c619798685b4a798d6/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//e7e97ee9f6334347cd37ccb7423a5ac9f778931e8529cad2a8367386/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//fe5426754928459d77b02eb002feb00e1026ae79c9821efb5d781209/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//00e86470719bf53465c28f8868b703c360884fc8a70825349563f4b4/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//d3bc687b33a41b191113579e7c56af62c0378fa2b7adb0f240bd50e8/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//128850ee31d807b79a355480046d59e8c0652e4e0796b37da3622031/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//92ed19fdb005783145eb52a5127e8dc4383f5f97146cb3ff3e6eec9b/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//6983ba02365eaa890ed9444c20bf75b50576688b7f3a1475eb86953f/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//d37a11a9157a156f9ba158b3618149759504d226e9a89ecfcce4bde6/000000_000000/0000/tree_23.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..802d519c1 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1,14 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/4e40649eb4605993cee59e6acdf11c70281f4058790ea7a40dedf1c4/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/fcee515950fa2d7839a6fbecbbc9a9a67e45c8fcddcb5a9959616efa/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/f5a7ba1c15e8654789cc64d05347923de5ec4f6615310b9a7bf30ec6/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/a8047474080131336bfedeef7d80a490c761d93a96918fac8b4d93b1/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/f39fd832934524b3c4f06240aa87a372ea63339e1434deb63b7fa86f/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/4542bfbd5c563c6bf363854a59794aab1da9a42568e2dae8e480efaf/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/d53c09cfe3da40a95ad5209cb8e5c8e9c728ea65dc14d46acd5343fc/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/1b8372a0f5b015ce1252357492e6ebc1797569aa73151fa3a56dff9e/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/361b3421577d2eb08bad442080fd33c33d24561dc841bc4c8c2993aa/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/ac514f01522146893620b1a50019c6c21320e82d0e1c1eac9cf915d4/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/95456a7ed5d6804a6127b7afa5bdead6d10db31f588001b8c0f61434/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/940e3f2c96ad6d727ea85fb3a29029ed90328765e08aabbb90f57a04/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/dcd674788f687994d0deef4bb5f67e1e904868a34fe4f51f83f21db9/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/83e108fc6bb37c9639a807a3342a2cbde8422222aeb67938427111ff/000000_000000/0000/tree_13.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..69c7c8157 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/b4a0ac8b4feba0d6e5dbc7105a1bbeb49441639abef4d858f8b3ca82/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/9f8c70d17f4624735359d71d4451015ca005e65794370d2d13bd4007/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/351039f6f7c12d740f0e6fb00558d67f86c3f12dd76d0062eb312313/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/af01863d191accde0933649ab2b498eaddea5309d2e2da5d59207d73/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/62df75b9793e96dc56a611460b6b3090f0bc093c1c1c6aae69ce5fc5/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/8afa9e9e1790cc688f91bdcc5f12544a00ed27bfffc61a31fac4d5a9/000000_000000/0000/tree_5.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-4to50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-4to50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..700d27e9b --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-4to50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-4to50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8/734d34d25f6531d896d96251b1680153a3c279b92f4f9739061676fb/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-4to50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8/bdf9fa116d31f7775d3ac63f929ffa28e1daf11856a6208fff4c6f19/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-4to50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-4to50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..5e8e4e35e --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-4to50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-4to50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/4363df8c51b8da710df632e52fb378c6cbf2bb8c865fadd3b17ec826/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-4to50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/b65bc94200e28184be4e061db49dcbcba1b013923d7610086f94a632/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-4to50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-4to50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..beadf069a --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-4to50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-4to50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8/6178b32b555a3826e7a3a20122251847b366ab92116e3455f957f172/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-4to50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8/68b57ff0940f47cf7ebf88e8ed4a7ce59e13838b14516c18451f6d3c/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-4to50_HT-600toInf_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-4to50_HT-600toInf_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..8a8386f95 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-4to50_HT-600toInf_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-4to50_HT-600toInf_TuneCP5_13TeV-madgraphMLM-pythia8/a567a0148bd62fed3dedef498d9abb51b515f4272de3adba6199ae48/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-4to50_HT-600toInf_TuneCP5_13TeV-madgraphMLM-pythia8/9700825c5b7685b7407cd9871f7ee23f2286561523d3c61e483e6b71/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..41da545fe --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,12 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8/1a1ed48f95ae1bae8d087a3eef98f227a56837e7d582c6a8f7d4f7c9/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8/04aac1afecf15e55efb325af0e712d2dcf0a2debdda4a3221e9a6747/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8/89a41b6df1d28d3b84fafd9064cf0fbaf935d0b25480b6e42233d571/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8/8bf254fb4317104d9d57fd12ae60a18a263e3bb04e31af12c1527052/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8/dd0283141bbfd6a159bd0604eabb72981973d3ad201ebaeb9dc58229/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8/546575f0790e0579c74a11804d51c68c55e4fc142e24705b8057c71d/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8/7e71cb484929a6c76bb8795c0373303c353bb77c932406396bd471e2/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8/f4e514daa528925b1dad50f89de0bb4cffa1b2352eab7032db229fcf/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8/e82574415339c3426f776fcfa787006b0c595319c62315e49bc490e3/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8/6438b874d66bf9baf8bcd6edf619976c431f6942d2e50a70af8e7024/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8/438b613d27db0801dcdb72ae4c8fc1f04fa5658388b0d74ea8954155/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8/b645cbc7e5204f74f0821457b0bea50c2cdc7e64a0465a625a559d3e/000000_000000/0000/tree_11.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-50_HT-1200to2500_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-50_HT-1200to2500_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..5b0c8961b --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-50_HT-1200to2500_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-1200to2500_TuneCP5_13TeV-madgraphMLM-pythia8/65613a6c8fcc05c704f2c4ad889fbf12fc497647e94089f0824a06e0/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..598286f23 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,10 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/9c58185f2801e3038340a170bd83f8e330c2f52b736e091decf466d3/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/b710d93aad05e273bc7e521ab5edac7c953e98062e781d56d61b5445/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/51ed0a3fbb85b3a7fca7f299c3a8c0e3c82c6bd3458860b4a6dc9d78/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/8f91bb01ee4a6d13358a316b728bb2e8f547312a11d7e0d2986b558a/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/7d0b3ec8959ee053abdc59398cfd38804eca5ad1eb14630ce71351ab/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/74268ef7810cc287ca949b64ba41628d54cb149d96aed9f38752ea23/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/489fbf45de5645691a86a4f6ff43321fb333ed379c2aae52381fa22a/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/8a5034049dbba0025ba02b5f9d23193a1bbdcac71ef5073e2bf3278d/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/022dc58a9d0a465b206ba92788db80df2b5e61a34678fd3a9ba759f4/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/04afafa20c389af9d842167b6c221cca6012aeb74b0e4ddc3a1487d6/000000_000000/0000/tree_9.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-50_HT-2500toInf_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-50_HT-2500toInf_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..41f9b2be6 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-50_HT-2500toInf_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-2500toInf_TuneCP5_13TeV-madgraphMLM-pythia8/a556a74be8175fa73b8def77052f11b8e145a8fb5027f9b9dcfc60a5/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-2500toInf_TuneCP5_13TeV-madgraphMLM-pythia8/6beea9f7df3ba027aac70be01303e2dd1b7c9059124aced5faab29d1/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..a6c6eddae --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,8 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8/afc34c9081317c08a587f7c82d5dd6616fb0050d071cd8ea2ed30d86/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8/f26c7d84f372c984cb690bc20944b03fc076f12db07a432df45475f3/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8/09b73686a877b059f951c79d22cb1de8d0e0f5eda0a389fc6c4ec434/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8/21c9896d3ee2a78804503e0835ab4a4f2b395679b8d491ef2077e0e3/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8/3143fc08e6844ff273fda8ccc0973f5083f86bba70d2551cfed0997d/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8/d3f7960846d85074b66d2660557601708e382f8115e19b01981ae13c/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8/cb9b4dc04fcafc0e809955117ea8d9c9d25395d4ead519b2bc3f2add/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8/2b4001b34acc0e377dc514c0ad5ff87194c124fc2e9dbe29ac40c57d/000000_000000/0000/tree_7.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..38e2a7652 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,8 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8/b1172469b71a1ee6d73ca7c5fa4a26778c420363d2a59c396ab17e12/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8/f43bf05f11a2c79210a7ab0ed2d50867cbc1334fbbc29e8986925ee5/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8/f2a8ad0d4b21526c1eb9a5671bf65b5217e6b9785cb4dcd157f6b510/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8/b9788c4cf171458bb6cf4684cb2b8a36d4fa7d2f480482e3b37deae4/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8/bf5b9f2a7876378d02fd14d079becb4f162d2361a882269b66c89a5b/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8/5461ce72edc48fdc4593d7c56e03566aece7aa0f83f2e0d9416de0f5/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8/e8871ce1a23f8302018fcb8dc423130ae23c65a8bdd37d3c35b2fe18/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8/bc902b65bfe2893b9f266e62a55b9ef923b930c05417c1c8447f0c89/000000_000000/0000/tree_7.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-50_HT-70to100_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-50_HT-70to100_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..76434fa85 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-50_HT-70to100_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-70to100_TuneCP5_13TeV-madgraphMLM-pythia8/5d5ba86b227c258b9af7e51d9ef89c9f4b4e649111ebdd1b6e4d675b/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-70to100_TuneCP5_13TeV-madgraphMLM-pythia8/2a24ca680da95af1bc5906a71f2844a448d17dabdc506438ba7dd921/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-70to100_TuneCP5_13TeV-madgraphMLM-pythia8/8869c2ed74101dcdca6dba88f752611ecf32ae87694854184183afbf/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-70to100_TuneCP5_13TeV-madgraphMLM-pythia8/80a6ad151c8eeaee9303335efe00d3350504fb3903e6987dc66da593/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-70to100_TuneCP5_13TeV-madgraphMLM-pythia8/55b7320a442987450a6055c1e67aa82518b41f43975ca3cb24629145/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-70to100_TuneCP5_13TeV-madgraphMLM-pythia8/b59e3905332401d5281ae68fcce9bb4b33eeded07d428ac435a2effa/000000_000000/0000/tree_5.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-50_HT-800to1200_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-50_HT-800to1200_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..0e897a60a --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-50_HT-800to1200_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-800to1200_TuneCP5_13TeV-madgraphMLM-pythia8/32abf41f21b28595dfaab68c996ff57e704f4dde42abe19977acbbb7/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-800to1200_TuneCP5_13TeV-madgraphMLM-pythia8/d8e95b71449de15c8bc7bd4051e3858fffe023f47d264781b7701144/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-800to1200_TuneCP5_13TeV-madgraphMLM-pythia8/09d6e039af7849cae43e11e523feacad771fc7bcd5a1417add219a20/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..2b8a189e9 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1,60 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/6e1a03a5819a735e2e8804ef98449cdd964cb03f6a7ba340e2a55712/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/abcec6ea37a98a5ba0e67589801959545223dd2e3a1e3907cb82b394/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/581f5f5471786d01edde12ea07490ca9ff46dc43cec82317bfc10c75/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/b2b5ffc0e86735bbceeaf6950ad3960199689e4291229df021f1fefd/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/b96ea2af46eef4fbe88255c8882fb95900e8df629622e1821af09c8f/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/7bd2be2e4260105263ac830ebf3fbd3f4bd42b06af585cef26a0782c/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/b278bc1172bc4a57727f7b25b9a78da76bb6a936b70e1651ad593232/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/60d6bc0cfcf05b30d8baa3a623bfbe76a49209249ef4d45fb435c1b0/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/ce8e8e704167c8ac4ac31389b1c50bf6c6915ede2fa327a3c534ca65/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/337cede51c34e0307b7e8dfbcd7dfce86634076e8990d99309758edd/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/ab8be672a82ef261011d89612b2c375a931596e8ac2876d0705f1d07/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/accb5cb717717fa0039c30efc253b4a5cd1d3672b9cac2f9eade81e4/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/0d6cc7d143740b1597f4415fb20579948bbba99ccd593c8a1c6f6041/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/5a535a488a582264066fbc37b875b49b3ad30c39b84f0284e1b274fe/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/613de15e1a99f7c4b9640f660aa3ff465b3db95572443fda48b9682c/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/6fd5d1b4703a57137d6328043ab0345584ce821129bf3dfd2675238e/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/2ae877d7244fdc5bc63111eadc6292f3db1fe2466e495870f461ff29/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/f00f7dab582efd01ac30af2ec6958342f33ab0483c63edd626f8b884/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/d5e59e0c4b6d92fc3cd77288ba4cb477c97231d329a945fbc43fa455/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/808253239851923e93650fbedbd2cc00bd65099a306224ba93f2fc39/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/5fa82cca249678c39890bce74ecbd5d576e526aba5d98c8882fd9da3/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/b07fae47606c81592e829d3a6337d07813224cfd8565f7ea806b8db3/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/a778a7fc6599c031769c3b62c219042963d81d7d654cbabfaa7b8616/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/fe1b9f760eb6baed6422ee626eeb9bf41bdf9b05c976a80ebd8db85d/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/cbafc6a9289e0b733e90e392ecb5160041ca9731cb664b62a267797b/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/f7bc963f7dea42c7180fd53efbda0b4b62598d6f423f7df05023b7f5/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/13613c95792b73e56d1fa317f9cadda92a388d27561a7a445e135ced/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/d34501e08c61f7a886a0a4b13fae60ae48d1e14a0f2ac7f2ca0c9dd0/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/45b6be65183a9e5192ce783ea37af0b8e998e05a378e3dae9b53edd6/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/10e25787fa7c832ca95354f652362217e1f0044e6e11166ab4ea1fd1/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/d08012ebc458c9beab3b5cb39ceb292b7f1061a52fedb6397cb7242d/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/6a72db6e4c91006ae94b8d7f547c7fe21d38b3421f7e10844dbe265c/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/5e8e916f5a4389995817a40fe0639caaaab98778713a5c4252f3edac/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/c58678b075cade84cb9a9e933a04c7bf7e181769c4cf4a9b24c8841a/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/3421038016179c32504f8c2af495b98730fa1563106fe41690f633a2/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/c126d6392c8f12539fb7ab77a7af9cc4dc7ff958a2580f62f6b85f95/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/4105d226072ba5ef5c1b0b98a8ccd2d8e407038da9e18261f6c3540b/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/c75255634383f90709dd93dceeb3d261aa0e9086b579ee3101227ed5/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/8d51fe34efbba8f1c5e01fcd61ccee64e477249e57b2e922587b21c8/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/80e4f13b7c065d11f3e97e9fe1be1b288d21228cecc51f13b77a4b83/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/cbb024f3960f1cc91750f458a88d60bd300f4aabea4ce77876128bab/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/881267dcc4e74c49cad4583dc568ea3dff2a4645505cd9f6c8497001/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/01e39ed6c7f92b8d79f6a1139a7cac656d45d71829d61505728e9661/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/cdbaf59d6e0108e34d3d4634c4b489ff4e8a7aeb9758ec63299b96a7/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/365e3721b2a8ef31ca6e3428b92d1c13ffec956cd0ebc7fba4b91a28/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/6c20fb948f3e389500064af321959ab943007da20e8e6e2068cb39e9/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/5ec6e9da395eefa77ca1811d07207e9ae68a22efa2e01e5048bd39db/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/263019343202466fd716cfae003c263b2b7882e2aa85055adb53ad99/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/b37ceb1cc681b26533c9e93549f889b83e78b00d7fb9f47bab48fd12/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/fb580fda86bf7586b26ec54ac6ddcddc8033ad19a2eefa5f3817bca4/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/59a3085dcadcd0961acb303c1753b6d7188151d0eeafaaafb8709084/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/e5b1043366a26ed835351f3beff7d8b4cdc7b46bdd8edc78d9745b79/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/068801a233f8a1ba14493548cbb84e9b044a8e4de29d53353580a0e0/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/f870c2713f05519b30f71c7a67aac60365337df54982aff60cc237f7/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/30dde8d878ac6712dbd890f80a7f9f466a2d56e457bec310e7aa6418/000000_000000/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/fc455ac6087b2227e6c3742d1304a3be5c792e67ee18cb4da4b557bb/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/d2e3b7aaf2851db831a8bdb1024bb0d23fd4683d34e628640e7a496c/000000_000000/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/b2600570a3d55ce6a29edf5219d4d248d3fce576063838f7c4560238/000000_000000/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/c8af58980e4dbee42be59c432b7ebb19a94e3a56da604ff889f801b0/000000_000000/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/308577bf60e1c803009751e09e1f2d0acf1def80ee82ac07cb3ca4fa/000000_000000/0000/tree_59.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..2f746eea9 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,17 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/e5b2e88755136a84719d7e13e898b4e39626682610b0052cac126f81/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/493110aa47a1209bd2f7aa7de0458dfd8ab6fcc3a1121bd6f42a1f06/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/6d71000667db3269ed0af2881da2f92512de9cd8cd118d435f5b544c/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/fae80bca71424ccb49ca03b3d5e52e6cf058387f9026e9c56e63be6e/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/1a1fa05897914af6603cdbe2364f5726cee94cced7f13af3ad5c41dc/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/0b28c9d6ac4a05dc613ec4bee31781fb0e91a962d7470a911ddbfad8/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/b1cd9172def4285443e9af07e6fea5b343fb2254462d0c0c0204d3cd/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/12e1ce2c72702153bf321241757d69bd4737e9925d900ca2d013c893/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/f71abe68e652070e50da69e5fb58112ae24106ac08eeb631238ee107/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/fd2dfe82ae6173c72bc9dbd5c58fdd4ad350dcdcb24dc657fa2cac0e/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/cba25722f4284d23f7747372864b26dcc344f23a2ae117149c43e2c7/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/04e3c8e5486b64f21bd87f906fcb79cac52dcfd6e0e33c7cb2c134bd/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/5db5235e41588e33a6b92d6e4635033fc3400f54bf1c1ef6b67fdafe/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/e27e9a0629c35cdc3203232fb1ef638f8bf127cfd79a991edc4e226f/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/1f2880b6e0d71ff98068825c2f7f9885330369b37e67e3eb407de4d2/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/afad023f19b1d049ac0e83d27c2c25c8d6abf43b358ec04168547521/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/eae933e8dde7a92afeff6ca3a74ed4172e9c60b52bbf47c426d022f0/000000_000000/0000/tree_16.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DoubleEG.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DoubleEG.txt new file mode 100644 index 000000000..e1f89348e --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DoubleEG.txt @@ -0,0 +1,29 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleEG/5d89556345eea4e411530b1bca61f32d4319d0cac02e0d37434c324e/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleEG/80c6809d40c7c2cd77e18b9cf19e04506b36e0d4d86cfacfb5fef97e/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleEG/7637f1742e6743b024479416f9420e33b9c00e8d07cfac24bd21619f/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleEG/b053c1594d901cff95edd63d9245bfdc3b9c177ab548b4a80130687f/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleEG/d9da89464eed77ad17eb9edf9ef547121a7e1631d8213d9cd92af9cd/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleEG/f23c3f63af03bf330e1f20c1046f8b5e0bcdff147611b8fa14c31496/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleEG/61b50e28ad4beebe298edaa316d38bc26b55f63875579e1b309005c0/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleEG/942420fddc4d07f92381ef0fbe6a9a2771083637f0179980dad4f26c/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleEG/364b80dcd938a90de9af0b22b8c2c312f0991e27aec6fdb1f3fce6c2/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleEG/0a7d29e1351fb1fbdbd3012f27fa56366a35280c009d4137003076de/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleEG/897cad7e77de85b0cb467f8fcc7055b95b8deea8bf4036b6b57f71ef/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleEG/f1063711219dbf804caaf9d524ad845aa43e1b7f5b256152312da508/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleEG/8641cc9896a09dfde640f1560adccd5f23ce10cf79016d53621503f6/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleEG/3b27ee70fbb59e4fbde8107392122cc2a178a440c7876ae79b822c67/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleEG/eac5aa7badbbcc9527ab88dda4b3b8c8ceaee0c3ef201b637f087df6/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleEG/1697de2b5a0d7128d320cff6bf575374d25c341326e8d80e647db8fc/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleEG/2f9c23fa155470ee2305b3d69beba2fe6e3e681cb33a86a4011381e4/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleEG/b73fdbb9f628298bf26e4f84ef19d53d911cf405955b755aacb25ec3/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleEG/f01d05044bbb1e04936698bf84e2408229ebe97620ede8f528d7328a/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleEG/1e3981e9d2626696d0cc202e9a60ab84ba6555975b2acf6e0074c298/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleEG/e9d426185eb04690d215319e07a6f05f7ebda491acba7ee55a374c28/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleEG/56f2c981bd848693ad2915599da61552e933947b6673b57fed64d30d/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleEG/fee8ef5eefb17a08dcb09ea3429d776aaa893a191b8ff92994256e0d/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleEG/6c2d2711e0620d1e5ebf466d96f49d9115569e2e30c62e786ee4434f/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleEG/6f7296038cd924c402637833a3e6bcfc7db094cce1e752481db816a3/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleEG/8da9a9fe1ccba5027b51eebbd8090c91f311bcfc7d83047573454df2/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleEG/10b56476888aead7382f029b2a45ccb54555beb4d97806ceb32d576b/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleEG/6c6c4eb424bc7158571765f6b2eb5dab24a8e2012f0053f448b811cf/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleEG/783d23bcb31ee700354d387675be537a4290af55e6b3a435883b7fb3/000000_000000/0000/tree_28.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/DoubleMuon.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/DoubleMuon.txt new file mode 100644 index 000000000..22eebd304 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/DoubleMuon.txt @@ -0,0 +1,39 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/38e98cef19a142b8f5a8122e4ffa9478596abb326e3b9d29ed2287d1/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/458e2035ece074606eca43adf2858dc40f6391e09eb2748a48c02d7a/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/97cf3bebdde12f041a9a91c468d9dce526388fa9981daf7714a4292e/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/77e3c7c472cc7ee6f28d1884dce0e682a6306e865867622b9eb07251/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/37b4508bc82a3ce902d6666847bd831f7697cebd661f567e212ce411/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/2ce09d663a1e974985ab38287f250e089d0071995a79909e204d01de/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/1bc795fecee238c16fcdc230314c9c8fa9a2e8856732f24b5d58efc1/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/0a7e68b715b49e68895a5a8b3de02a79735dd99ed727ab3a13a5fafc/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/9b530ee378bdf24303cc98d0b15e44f457bf10b0d3d114a6d5632ff5/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/dfe7b726e3b4228daab9ea37c27bc2935761599ea21a86b75b05837e/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/659638f6d30c28502f0f63678fe6af6232a6301124fe48e040430993/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/83034d54735040e83cf3e9061da24939d678333d47617113476cd058/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/9d1e341e7db14f24654f9d30ed6867ac6d0a683be08bfebd2953f20b/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/017daf556c06c1ff46f30c5fee7af12a0e152b8725ccf7cb5842d90d/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/83d51ecfbfcc588dc0f89b38882337c9c61e8b79cea9b432a735b821/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/cda4d03f240987dc135f2b11fa6a32fb6268be3372588cc09424d237/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/a6ba345801ba69348acd5a8d29f5edbe328e44a9c3bc46e4a9168311/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/78a137bd17c0ead7bce402fb866b248969b7def03076639490ced566/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/9c16090601187519ca226beab456f6b5665bc678669b1505362ec7e3/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/4676e0500c168e7e01198b54d03e019638961436a734e4f155c79e5c/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/9dcda5c1c0ba620f36a8e8171a7440d477cd36b0083345343986957d/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/ca47f854c5060e3787c1bc6c2642784f6641453cf15dbbd9620ef808/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/0fda3d413eba598e54e6186aa7fdabbae656925c8b240d97d78a8599/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/d2594c652a8d6e1c8943f4e6cee5bcd0acfe7dc2833a728ef281a374/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/eeac2f9642a0074bbee17110abd21d66c85fcef8832feebb089f0dda/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/dbeb7ff43d9a50dff1ebf9b42f27b9482dfc1f2ba10034e8037307cf/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/0d51f957b352de4c3f04183a6782f28d33fb10d885af250b4b1f221c/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/27caba5563ffbf3486bf4d8940218e70d69b17c80bd245820a0ca8b4/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/348ba5534f99fd4b7a3a773f649f8500066dcbd7e3967d24b0ecba77/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/c963e7e861b2caf7ab9e9e4cc72a75543ba8d2d72ac05cfcbe0412f9/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/9718d0f845b48ab391d42b7b24c932036d505f95ee03fa46fef8eca0/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/9089f45c063f60b18cf9912cc344369c8152a4487077d12d0e69fb50/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/2b85bcac0f0dcfe4a240919e497c2d524f037cc9301265aba31f850a/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/a32de52db9804e692e0b2ecd9a9f9e580901e5c2ef0b3558d899314b/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/1ba5cc3cc2553fc6c65d8eea09c200b505e06d00e23a8637c430a2cd/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/f4c52242d584d11f5c78b52d1153728820c1af4bba6f1a9638c8babb/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/762bcc6ac9590541e998f3a5b9eba759f44b818c9501cc9b7141b741/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/66c36d964e10571665c998a75947441005be6d0fe0ecb6462387cb4e/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DoubleMuon/020f30fc37a22dedb9030cd35101176a50685cb006fad56b9ed5ed5e/000000_000000/0000/tree_38.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/QCD_HT1000to1500_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/QCD_HT1000to1500_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..d82152f6d --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/QCD_HT1000to1500_TuneCP5_13TeV-madgraph-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT1000to1500_TuneCP5_13TeV-madgraph-pythia8/2e4e46fe561345404cdc0db85f688bdb8730715096f6ce148fa86a53/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/QCD_HT100to200_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/QCD_HT100to200_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..a3b11e54c --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/QCD_HT100to200_TuneCP5_13TeV-madgraph-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT100to200_TuneCP5_13TeV-madgraph-pythia8/d8bf2d03aa5a4ffd15a033cfef6ba6ddb7d6aa288ca882d269b4390b/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/QCD_HT1500to2000_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/QCD_HT1500to2000_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..4b7df56aa --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/QCD_HT1500to2000_TuneCP5_13TeV-madgraph-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT1500to2000_TuneCP5_13TeV-madgraph-pythia8/fd21b5d9ac16746cb57241c7ac06b0a5e5204d0862b4bc533669e8a9/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/QCD_HT2000toInf_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/QCD_HT2000toInf_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..b379a654b --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/QCD_HT2000toInf_TuneCP5_13TeV-madgraph-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT2000toInf_TuneCP5_13TeV-madgraph-pythia8/bd3dd179f62e7ef1174d1ff84a59f6cafff38a303745473c4e83f1e4/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/QCD_HT200to300_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/QCD_HT200to300_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..e32f0a3cd --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/QCD_HT200to300_TuneCP5_13TeV-madgraph-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT200to300_TuneCP5_13TeV-madgraph-pythia8/72240183a0c988881baaafc7b15cc15f166402a2df366ce0b88ddea2/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/QCD_HT300to500_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/QCD_HT300to500_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..841de69de --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/QCD_HT300to500_TuneCP5_13TeV-madgraph-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT300to500_TuneCP5_13TeV-madgraph-pythia8/427b23abafa9ebe1b78e475f1e1b164855490e8075d9892aa8fd11a3/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/QCD_HT500to700_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/QCD_HT500to700_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..8b108984b --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/QCD_HT500to700_TuneCP5_13TeV-madgraph-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT500to700_TuneCP5_13TeV-madgraph-pythia8/35884cd71472da5f25cb6c4fa45d4fd769b8423f88f796eccdfe4f7f/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..148d246ed --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8/05deab2d70ba38daca1e29c2621ed529f00ba6b4ab97e78367a4a695/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8.txt new file mode 100644 index 000000000..8caff9e9c --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8/cbfa6a0b9b87b11d6aa93efeee9263f9ddee07262c81a71e319a2599/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..0a5ef721f --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/e6e8da0aeff3501d685f77cf5e9def8fd6871f469e36e2ac2655347f/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..039318997 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/21c6c153547768bd8d02bd085dc1c065dc75739452a752f43264eb73/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..a7ebc59a6 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/8cdca0377fb830ec2c3ea2ff6befbb489736fa911d4faad8fec1fb68/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/d23cc8a3e6457eff8042d22bc9825095e3c729005b1a38d3220ac276/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..9eb57cc6c --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/96a8db99ca27da047c434ee642c26e15ed7f465cf9a68afc035e6788/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/9e68ab64d1b4d9afd3fa174ebda8ed67521750c38d66aa892000cb67/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..03e8351cf --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1,36 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/98645c9e4d8088c16c30cc5d3e11074f872cc77d3dd754d8ae829b38/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/c1db3c5d7adc7512f35d768ac97d1a0daf9f0668d85173cd7d7c2938/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/8d4afde1f194ade02ff30b1c8ca09df8ad6a2c9b02b5bb1c69de9466/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/e306285f97a8b170c617e965d359d3f24bfbf4a4df740f6303e9f988/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/8f469f304ad58aa1195f8a061b847fc23b99fcdc31ebbd778e667215/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/dea7c277c8b4beef0c82c510003eadc53f0e719b45cc221055b00ab8/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/bac8bded62f7f78938b12066437ef8772aae9314c458c704f1f53283/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/a454ac6f6a333d81e0c7509960cb103cf7a8db50f6fc6c8b7ecd1b9d/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/d10ea5180c89d87a950e94bcfb3ae932b596e07955146f1085fdd6fc/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/a34d48cd271e05073b6f8a13ad5467905712b0318a6e4311936a9b43/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/8eb3ae0d414bf9194541592526ab124aa4ff2f35820639cf1c74567a/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/d7d1555949b0fca5edbd10b1b921b6abd881c630fa2a3f4dd7790507/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/bbb5ae8b273def505747d3074b7f24ddde3b6109b552676bbcfc9dbe/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/54771df46441e8f58ac1ce4eaeee09a093215e9ce70697cc88650cca/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/749f4d2bdaa18faf0c88cc38a86fa52cccb4fbef76d5fe3cf77c9708/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/c13641fe83e0551b4d6b3c05761dd390b6886a18ad8793d0a9a1f32b/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/9c5e8836babf1f3664408cbf95ca60d282bdad17f2ab90350e2e1c71/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/83d2d30bc32f21301a687f02f0f4e96b131d17cc22c101712a1a0d85/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/6310d03175bf2f308c05f6a04dcbf994ef702c8df7ac60479b568d01/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/6deed7abfeb3ffe181cfe71e9851c8adc252c98c1977e2547c09659a/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/988ab632915d2704210636aa2dc69a8b15c60219fe2dec8851204ae3/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/ebb3afaa9c2f2c30f3675326836afbebf3644b820496142b0ef6d52d/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/d867054b420cb4d0151155b5165310ab05ee2bd83035ce2746c19c31/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/f370cd63beeab254322657b9dd658c392520b92cccecf7f00a70c0d3/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/4f6cc9bf875424753fd31be196c4da925d4d93657881aba7bea9a72a/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/9620522a9e60f2a76a487c23a046edbd0280f8a3a70ef3f60ce075bd/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/e4c59785a37e38ede3c1c823df5c368236ce5e9e5bf77b9d0c08bc0a/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/fcfe327e9a795e71f22e8333c743c4411b6a17db734f6ea270742a09/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/d5e685f2c8924f78276f5eee6d4d67206343e7bd39a7247619ba1b90/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/684ce9122cbfddda1b3d70316b1d596e3bef43de38a4ee934d2b71cd/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/3fd7a286d4df7fcd61d76e8ce3fcdafdf2d6c331e155a07114b11718/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/a6acd821042da7fb5cde98cc9b1140c1a97f8c5673e0659d0208794c/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/d33792396335a90dc1a1794116e72bccaa0fac84c92bf489835f11d8/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/13c370d00ceca807a155cc8eb87c3626bc9f069c648e40a483a6effa/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/7349cb3a101c513e3f5830e260e0d4f0893305aa99ff5d9de59f6960/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/e416ff7af7c8e369dcc576e8b5bfec800c0df9ad7aefc54e98a1caa6/000000_000000/0000/tree_35.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/TTToHadronic_TuneCP5_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/TTToHadronic_TuneCP5_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..ce8b10e90 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/TTToHadronic_TuneCP5_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToHadronic_TuneCP5_PSweights_13TeV-powheg-pythia8/f36f0de2380cbaf7319905d8e24269be7f3d436e80bc0e43ade114e8/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..6facd4d46 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/80821f13951b790b2d021bfb7669fbd0160e3621adb5e539992f37f5/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/0595869d58c19f46bcadfdb0743287e230a0fc3b791561a350b6cb59/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/W1JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/W1JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..59e26478b --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/W1JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W1JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8/1653e4eae518208ca123694078bb306c7236c690aea60aed9e7d1936/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/W1JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/W1JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..24cfb5029 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/W1JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W1JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8/281f84bdc7beb6f401c9199a543733122a88a99372a848adc5d72d1a/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..fddeb41fe --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//f7fb8d0f82da866494f9fff79534db067fd790598b486edf88a86f9b/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/W1JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/W1JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..44054f274 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/W1JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W1JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/add81dd753dce733c45c9e87dfba843980dfbad7855e0cfee961bca8/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..3f6c30311 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//1df8a68cc3e2496ebcead09ba35ed0dec0e477b1b6a803a4f52bae68/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/W1JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/W1JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..dd07ca162 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/W1JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W1JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8/44207e4b341b973f125c39c53f7a5aa1e5c06de4af3d5948540d2e31/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/W2JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/W2JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..79073550d --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/W2JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8/33b59cfad08b52b70d4f856ccf035f59eef766841db482c8f877fbb0/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/W2JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/W2JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..f932e29c4 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/W2JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8/7fe8017d60b4de341d22588fbccdf53582803f92d4fdf3ea3dce3bd1/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/W2JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/W2JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..c79f8f55a --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/W2JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8/93cd8a439c309b60c10f043438c82d5a574fa1c59e34a804c17a34cc/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..a355a7190 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/eb2dc11bc7ef7a5c814118b8b2252bf3d734dadf2495608fca966fca/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/W2JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/W2JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..b9d5718e1 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/W2JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8/ef595433841afcdf07d7112900c5b97c28b608d8b7b9134f4af9cb71/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/W2JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/W2JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..2b70aa8d6 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/W2JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8/0b92594b7928ea9e24adc77753454f2df031d08ab188ff217bf01de2/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..ef1acb563 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/c44d331209704c14113c6be48a2b5ae3339cee012e501bed45445b2a/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..9194712c9 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/1c899a7cc3fe6a199154e3e2fcd24db3ebbd56cd75af259e343cb7d9/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..8ac04d02f --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//065501077efb5dd107cb3937035054b207158607e6c5ae860ca211e9/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..136ddcae0 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//23e64d0ee71b11610269c530d7d3de7433f7fec0a761c8ad57060a38/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..199200f1c --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//8ddf7ee4c0bbe618b9d28ab22bfeb88891109da65414f2aa454b09ff/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..b01e13500 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/4445f773646f2080e55849d454b80572d2db9e838b91316a5e12aacd/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..390914afb --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/a389e94bf5a32a74f5f7a1a186f66412d1b9308790abffc12bf224db/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_HT-100To200_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_HT-100To200_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..8b0692976 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_HT-100To200_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-100To200_TuneCP5_13TeV-madgraphMLM-pythia8/7467a779a428824a9e03fdf902b90d18f42abeb3c8e08a6493344066/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..75b47c14d --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/57c7b3a9ed051a88defccb6473ed14f30ace1728cc9a681c70c647bf/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..92bc670b2 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/ac0456a7a52b1596dd8fe1b876c8b3bb9697c8944374fea0c9b67e13/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..4efc01208 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/4897a3965e95fdbec990f5ebd837002f413b1a7a5a5686c2986b0b6f/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_HT-400To600_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_HT-400To600_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..4bf96d6ab --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_HT-400To600_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-400To600_TuneCP5_13TeV-madgraphMLM-pythia8/3428cebe3d1aed6018e7650f058e44c517bfc7cb0456028fc820016a/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..f8d7b3fc6 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/c15d391398942de199036978cb1be0c5d431c65de02274c6a614a6f0/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..3694a5ad6 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8/930464a1d29790ebfa708b3ba147db04a32e1e7d3311501225d4b20d/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..f71f5adf3 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/WJetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/2b802236c07215501177c51cc0c8a3dd96ad0c028214127371ff7f91/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..bee09c265 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/315423b54092e4152b617c21746f3dacfe1e88daf44f392ed65e2667/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/WWTo2L2Nu_NNPDF31_TuneCP5_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/WWTo2L2Nu_NNPDF31_TuneCP5_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..abcefbc02 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/WWTo2L2Nu_NNPDF31_TuneCP5_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WWTo2L2Nu_NNPDF31_TuneCP5_PSweights_13TeV-powheg-pythia8/05d08f845e7e353d832e483df13ccdcdcf790e7701abbdd959f1afb5/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..6da92c64d --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/95ccfec0c20d06f8711f48a7c927cfbf7e3278d8320fb2d18afa3240/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..063a00d75 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/01480c4a8230eb13a2d2e4331af97a156e1961f0323ef7dc6bc8bede/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/8fde1eadcb0b957c9e005a849a7ce2d81822a7e961995c12595599d0/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..bdfd9f655 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/0ed405f56b353a92fe6a42b1f0d4f4a3d5e888d44f972da1ebc719c3/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..ed9b557e1 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/f17206470dcdc884db97a302d01d788aac3903b2f0f0034ca15d2a4e/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/Z1JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/Z1JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..78ebee9e6 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/Z1JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z1JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8/240d113c152d19bd2611344be10a462f7d349d9dca17aa423b04a65c/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..22d745420 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//127ed0bde6729c8c11466089425e9a1913afc72ad0ef54d8c623dd66/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..f520882a1 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//2dabb5c13bbe39bff0b24e411d02e4f022726580f7522ef5f43f00bb/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/Z1JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/Z1JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..31ba4edc0 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/Z1JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z1JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8/336d0c8c593d28abd881e1d2bd892b08fc814f989e93066b842a8b7f/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..5eb54bae0 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//ebe55a19d2f4967623b10c72f0bbd848781c00030fba0525cc01dc49/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/Z2JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/Z2JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..2bc4ae3bb --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/Z2JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8/0737f98fe897bcc6e36607f82b9332d1b30ecbe7afff77fc22d362f8/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..2f26c30a5 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9e228ca19712a2ae8f429d9975e0f26877e421be76a8a254f732b556/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/Z2JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/Z2JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..98ba4fedc --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/Z2JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8/70c7b7264dd50b28deae8480eb4c3bb08f6b21abf00edc1ecd696cbd/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/ZBJetsToNuNu_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/ZBJetsToNuNu_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..650ba0908 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/ZBJetsToNuNu_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZBJetsToNuNu_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/71d6f6076ee3d89fa89dde4c4cd6ab2cc6d16219f43e8fbe8371effe/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/ZBJetsToNuNu_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/ZBJetsToNuNu_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..90d734771 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/ZBJetsToNuNu_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZBJetsToNuNu_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/f62ff8b7568c265dfe6fca474eb206e6715851aeb3972dc8d9f68486/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..d230e280a --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,25 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/427850121578213a1e16cd20dff4c4b028a1aee5b02e4cbd4e1c55f6/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/f4d2c747925bb28371a5ad158cb998a7c2c73a42ed1a3da7a6be03f0/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/92a25e4af251a411ce26aee436cc7e7a9045f0188aa58675c53d2f9c/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/d47007c776d541b781fd8ef524025a04622a0e289a8742be0b8a41b6/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/bc691b0871abae98b04f89f787c8606133a8e1aaa8b4c1ba6ea56b35/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/c7ab03b733efa5a2f2423a56d584a236724954b9b220db386cd6d563/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/4b21d64e56adccbf9cc86fd8e250b71aa4519a0d7c98ddf26be842fc/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/fc79302d391e83c8ff6ab1d840cc0aca9d9440a01d2c82616b0f5233/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/420c6541c342b69ddfa74b6664b7edc0633614da787cb466bcb7f695/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/fcab2385c2a27413360194b89b56dd160cbff858ac3ac89adecc7da2/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/4c046354886ce84a39a58a7d1097d0fbe788e88134f8f28338da15ee/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/01d66d6f37ff4c918c93cea62549b557834e6af2a67697c8b61dcffa/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/b824a8fbb9665e2df7081e9ed73174d32cf5c8cd2c058a9b65b607e1/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/387cbb610ea180feeda7f517929e264cc0d798d87833fe2be38228cc/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/59af06c938ccdf862d73042c49b9c31d1dd1bd37dd49fa6dda3f7d08/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/3a3cbaba7a3516f9516d2ef0ff833bdedffd1ad4cd21437304250fa4/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/251af83f868bc2ac4aa704a721e8f28ec6179d3790ddd3721f3b1bd4/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/fbdc43c747ceb253452fde59cff9cd11da10984ac164f0c5baea6199/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/99a93cb9461fbd660f2b9842540a581b0928aae0c64e0c89e249782d/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/7c5923cb50c25bde707d030c3580cc2a5cea2d6add8daf733be07ff4/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/f66645fd62fa631576de87e7de14571240c79da0c2db385693b3aadd/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/bce8d03194e76ae0b34acaabd66571fb1b0065c8018ce433b64ae706/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/b9f2beaedc2ee15191fecf903d54dc98d3e0920dec1f3bb9b5195275/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/1b35dec596eba4406ba501a48af2da946a91f2514c758117cf2ce5f5/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/035a08b6f7a37762c89e6587c65fb760f25d05d6c54fb3c988e6d208/000000_000000/0000/tree_24.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..3e62b2f84 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/ca5ce523e5ca11e82e663cc5b7ccf971f54cf48b23a23791f0359efa/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..4af4361a7 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/4fd82abd2b7da0e082a4745bc19d89a15d1db205b55107364e3276ed/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..02f5d440a --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/09c7ce5ab59662463422fc4f39709534ef66191a14481404eff659fd/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt new file mode 100644 index 000000000..8e2479a86 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-100To200_13TeV-madgraph/3df274b5eec776d84760be12ac2e75af7c82cba956b1d244ee4df490/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt new file mode 100644 index 000000000..c300436f2 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph/b641123de8f8a120e5ec7c280de494401065fbe6437965e14095ef7c/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt new file mode 100644 index 000000000..51708932d --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph/c9c29c39bd8742113407491e3e86476c214672a0e33d607bb1137b4f/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt new file mode 100644 index 000000000..b9280c2f2 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph/0a07af73ced9d16b16ec59eddb8d117a5e5ccaf5b5156b281afeb7ac/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt new file mode 100644 index 000000000..1f54eddf1 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph/e4d9f67770c24158dc120beb1f0145224d6b3a5551b634a6b830abe1/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt new file mode 100644 index 000000000..c4e00488f --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-600To800_13TeV-madgraph/da488d706084164521f7d71a5d6a5beb023d3e5baa7d917dded691c4/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt new file mode 100644 index 000000000..9b9aa293e --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-800To1200_13TeV-madgraph/8fd717d5ca900c9652e315a9f0ac01e42bb2ca5f44400619f7b545be/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..11401be24 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,16 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/9b5b5e3aec72f8ecab4cce4f04e0e24d6edc84a2d83501c9005d68c8/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/4ca2d5a10d66cd11abcdd96f12058b68f52d4ae81bf3ac1c741f177d/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/c5fc877c50b35d4318834a328a49ac148ac1925e270984f65bb40862/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/263bc38ee08239d5466df90e164975d9f791bc964f752ca12746a8ad/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/c7bc11cfa90d4c81f54b52f960be7698769f735e5557c975811f38a6/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/76c715ab7604b428db66585b21aa77cc6fb1e1369f9a0e4f38691341/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/b64344d35245ab0250a24e851f84adb6139f1bd19a8dc9aae2ea5e5a/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/d13ab11cf26aad482eede962f91bb8b0ed423050bf551e6d1b3d0d59/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/f31318d23b92c99d29ddfdf3033b64c294de6a69c2c950a54dda9e55/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/1277163849576df9a10ce26f3aa8e12a0f5a6f9ecaea8045219c33e9/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/1ed05f735c05f2382e54cd8115724baebacca584a76456905f3e7729/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/816968daf1ffd616ab22e7590dbe8d8b12dc152ac87175b1fc5e4d67/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/e917cf6ee87b9f64b2290b5bdc6dfda28f6fb9981a936d83df17f406/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/cd24f758a47e35e3cf808b1776454a4c3f489f943b0e900b3b4dd520/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/8ab0bc7561a384d68d85d2aa8d33ee64d5744c03ab72b7c9d48631d1/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/f227c620c775bd6d8e6c70e635677db0265a1fc4a4c16d2201a729d1/000000_000000/0000/tree_15.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..6a74c31b2 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/5489e48479c1a0fe9b0bfa6e948ea5d881c69f5f0165882a9427235c/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..bdee15397 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,15 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/c4254001350ad45ef83165a65a5bc914a7cddd92fec2def34081ed50/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/93acd37f9fd95d40e13360c2f3864a279d23a1dbbeab51b32020ec7d/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/4800369b6e7b25d9f910f0427564d51d1c1535d1a36f46bf8813bf6a/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/4ccbdd4d1bbf8c0a7b30cef25cfdc3b989d9c613e811076ca858cf84/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/a9639fa9fdbf97c01dc73a12c8c4c6422d534d303b4e7a1024990808/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/51f27d957997396496f2d69f59679c0b32b0fd5b8a0934f99ab6bd16/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/e890cafc4a02197a903052a8cc2afd95f3d9e014301781d78613a06c/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/5389395b5f1601e414c4ce1212e2b9ddea353c691d1a08363cb8cfae/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/cfe38e875182e99bfc0f47125899d7a8332a05dfe352d2c968f8a1c2/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/264fbb4eba6c5eae8b583c4bda864d830632737ebcacbed2e38e449c/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/cdc7a45cc74d7457ca22e5a295fc05e4360dde23326cd715ea1a826d/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/fa1f65e63e8d1804a76e55c06e89ed987add600ebfeff255b15400c3/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/93e689d0b313fae668c37cff90f0dbc4f4c2f196064e882bfdf4d5a0/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/95ee9cba6d5d03aedb5ad94cc66657e5c20717edcca48fe80cb6ea56/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/854c85d021715ee461482de39550acc0ade8f3b7879de3b9a084d832/000000_000000/0000/tree_14.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zll2017/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zll2017/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..3a6f7a506 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zll2017/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/edf17d54b1eeb80b8764d16862a34c62d0146fabb534398b1e1b198e/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY1JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY1JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..21c10ab54 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY1JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8/d6b88e16dac8ba22fbd0f1dacbcb8dc934aa527dc19964ed62a25417/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..d54361a17 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,13 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d94a7ba75df344b97044ad8594c0231060c3f2bc93c8bf54a1bdf042/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0b7160abaeaaf035a7a4a4e20d51e30744c5ec210386924154b476a6/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9f685a613aff201bbb6085213e7b97ad05d045c733ff9a9780c2260a/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0827b897b37c6db26d88528d985589d463e260f4491ab9502d4249b4/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//43904941393bf46550acc9bceb6d60564aa15096255b2b9ec51f8ac6/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//fe519fcc2100409855215a1580aceadea80953eee2c2988d1b184535/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//14be5a4b1e488c2a69ce105a80e079aac8a717bc38f53d16925b240f/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ae13d9c1cf7575529b202c7475b1cbff0d7700bdd50c20ec67591f1e/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3f6a32aa9022a89968c9f78dddedc0716f57982d6f23c69c9b574b1b/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4e133e19ee1defaaff18955f0933775ab676f203e23764924b896265/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6e3a46468f7ece27e31912c1df8069fbc8eebdd4d58eb68a733023c5/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f3d508352ebffcbd4bafe9b8d8fd1ee69af4b6ac3018a05e6a27080c/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//981d35b33580dad961700dd5249706f06b591b5132ccae156d4a3113/000000_000000/0000/tree_12.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY1JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY1JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..060b11ca9 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY1JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8/ea85b5d3ac72ded6d2b245da6449fc5af4a7290d0c3fa569de153174/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8/b396a7580006ebaa100560724d84fe4e935ab52f1996cb2e3ef7970b/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY1JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY1JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..6acf43a51 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY1JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY1JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8/6db78d7fa9e0dd59baa9dad80f509fad04f05316fedcef735b59f8fe/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..8ca5cb831 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8//089b58ed63a02ae2b3569772c4215cbeb62cb3aae47a1a5b01271bce/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..ee35fa454 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//d3bb83c2d29fcc51933f43e2ab7370f6ec6267f8429b5c1aab416cb9/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/DY2JetsToLL_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//1c9bc4ac56cb11cf70909cfad74151205e6f8a1d6108deafc633ec80/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..d66e3431d --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,97 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5773b2846bd116f4805cfa1c923b467fd72aadcdc3df69f63c9fa9da/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//8f46043a8cdbc35185cadcc98334a793eae28aed5c8cc09c927daf78/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0bf17213b200becc921c57a28f7e3ce48b1f9fe7224852aa59acf469/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ffad87f2631c3022d09b4fc8f38a17118a2c0b3238cfca435d67f918/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//423698c8959e0f3747646ecf491bb72fbc59a2cb2aeab5e2e2c474a0/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//bd6e13c624f644108740629bcd45ef197cc5603ec2bced86484bc4e2/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9b68a8097e79f7d336df90d9277cfae215333ae197addf3e94fbe8b2/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f3b8684aa73b70233bece2da15fae87e111fa3afbc8e3ca734c1c474/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//03a9d3b6321bf771a36020b24d46baaf4d17bbfebbe55ae2c1dd7627/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//665240d66bf9956f0bdc2a7a306fce2243bc63906f87fb8e34b23d5c/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//fc2a823097d50c691c31362392ddb85f8a9b52dedc26429a81d0acbc/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//666f7fb4874e21714283f7205193bfcdca8c671e8227fed9541e60bb/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//98b647769f2e381f7bf3bcac17cab610d4e4f915f41f95e0ba6c2122/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0abc758476ebbf977239549ddbb100e61ec40b560efcd4e561c10177/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//86c84f8b7888b3102aaebec1e43fe653c6e1ab2ff0bb8465e7390b27/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d8f6ad9811881f4f075751c26ea2bd905bb18c929766a5fc4cb4788b/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9d3f92e620106eae260702bdba122bb781375a7a0c4a044da74d692c/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b2a81fd6416657d7feea747c00e94bc283796a9976272871e6a0414a/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e4cf7f41475b8106e266eb2a7ddcf4a3ffddcb3ba92c3e3f75870ebc/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4bca5d169065442d4ae53b70b431af8134bd06c4eea716710de2c241/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//edda6f85d07ea368ba2d46c5c864d6dd8270175716259e902be7e2db/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//434cd07e37370f7f49f1bba45a7d035386a5702a525a21e11d35bda6/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//af00c533a18daa54fd477adc86226cb4a3b78fb84f419e6b9a080b89/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b69476343a5545ecfe024feccba4379c276e78f4131c1c2a52de28ca/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//28b00ef6e7c7df2c1792702b618eced05983a6778cdb45a826f96c4d/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a5360fe307df07d8fe93c04463b5255f3c9b95d5c673f3e653a87985/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//24fac235a1019d83779473fa77c05411b5302aa6baa6d55895c5df98/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//599a3d8f6dbd322fbe5590ce97fe934bb5d7d1aad54859a8fade73f1/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f519ec5ad09011afe3f1717ec3cd9505b3172f1d6cee932e251c1ada/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//17f7f03a84e89d392e90c46fe428e191fd0a321f0dba63793d8e3242/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1700b8a7ec332f92447c9417a69bc5a30a4687b5dd41e846232236ea/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ad56d5c879259ec27c9a585932c14a1691c4bd5e2dd792313401f84a/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2f34aec0017c69e8e1f20fd908c712395f0829fda3bd675ac393a779/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//7e5081fcd9aad26147d01f86fad5d8b352bf525c6aa032ccacb45ba3/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1453b60182a1a3e4259f8ce62b8779f3854fc21f868ec7128957ad80/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//904fa32f19543533d852b1e72e5da43c9b276dfa52f2bbe40242c70b/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2e392e21e86e8db9f0e04fd55f700521e018e7b87520f1a8525b6474/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//57d2b86c83236326af56da1fd99d1f8c1af6dd35e69a7c3e16da4b9f/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//332b507c2302f47ed1d56bf452551d1385907402919b93e7836f25fb/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//db4800920472530131d31eed3b5cdf9edc2fd35ae93ab54e8f72feb3/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//7dc3bec64c59f5a2d6eee244ac2d83706edbdd76d42da12872ebdd45/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6c2b7df708674f500ca34f6fbacd267f4a154fad085aa724ba4707db/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2394263741a60abd7775863cd813d87b95e122e18435211b00f88c95/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6b67bc450c51c5dc9623a8b991660fcd2617da7af24829c979fc8c44/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c7531ddaae9edc1c9be6f8d739e4280417daba57c9b785c765d38870/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a178ffa506544264929a691f108938606d056e4c5beb418a2fc948ac/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//56005a1acee302bec7aca9801fe920b6d04744f0dd14f591d6820c61/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3f4781e862c18ff737b9233da0bc5cb52ec687343cd5daae2e90f046/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//abdd0c5a71b410b09e55378bc6e093efeacd557a571acc52cec65cab/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f0c620ce404c680ef14df331a95b7ffd70e6cab017d3032046cf3c85/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b2b6b43dce0488c40545f6a50524273ca3d17e511e7e637382ff4ae3/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a38607c3bd428a28912293d3659d0490ac1fad04fd9fd18ef94fbfef/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2142809e71c731428f20b3e2fd282f2608c08a7a0c8afbe2d67bb918/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6fd1df63b5c2fd47f45f534ab7007da075bbbcf056ae5e2ba7a3b62d/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//166cfa3f717d4b2507816441cccdbb1b06c009628331dffa7ee44304/000000_000000/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1a02004b51c797a1fb00cfb1c64dce60e05b259d4a0d929ba485d331/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//df844f898a115a0f92669c6a5e6635719047172cb6ed54a724d30f8e/000000_000000/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//98c6503389ed47c99a687010582c8a1a53056d52028e240d9df29729/000000_000000/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//fa1dc571ed3b22f830284954730778d18fbb4377a96edc7e2ad62eff/000000_000000/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5e4d9690bc25274c1cbc0ced1a8f17bf5a023ae8e4cc282607925d7b/000000_000000/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c6b424c3223e61bafd79a345d28674f76b53cf978fe4ec82debe3dfa/000000_000000/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//7f40f250e8d708b07fa925e89f8c2e766c5e75387ec56f2ed1742575/000000_000000/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//81593c8586ca9e652ceb535b574adb08d782ad2accbe80891523b4e4/000000_000000/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ec3ea2b6064ebff7176a99ccfe5a6f65db5b2aff128ec312183568a7/000000_000000/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//7a59fe8bc107d963de956bee9fcd68e73e47f34ef51e3d907cb2ca8c/000000_000000/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//728118b71857353536ae4b5488cdc7d50e36aaf3dbec8fa72185caf9/000000_000000/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//eb568ebba2dc1c8bc312daba651ff792fe9702e3e1587f02e00e54af/000000_000000/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//37b18e5b02d319934ffab6cac2a926a6f955a81f84424936d3e88752/000000_000000/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//0e96f920d77b98f80b8455baad4389c5e9915578e291e255cec6cc71/000000_000000/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c479210e02b5c745fd693586a9c1673082987b8c1d9d30ed41554e8d/000000_000000/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//993c403db89e21c3a62c15a548d7e758fd490afdb799032383aad5c1/000000_000000/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e08c0fb509913fd3262acbe1121e7781b0adc089ccbb68a2c3ecff78/000000_000000/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//37acffaf3cef1af6775099d6e9d32fef3836e80de34d93cdeaa3096d/000000_000000/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//402053b0160cad0d603630d9c00e23117a2a108ffa1f5d44a4b7ba1d/000000_000000/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e2345625f38bbd4e256229ca7c01238bfac3d6e15be90461053c4885/000000_000000/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5e7edb2cffb87470a35f9de7298c2c3e993425a8ad683ee324c4e800/000000_000000/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//7f064bedde05da37fcba40636449a21a537e2fae682ae590cf06edf6/000000_000000/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9a130f8ebd80d25fbb23b48ee93a46ace9288db65aa209babdba496b/000000_000000/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6b4e85674db7be4e32a019c6488786e792057689d15546081b607c14/000000_000000/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a5b27cd129cf0b6e7997844ffea97e611e5eb6302a4639cd4ed0241a/000000_000000/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c5095145596bb25fd16ee15871d36e5b1697b9f508f84b700fedd8af/000000_000000/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a7a28c8c6641267b4248d0401a7ced32e46783b7ebbe34d7211b8beb/000000_000000/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//deef009672fa64c45fbeacba660ecc589318f7b220b71955fc81489d/000000_000000/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//353f4a49472f3e66f3a0df992bafa87a1efb0680745835c79482924b/000000_000000/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//37fa0ca01161aff2fcfda6666e13cdb956cb3553109874758f486711/000000_000000/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//86c419302549cd11b87638101c3cf8f8749c238ac80b40f07de7728e/000000_000000/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//063ef0bdff30adb603116a7055d7d5f07a24d5a059a19e7d996758f2/000000_000000/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//39482b2485132630d1696bbe11e5168f959cd9449ce66033d3e2d542/000000_000000/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//cb8db258528999e1792220fc3495ce4706ea313fa6ee94f1658d9cc6/000000_000000/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e69a2ad7a5d0a75f9dc54323fb2b030ab1f6a84b9bbf0c2c27dc284b/000000_000000/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//db84f5492f501ff618ba065cdb517d602045804fa710fb9b4a868e19/000000_000000/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1a7110a801840b471e9c813bdab224b72cdb4866608eb8af15eaa2d2/000000_000000/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//248fb34356ebf51e9083e19420b9c2a3244f59b03d19c2960c4df5ff/000000_000000/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ead92de7fd6b5a1ca016626cea4a3e177564d28f9f66ffb857630ab3/000000_000000/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//dee01ddab4d8cfee5cc27f36f42bbd441abdef393835184c30048db8/000000_000000/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6a1606000eeb69189052940d0805ca514ad82d5d3d08f11bf43e2abf/000000_000000/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d65fec5a535f6b7b809e5c97f86aa253b0094239a75a433608f51dfd/000000_000000/0000/tree_96.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..2d47e6f1a --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,38 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//c8a140437765ac0bf012a8e1596688df072c790d484a9d183ec241dc/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//a52617eeead0f203bb1e28b306b5a59c63141f44860add86b8f26dcd/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5c2a6d740e33485ca6f31e660e7de404fc2c64c154f0ae4244ad1696/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//468fbb70229540bbbd7bfebee27f5fd778d820ed8a15c53be6ac58d6/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//e12a2e57a56db4059c0defc5a0e2d17dc794376d8556395e2d1010e3/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//ff76571177eef7d5502b0a664cba567a2e31ac060b6d51b7908d6c67/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//e349ca262974e901c9985082e035b72b57555370a26768b5404f50a5/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5bb631f109e782c1d8ae4e98d4a99be6a41e07bb3cd1875eb225c733/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//526e2bd960c4a80bd6437b21575cd82d9fc49ce7f2089fab29191f7d/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//da76eabf7f8ff9a20d223a151926c49f80d47db9166463bb88942505/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//f43e65eb48ff5d3eaf70c206a45426fd0702562b36cddb95c82251f8/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//cc3e08118ffe748f6f52a0088a89a059cbed48fc91c566878baaea02/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//562dc429837d5d881b42f5a70d50b099eb0b34c7609487261a1765ea/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//7a2b8963cd2a22158226673ee2bb6ee06ed61c65a0de308ab2d91750/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//23b1318cb9cf99c5b2b601e9a11b54c4108920a0c75c254f79c69ff4/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//fb8cd0f9f0e659ab7b8205c40b9dec78fd90dfa60f98d843b721cd21/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//045f99604c442734a23e8cafa12ef6fd82c655d61bd36bb96c95b72e/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//509de9122b21f5c3315f87f95ffc27ba88d52bc619016c39ffbce89a/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d96191c982bf5d9ec717e43cdf3e5c2197ee36a4c5fd193c11a4e489/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//02542011cb7d28c2c501a97c73a4efe1f0527431be48ca0fdf2a272f/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//cfc8b623a4187de19b5b754d6afd308ffb4958da98a093efce274a84/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//94a25aeb7aaca5ac953cd45e2a1750e518b129b9d5a068448b6855ce/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//6f344685169b727096fe5970d3192ab52c7f8195c9b7fc7a0f30430b/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//e9400c02a805f8479165cda79d5fdf5d62d4cd8487476e2724dfe017/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//15d27b478f73d0b55c1045ed5003a09876c15b2e545e7b23e2b77c25/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//cd31562edbec12e7a85cb409671074b6cee1346f5c78c69f173bd763/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d569f67619afc96d80081a1eddbbed4b3dd3ab96a12f4b39a6bcfc6a/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//24029e5e71748744c6f582789f08914cb8db5894d7731b23233d13b6/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//16349fb1605a04eba0368eddaa4edd3a7a15d80be35dbb3367364acd/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//555d45b51807312d4040d7c1005ea837d70ffe7dfe58e469553d4405/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d12d8ed64dca153fb038226b8914af0309ed79b643b93d52c3961b83/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//3c82141f02bcd4647a19743a261236c1b93e4d1f11b8d1d38340dee2/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//629064759302627f046e603a2a3f2de9d72b110311c80f8495a81a76/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//27a746a5403168db4292324b724b49c791e71446a708ea01382e181f/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//f8b039f9de2e634fc7ec81935cf2a257747daf22515fc0e17b604b74/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//146b0622825bf39efbe18c464402960ecef9e752b2e4627d766baea8/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//3fc1b4d39d3c736b8cece5029877935220faa412d517c25d0eede9f4/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/DY2JetsToLL_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5e57606d3decd16202ac5fae70ba36e511fe4fccdd243704db503085/000000_000000/0000/tree_37.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY2JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY2JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..eab6f2215 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY2JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8/da324fcf67be93d28330b05abaa2b525e729a2f199044d1686d4ba59/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY2JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY2JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..b7aec8953 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY2JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY2JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/d7600b91d9b4c1cf6e782c184a73d537a2d095a16f06c941f70df502/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY3JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY3JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..9e58289b2 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY3JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY3JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/5229dc130c5c8319b433697ff7d320de0838eab9530e12d108e3afe6/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY4JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY4JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..7a0eb3e45 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DY4JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DY4JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/54a00a41c8c75346e5bc0e07b7c9a326358b24dcdb61e70272b47162/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..8bdef363b --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1,7 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/994c9474a09d0cc0d04c11aa5cc04932352680678f3bc60e62022a83/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/fc9e729178ba1ab63b5524b9f7c59304834e600575e063ddb2c2bab3/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/23a0b4cbcbdadb4ed46f0285fe175192aeae9f6c853568b8969c79a3/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/0c931779cd3aaed791c2992fb5637d5c676c937586804fa9e5038cb0/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/d9fa10fcde5beeed81c307236c2ace7a614ae64a8859089aee5751a3/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/a18a7ce14cedd9141d150efff62eb0dc93f9f1d891933169efad3375/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/aa847fc86c78523b7483a4ec6b013d9815e7fd326580a617ae732c80/000000_000000/0000/tree_6.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYBJetsToLL_M-50_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYBJetsToLL_M-50_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..5188da132 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYBJetsToLL_M-50_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/7e48f26c8828e49e8d54a16359d7d817cdf8d9065b58250bde9710d4/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/bde799b1c55c59d6451f9416ac5717bd9fca27485017300f9259817b/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYBJetsToLL_M-50_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/a567cbb12f5db1dcbf236cf6bd1fb396a194386b9cb3e7e19abe0e6d/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..7a35df273 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//92ea5978621aae539b5547e6c9766c20662b350d2c7ee39441e1bc72/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..d0931471c --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//be370cbad0880bacd7445c7d9ba134d1d844110e06e7bb83edfcf124/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..5e94ee2ce --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//602c7966d716a0a539e7fc8f8f00e37a1fb32ab0f9653cd916b15ff9/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//d37a11a9157a156f9ba158b3618149759504d226e9a89ecfcce4bde6/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..b3188e565 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/0674cac1fc75e96980913730a3d3ba8e7284697595183bbe1f2c2e6a/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/b03021e8aa825703f58dd961b69982ff71479e20f8474f1f14cd001c/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-100to200_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/6732ae0716466315b43ae253786afe14bd42a17391cc6e66728b4484/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..165cb9947 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/8b3567e4de8a40a96c4e63819492455de312cecad44861a4a279a120/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/b495ec3aea505914a0f541c8f51790cdcd71db7c99e1e758d60d7da4/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_BGenFilter_Zpt-200toInf_M-50_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/32ec54b13410aef5cc05b1bb4f4d36a234f9bdaa9bffc98ce669e83a/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-4to50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-4to50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..ceb80343c --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-4to50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-4to50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8/0ead5a5e6a5f428958bb34ae595f14a305b9b07d63f434a9766f994a/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-4to50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-4to50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..849fe2d28 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-4to50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-4to50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/5e7ab7dad32a7158708fdb9910f08fb9bec57707a160bd06b99eca9a/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-4to50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-4to50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..fc1452525 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-4to50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-4to50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8/57a5e1c9cdf586c6ca1cb54c601b37eb89f17b3d3fb54964a43bc3ff/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-4to50_HT-600toInf_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-4to50_HT-600toInf_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..d4baafd18 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-4to50_HT-600toInf_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-4to50_HT-600toInf_TuneCP5_13TeV-madgraphMLM-pythia8/ca55ea30ac2f1f69c33ff24e1701df62657a484c8bd929297482b012/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-4to50_HT-600toInf_TuneCP5_13TeV-madgraphMLM-pythia8/e817c094a2704e774f23ee633a80250aab2188be2d94d8c780a9de48/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..b9bfae176 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8/04ef116096231ebd4a54590ba923ed055add8dd6a349022a9d813039/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8/13e5167f183019099b97f4b13dee274c77ca3492609d12ac8741456f/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8/664a509257f183bfbcd54740b7b303f07c2bda89cbb26508afeb22bb/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-50_HT-1200to2500_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-50_HT-1200to2500_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..5b0c8961b --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-50_HT-1200to2500_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-1200to2500_TuneCP5_13TeV-madgraphMLM-pythia8/65613a6c8fcc05c704f2c4ad889fbf12fc497647e94089f0824a06e0/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..598286f23 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,10 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/9c58185f2801e3038340a170bd83f8e330c2f52b736e091decf466d3/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/b710d93aad05e273bc7e521ab5edac7c953e98062e781d56d61b5445/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/51ed0a3fbb85b3a7fca7f299c3a8c0e3c82c6bd3458860b4a6dc9d78/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/8f91bb01ee4a6d13358a316b728bb2e8f547312a11d7e0d2986b558a/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/7d0b3ec8959ee053abdc59398cfd38804eca5ad1eb14630ce71351ab/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/74268ef7810cc287ca949b64ba41628d54cb149d96aed9f38752ea23/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/489fbf45de5645691a86a4f6ff43321fb333ed379c2aae52381fa22a/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/8a5034049dbba0025ba02b5f9d23193a1bbdcac71ef5073e2bf3278d/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/022dc58a9d0a465b206ba92788db80df2b5e61a34678fd3a9ba759f4/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/04afafa20c389af9d842167b6c221cca6012aeb74b0e4ddc3a1487d6/000000_000000/0000/tree_9.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-50_HT-2500toInf_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-50_HT-2500toInf_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..41f9b2be6 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-50_HT-2500toInf_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-2500toInf_TuneCP5_13TeV-madgraphMLM-pythia8/a556a74be8175fa73b8def77052f11b8e145a8fb5027f9b9dcfc60a5/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-2500toInf_TuneCP5_13TeV-madgraphMLM-pythia8/6beea9f7df3ba027aac70be01303e2dd1b7c9059124aced5faab29d1/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..a6c6eddae --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,8 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8/afc34c9081317c08a587f7c82d5dd6616fb0050d071cd8ea2ed30d86/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8/f26c7d84f372c984cb690bc20944b03fc076f12db07a432df45475f3/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8/09b73686a877b059f951c79d22cb1de8d0e0f5eda0a389fc6c4ec434/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8/21c9896d3ee2a78804503e0835ab4a4f2b395679b8d491ef2077e0e3/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8/3143fc08e6844ff273fda8ccc0973f5083f86bba70d2551cfed0997d/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8/d3f7960846d85074b66d2660557601708e382f8115e19b01981ae13c/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8/cb9b4dc04fcafc0e809955117ea8d9c9d25395d4ead519b2bc3f2add/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8/2b4001b34acc0e377dc514c0ad5ff87194c124fc2e9dbe29ac40c57d/000000_000000/0000/tree_7.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..38e2a7652 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,8 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8/b1172469b71a1ee6d73ca7c5fa4a26778c420363d2a59c396ab17e12/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8/f43bf05f11a2c79210a7ab0ed2d50867cbc1334fbbc29e8986925ee5/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8/f2a8ad0d4b21526c1eb9a5671bf65b5217e6b9785cb4dcd157f6b510/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8/b9788c4cf171458bb6cf4684cb2b8a36d4fa7d2f480482e3b37deae4/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8/bf5b9f2a7876378d02fd14d079becb4f162d2361a882269b66c89a5b/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8/5461ce72edc48fdc4593d7c56e03566aece7aa0f83f2e0d9416de0f5/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8/e8871ce1a23f8302018fcb8dc423130ae23c65a8bdd37d3c35b2fe18/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8/bc902b65bfe2893b9f266e62a55b9ef923b930c05417c1c8447f0c89/000000_000000/0000/tree_7.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-50_HT-70to100_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-50_HT-70to100_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..51185e228 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-50_HT-70to100_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-70to100_TuneCP5_13TeV-madgraphMLM-pythia8/3f95e8c56c5434b54f66e9926fe90c5a46c952cc279be324b5ebb07b/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-50_HT-800to1200_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-50_HT-800to1200_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..0e897a60a --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-50_HT-800to1200_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-800to1200_TuneCP5_13TeV-madgraphMLM-pythia8/32abf41f21b28595dfaab68c996ff57e704f4dde42abe19977acbbb7/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-800to1200_TuneCP5_13TeV-madgraphMLM-pythia8/d8e95b71449de15c8bc7bd4051e3858fffe023f47d264781b7701144/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_HT-800to1200_TuneCP5_13TeV-madgraphMLM-pythia8/09d6e039af7849cae43e11e523feacad771fc7bcd5a1417add219a20/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..fe1d62312 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/59e0b33271c1d746342139a7464e99a1f441b98dfbe7256f394c9d16/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/9eff57809ea0b503666bb4bbe50e32fe5a96680b80c9d38058fa16b3/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..b1c238e3a --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/ab4aca132b4aafe4a1ec31c4a51b632d86b9e8f2fccf7c2d69f56bad/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/bfb502e3e812f861ceb92842620d21061d56ce68a4d31e830b7f5c1f/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/0c895f2483eb4310daa7a4c97d68125c06c74b3a2c9b4db32abc841e/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/MET.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/MET.txt new file mode 100644 index 000000000..2efe37139 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/MET.txt @@ -0,0 +1,109 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/f2751049e2b95e2a5f019444ff5d7c709f13a90c964f6ab517896463/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/94dfa85dabfa756e3d2f8ae78c9370b211b9c684ac707bae59184434/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/fa8ec4d78f009ae12a4664abdef512010609a884ad2da3151b64fce0/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/a32fdf37a295a61b7d4687e678b90f566f98bc34262b587a1671fe2d/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/d7311ba9103c08494801a4b608dc4eff6553952436fdc060568a8def/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/6cfe7d86c97da9d02e9b27d90b363cd119e009c500be6185de4cf59f/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/aa2238d1efa2325834893852d4a8ee0c53d0912267dbad32dc32faa1/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/7be6171f0f668e8c03ed58fe26bd555a275edfcb638f0f1cbe32e497/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/303c7698b866996b81e7b7b5537ec8fc54fba148bf9993842c5c2939/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/a08b88f62c0d4462eafd638055588e8d9ca766c1ae8615e582107ce0/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/158885ee8bfbc382592738d701d625034b70e87888ecf4eafefba4f3/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/daedfa1704a6f092fa616d3ac45c6b387db05fa7ea3d2af13c30fd6c/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/4415fe97580abed172a5ece07da044156931ea5dc1d91e51273c9a55/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/daefdf533d29e878d0f418cec995d4533fd1f9c028160413baa143d3/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/aa2a7f5e65ba6a1897fba73dec9f4748e8cf66ac2589cb4c74184a14/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/28bc1f954dc183de9728f027bb086fe33fb78eb9504d4aeeadcf5668/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/f2dc48e151ed4be1c7d5361d20789d47fb0d64d0811ff7f554b79570/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/7da35c4a24b08cefa82280b9ef5db661de921dc0ad096093f7da0912/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/1f99e4fbe493d80b5d86f8bc72ace6cf28297f2b496076414af6d52d/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/f9f960fc3b87dcf4cbf2647ffb9185acf7b3c139607f02c2e692c7d1/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/25d3dd2bc9c946db05f6e46f8f398157c1e014222747f76f2d3a9d7c/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/13c8e0f009e058c518938ece3b3547b377f44c53bed86274e808cecb/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/f4d406379bf0c1a97b3210f3655182f74d8a627f5ec9f1563a7816aa/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/55b97b6ba59846d9bbbe5d6a6a1ebc0a42e3b512dec813f0f4c16d0b/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/8de2b267809f9e4c6033e4f4b2a94fef0d58a576533f1f60767adacf/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/6f54cda0d91186c4baa29bbfe25b3427d8e732f371d787fa5ad392f1/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/70c3555595d808b4c7f51e4c480ef4ea235e110102fffcfd0868718b/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/8a38986888c6e39f0ad246310b3e3241c7e12d67df154c7056615aae/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/8754701b442218f7925986ecf1da589b0d954d2f225c16bb026c6018/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/e0c84de544958fd6e835b6807fc51a987c30ffe7735f53263e1279b4/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/6b38ef6147d864569f70249dd461019766c9d39186affb8f8bd55948/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/73b019f403b3c88212cd0df68575ecbd632deb38366c5d23b731aae8/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/d607a7fbb6c2cd96c24dbb25f9b2abfd165edfabebcf58bab5cc98fc/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/8f38cf6bb25cbc2f584b1dedfff62a613665ae04074ae61f4301ecc4/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/564182319573342c52b788531623366335e38525e0b405a59d9ed619/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/2c70780f874ed9d1c4dcc490066b18192f57bd450f07e683c9ad0039/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/3a1c36c009a58f5fae77b0ae50b0518c1aa57dcd1f64654bf6542583/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/fab284ddf144058bd820596bc3d9b3284851e0a4cffee3d0136c9301/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/d2de4a4d70b9c1e126e3452a997cfa3e2f21e81c78f7e41c1b237ce9/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/16b67acda25df31eda5f16e35bcffe40de328d63130ef9e2080fbcb6/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/ed40614dd94730627c9f3fa6044ce2e3bad0ec8cd781f09a0c5bb19e/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/65bead9eb527d5d7cbb051b0c79848f15700b60b903c64e0b0970a2a/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/81d156f0a69f93532d2c5e7beac88ecdb86d725d9b531062f5b5a42e/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/7781a9190c61c019ce9d2982cf5319eb1230dab08342458a67998108/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/66d7794c34c59125ea5fedab3a32c4cd3d83bb537b2f8a799995d730/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/13ad7829dfb1b8c6073600f6ee05ff63d569ca7051b227164ed14c60/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/b5b36b7626fa1055b979d68776e87193937941419af834415784938a/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/a46b2209d36d2ee0ff081a97725dffac326309ced93b05ca7f59a009/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/5eb26aa424006cef829a3d0cb007f7bc3c9c072fb9acbfe669702016/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/a79b6449f0726e3f8479e03fd21cb68aaf234d3ede6f2b763136fcb0/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/b91ff537f2cf02c6a1102d8fc0a2851f66996c65ed65ec9274c50a27/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/d98af10aa5da012532cbffaec1f9f088d9823704bbc0ed7682001767/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/9564069f385e17940326675a74cf5001a3802ae62ee887e47b1aa535/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/8e64326bc5f4722272b9caf14090ca63f06aa40d2ae59879d40e2446/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/4ad7e2cfbd4093abb2bd38e1b83af34a93c51d531600aac88410553f/000000_000000/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/c0a476bfa346d9bf70d206a500ad70290f5647c7cb6dbd85e4779d3a/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/d696ca63191a5d1de7338964fb1b651868083808e2999e4e868bf713/000000_000000/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/619c0ce212b4bbbbcfe13612f5d470dcc8bc6416f0f9359b3d5ed6c9/000000_000000/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/8b3859309d2fa6daadb7495075115e6309fe7581a7c27f9596c441d2/000000_000000/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/cc27d24b81d779baa2e7ee2681de2ad98bc400ce35977496d01f5a32/000000_000000/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/3626fec90556dc8236fe39beb2b6b09e24405c54fa70bdcf4d0e31fb/000000_000000/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/e2217df665a38d0dae613bd6757479933eb2b9294c9cf7df0f42ea46/000000_000000/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/5495dd5831146d5e0950e9a7a73305ca13571ba47bbc4b5da7b647c5/000000_000000/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/9af99db986fa44d62b083049732e24b5321b2413a380ccdfa7155e84/000000_000000/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/b602087a1333faec3fa4bd3378e026a257c64cfd29551332b4890c03/000000_000000/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/9a20737e015fcdc0341f12c37d0b495915d51021a144857da85795b2/000000_000000/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/7911b44ef841c453652e8bc82f9402c443a35255b209775044746474/000000_000000/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/502278c2a8445a67b4461a9bb3c6876e80d6dbf8d675b7c3d146fce9/000000_000000/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/619cf650b7e0c93afb780e9af9e5bdfac52a58501f3f73915e421bc1/000000_000000/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/9dfb41af076d4f7704195a25786de53cea26e771b16b9dcdc6119162/000000_000000/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/9742788736e18802d4e4b891cf84edecb3eb31db5c4d36810b07d634/000000_000000/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/000ea1024f82a164570cd2b3022adf152f40b47fddd714ad7af8a7ad/000000_000000/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/f2b3983d492ff7ab09666c83bad193120392f9b2aa861033c69d4ef9/000000_000000/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/665292adaae7350bb6edd4affd97116a1cfb01017972b2ece0141fec/000000_000000/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/c3eb24986d9b3d242798f8d3d4afcd662c8f3e0548d9ea612a0d7614/000000_000000/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/4eebaa361dad8cc7ac59bff308afd753efdd7250a63b7bffc373a1cb/000000_000000/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/dade0f23c8334e4c1f5a639da3d03798dd10b8cf78c3ff27e3f09e9b/000000_000000/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/fbb23c995f81c0896d8efe6bfac48c28b19e7c5e5b1c0b826c192754/000000_000000/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/670016bbddb2b26c8b18f24009c07c1cf88741ab9329d0ad58878831/000000_000000/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/56633c3c3f29eb2f94522be81761f6b745c9fe4e79d9bcaef598d210/000000_000000/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/7df83f9eac07cf75a0f1160255fed83ec5e03190f1068040a8ef3223/000000_000000/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/38c8f34daa9a2e18ac431560e1dc445d699ead8df732520a12770c30/000000_000000/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/0e82cea9970c874780ee13b2043aeb5842e163fa60d484c541c6be69/000000_000000/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/20b699605e75b15f4237de02f86c585f20fa634a29c57bb594996f4c/000000_000000/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/2c5819160546f20c211df5a264856b22cda238d68b47dd02bf9cb6f8/000000_000000/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/bdf590a92b01d64998f5fc9d3d0638fa45585d757481dfd73e1ff859/000000_000000/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/56abfbe5d46368784e4d22a668c377e4a7e0dd90a5ef19916afdd345/000000_000000/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/49ad9b1325588de380d97e253999d43de7ed8dd1413ee0a2ace126dd/000000_000000/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/793a2618712661ff809749bc2ba0f755c4c8e495c36c8d49b0549d7a/000000_000000/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/7b0f2a293422f3a319145e09e149162c2629cdb1828a18d71fcd0858/000000_000000/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/d93ad68c7c02d0b4b729d0a9fdad119dfacb775db82324652437cb7f/000000_000000/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/e473824f808d9eee9c915867147b58b97b3f62a7f98c7ca43c4a8954/000000_000000/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/b336d08553a189c7c39f9a1384a4ae977ee7158e5639f0df55093332/000000_000000/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/6c911a59bbeb8e55aef3d9659185fdf401d609c387fcf88e387aec6d/000000_000000/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/938b19cc65a4b4033c0769ab25bad51f7171c8948c1e413d5fea87cc/000000_000000/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/3dc633a854d5ff94d9c31d8d64f4394a234fb2a66e5492d3c6bf2b1c/000000_000000/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/6a19047c4321eacc28608c78b943cee245e9770b20b8af77e7f1f00f/000000_000000/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/57494e57db9f0e5b0c346f8e49f11b22ff923b00618b2140988a8c54/000000_000000/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/657f468c3c792aedd3220c42170cbce6dba4f29459783fdd4f95aa2e/000000_000000/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/95f9b2a910e1af2c6b39cb2068d5c1a5029b46259fc41e46b747b817/000000_000000/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/06a26b767d4260501c83dc8cf1663a6c1803358e847154928259dfc6/000000_000000/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/3cbc39c5947683f36b924ee2927bfdca23d941bce9d67ab872afceec/000000_000000/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/6722219f2e40eb347eb7fb0b907934deec7ba701b3affc65646eb6ca/000000_000000/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/d37e04d7e6c6d6ed5d2db3d88fc8c69324294bc1c01486d644eb376c/000000_000000/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/fbf1e4a6c202e2174fcac92f704c8c0232fc98fdbb482d59f3fbbb9d/000000_000000/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/08b7b78875c83c40b05966e45b215206c2467b522d79bbe961194270/000000_000000/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/cf341dded2c31e96faefa76066dbd061f35ac06e4946b64daf22883c/000000_000000/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/093d8099875a481cd493657215078d1e0145c6a839c5d4bcfd47695d/000000_000000/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/MET/6b43bbb2369e319b2faab03aa33ccb5881157f9aeb6d42b86adc415c/000000_000000/0000/tree_108.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/QCD_HT1000to1500_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/QCD_HT1000to1500_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..836cc1069 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/QCD_HT1000to1500_TuneCP5_13TeV-madgraph-pythia8.txt @@ -0,0 +1,5 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT1000to1500_TuneCP5_13TeV-madgraph-pythia8/77726c4833a36c090e8d688722c416cca6069aba57374a6ebcee38fa/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT1000to1500_TuneCP5_13TeV-madgraph-pythia8/8826d4e59d6c5e5b945a612508e40a52ef78b83f3f4dcbc6f73c3ace/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT1000to1500_TuneCP5_13TeV-madgraph-pythia8/2f9bf86a0aa6ecf75dd3b2a96527b877e075d4e7cbd3f9ba298ce086/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT1000to1500_TuneCP5_13TeV-madgraph-pythia8/61f52dd6a4b99d9a1f7aff265dd1ce5423007a7d5c12d1f199807d2b/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT1000to1500_TuneCP5_13TeV-madgraph-pythia8/9b6f86e221b24220419a453f9d1ca1525495daaffc2edc5b0affde65/000000_000000/0000/tree_4.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/QCD_HT100to200_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/QCD_HT100to200_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..a3b11e54c --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/QCD_HT100to200_TuneCP5_13TeV-madgraph-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT100to200_TuneCP5_13TeV-madgraph-pythia8/d8bf2d03aa5a4ffd15a033cfef6ba6ddb7d6aa288ca882d269b4390b/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/QCD_HT1500to2000_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/QCD_HT1500to2000_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..4f3de55c5 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/QCD_HT1500to2000_TuneCP5_13TeV-madgraph-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT1500to2000_TuneCP5_13TeV-madgraph-pythia8/b06f55c78aec08a9c0da2c8a35e777c5ca0b442a642d82e61737642e/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT1500to2000_TuneCP5_13TeV-madgraph-pythia8/ceb077cc8ba0c6ebc213a03b40841873956ef522885a0e49003e835c/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/QCD_HT2000toInf_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/QCD_HT2000toInf_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..ec0371a0d --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/QCD_HT2000toInf_TuneCP5_13TeV-madgraph-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT2000toInf_TuneCP5_13TeV-madgraph-pythia8/56c3899d962f0eac498ea2e2992c3fa6cda94b1ef06d9230fc8c0e85/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT2000toInf_TuneCP5_13TeV-madgraph-pythia8/09f2f8aca9679ba64d7e80ef0e5103230a77c5f931f4ef3914abb7b8/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/QCD_HT200to300_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/QCD_HT200to300_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..e32f0a3cd --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/QCD_HT200to300_TuneCP5_13TeV-madgraph-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT200to300_TuneCP5_13TeV-madgraph-pythia8/72240183a0c988881baaafc7b15cc15f166402a2df366ce0b88ddea2/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/QCD_HT300to500_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/QCD_HT300to500_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..841de69de --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/QCD_HT300to500_TuneCP5_13TeV-madgraph-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT300to500_TuneCP5_13TeV-madgraph-pythia8/427b23abafa9ebe1b78e475f1e1b164855490e8075d9892aa8fd11a3/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/QCD_HT500to700_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/QCD_HT500to700_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..8b108984b --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/QCD_HT500to700_TuneCP5_13TeV-madgraph-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT500to700_TuneCP5_13TeV-madgraph-pythia8/35884cd71472da5f25cb6c4fa45d4fd769b8423f88f796eccdfe4f7f/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8.txt new file mode 100644 index 000000000..db121db96 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8/c7ed4b204394c32e277713cf46d2c8b20bf10562fd12995d25f41059/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8/f6b3a1f524aa4e07a45d1ecd33482fad322a5cff8819a6d37a9504be/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8/98e14cae1bec35768f260d729412a1aee8f926d847b34a6feeb29d28/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8/fcb0fec458f8e39d1a2c1ee0de8a30cfc656db7a6bc8dc3bbc9df841/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8/9281159d6a3c6dd85d3cb3d19eb33bedd8965a2aaa513712e23c2520/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/QCD_HT700to1000_TuneCP5_13TeV-madgraph-pythia8/6f2f475efacde1c4adc1d6b1622f9c0bcac48a0a7d3657e0b477d655/000000_000000/0000/tree_5.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8.txt new file mode 100644 index 000000000..4fc46ec39 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8.txt @@ -0,0 +1,9 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8/476c5da1d99580a1661947add69d8bd0dc0f5e542501ff390eb17260/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8/8c6002aa0edd9510949f7e5ce6c6245882539d8e39f5954b5ea9ad4c/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8/28fa215f28bc11c04f1d66240a6ce4e6ecd6ea7c3cea30f6b0070be4/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8/c25122d3e9e23242c0009318cba8aabfdaef434d1fee756e3d9edfbb/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8/868ce9f8cebd821a290b7a0efa4602e65e83b0bba699af283315b4b7/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8/c3629bb2ee79d610bc4b0ca8d6108aa71779742bd593067e880bdb11/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8/a3bcdc573efcb6fef59489e55dc015a501fbc8349bc1ebd13c5af724/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8/7c2d8bad8e6b6048e429f4baab6fcdc4c0c4dba525b4b8ee1b405287/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8/de2d2ac120aa4f2dc97470fd74ea337b9d66a62b4f86dee710f0075c/000000_000000/0000/tree_8.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..c89761fe5 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1,12 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/99907304118d9264907bafecea3ee5c72f843b9e1c9b697b2b80bcd8/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/99414b228809086e61bdc0b34cfe612e9f0ef02b3415d340c1e99e72/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/1edca9bcfd93ac0d7105552b18ee980c1b353a6d08e0e203d8ba95a4/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/ffb7e74fda2092328f80d29eec8a82ec72986293a432408bf8ecd2ed/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/c286e70479a87a450c1a237fc0b9102a3f11d9c4dd830da5b06070dc/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/027eb7c1dc6cc1243ef8c7ab48ad9027d77f813c451d180c35491679/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/3b1a920cc69518a1ea77c507f19dfae7c89f3e3b411b4ef5ef00e852/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/01ce40062924996fa3581afff46739f50a35ce1e6305eb5807b63079/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/288ebc7298d71501fc553267dcd88a64e9bf36ca00d1ed8368aeb07e/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/947c300f0865cac4aeab5558c78c1adc89154fb60c842f6a673fd720/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/6e97527dae3493036568ffd6602817296705814b5ba34d5ec5564231/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/029e02ed64ba0aec3c5830467fd833d9baa9d98b5810bf1434c5fb1d/000000_000000/0000/tree_11.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..1f32de53d --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1,52 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/948efee8c1f7c2c918fae0a5db7fd3b7071f6ce3d597533ec227591e/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/c79d4ccddfab5002d3b2190289eb9e01ccf0c320c14f660890aed719/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/8ca219a75eafcb42599defd2bb2f52a6da34a1bdcb7b7877d27cdabe/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/6e1db9b0f8d2c3c99760eec1296f11ccf0a3585f98f21e0a599d3979/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/337783598a3826b77d5c91e39041dc2098ef090b714ad6f04693ad5c/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/8e3deec8c3c415258b69da22af45fb9f0ea5f797d6f1f7b40bd4d181/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/ba4f4210e541df095a2847eefc35b216685f120e1faf35c49bbd4c80/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/42bae1b409ba77fcaf7e21973307bb00492b14f22658bd3ec23928c8/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/0ebcb49b9efab022e97436dad0e0098d884bb33b16c0dc1b617125be/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/684356f9233bb372767f8b492ef66a42487b5af0f8b7b89512e4efe5/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/187ee6853dc0787368f14683db78016b14420201be34394af87d1a9b/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/e5a49b09a055fe4b7ac177a60e830b5aae583f0b5393c891db6d222f/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/82707fa4c8cadeea5dd7430e80c55898e2d529e3e622fc2ab683ec07/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/0a06d463e7851f924b3ba906fad8ea8ea5bf8c89f54a9645f714ab4f/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/47b1908c4ba0921be857d28ad9f9cfe6ca7cb435f5307c0f1055c2a8/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/dc589ebabb8463bbde15431df335dee8d23ffdaf0d38f383fcfdc663/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/491fee354b8e1766c08a71c137058bdb3fd8b4b9768afe0e9186f4a4/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/c8c4d1a414631617462f2c4b2bc18915535b1418e897ee6c15470aaa/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/f0ed647f159f19fda390eb47ecf7c4be4497624c9a260e2621edb674/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/469a00a91eba7ec57630c0dd07bd101eda6f52ec88a19e96b813e156/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/15aae03037183420dbdda224b1e4fe37bcc09aaeb2e0363e6a8fc6f5/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/8aee5774d5c00f186328879e1b9086f475b5402f08743c52af2bea11/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/6d8cbefc60f4423485dd28b438474038f86dfc15e2646f29d6008ee9/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/c9ff5fd99b5578e1b62e8d5c34ad34a96392d36af2c4806dbd0a52f0/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/dfdac2d9372b0c5d1eca81ef8096d3365d1ec7a2211d9f8a2e859314/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/f1c49e1ebaf93d249188cd883629064aadcb7d2829e7ca8b981f1a78/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/a339eaf257d5b6f4c26c2a463439a9a1743162af4769ca0539847afa/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/f3d62e9c524cc803d9506f3ae5545028c017cf3aad1729ec88ef1a95/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/b61f1fdb22edb935c05c75b14af92116d1a39bfd5b8b9afa0a02847c/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/91dd53059307949ab71d95c21f89971eb1b35e68d5b23dd39d4628e4/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/1c95d9a719c4bbcadaee713598752534efe76ae16d767b215193639a/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/b9d3fadf6560144c54bf01cfc8478b5568736ff8c5c7bcaf5de68416/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/9658a90de0d325def4a4416fb86313a4d319fb119dd0ab9682f1ef8e/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/d13b2854ba0374bd5359a8497022d9eb117b8986307457c7986b437c/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/e2903677b8dcee3131092265241cdcb9d64ce6e13de8e80b976790de/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/4f9ba238975e24184fd9387ca6703031ec1d8c645c903c8a2beb55f1/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/c0ab167b1aedb6c974f86452bc5e3fef53430b72ffd7ebfd4615f32c/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/41cf9f8962323702f8fddb8b26729c91f4bdf441f9f37b7850a17787/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/05457af5b26b852a02fd37f133a3f9f8cb3b99537c55ade8a4ccd67b/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/c412c4d6bcf1a9dbe839ea4ad90e2c54a579fab36b497bf326e721c6/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/19d9cc20262ee3697d6128215b8308cf80aaf8ec862afc90355a6d29/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/d75065e2a488abe90b7cc90204277b1f97ff72b54408081d39f052b4/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/268eb60dc62ce0736db9dbca7ce2371b5dad85059960ce8a617434c6/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/7b624406a4ba24ecebc960ea612daafd4e8516cd5ac634edb9af9a94/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/a01d20af1275342a06cc04d7aec01f90e767470239b000568fcafbd4/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/2bef6b66077a399e24c95275624295260a4d59735b2246a909df48d6/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/3637adeed8c53831e5402c151e478f2221d15f8dbe69d940bb3670bb/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/b2bdfc05199e68cb7ca587d81be06c5e37c277adf49fd99a04b9dcf1/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/f789e860fd0b689dc22104f5c81d9c3413bf83d000222482452baed9/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/bdce8c55e05278f0bfc4aee00125e4b6103d4c02b1574f704d2c533d/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/31b889570860e795e99fe4098f2c5ddd2334869232698cd2501441fd/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/b5ec82699d68ab3cff711ae0329905c4a268da60e7bc928b56b67318/000000_000000/0000/tree_51.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..028472e17 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1,7 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/53c94dfee6ebf33185f6136a7d4f6ae99c278dfdf850de6f35ec20c6/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/60d50f5467d86e11f45451e2d95a4f9bc2e6ccc76892dad408b334c3/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/42f8700fc78a69d8639b56c35b7b5278be89b4c27794e5e1d3a8e3ed/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/0a1aa6b4bf91f9e3ad882f979c3c7045830e7ba7fc157121ad285134/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/5675b2728342cc1c5678fe7e76e7a4475ccd5bd1c5de41c88e7a9d8b/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/16a6e047a2ee101ac28899dae5d7ada3659bc1fc8b10f5d24fb3a4ad/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/5c44e81b99607ee4a498cb40548392a7cfa902e48f94aa0c06f460d6/000000_000000/0000/tree_6.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..e2ebb9ffa --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1,10 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/d95fc281cd318e1aea0bbe0aa9968101d3bd5d1dc349cb9e91374d7c/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/74dd5f03caa5d73055f203c406e6c87dc0aa4b4b743cfe2ff2f6f721/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/936ebd8a51b14487aada2d8c99f63d91967ffce804b7035b8abfad4f/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/d2caaaeb20d7d1c4d11dbe8424c39d0e957757362eae6eb3d5cb40b2/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/26a41a89700a54a424a267caad64df734b4bb316b66a7b3e37c5e66f/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/dae8ddee228ce19e8cce7ef5ea8659e98fdf1cfbef8064d76c6198b4/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/2afd550f861bc693660eb0d1af82785247fb52d678e44830c065d5e5/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/ce0a95f04b56512a2c834c188181c8f21a66070d8b26798031823bd9/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/229e559b4d9ce6fb0ea8e932e23b90157cffa90140402acbb2117d14/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/2bf6419c72078e20bb7e897f43851800d19cc9c712765cdbbc322ff8/000000_000000/0000/tree_9.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/SingleElectron.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/SingleElectron.txt new file mode 100644 index 000000000..14ca5359d --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/SingleElectron.txt @@ -0,0 +1,47 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/d038a1a06e99cdb6c28c2d8581c6f39e17439a5997e5a24d0da4c0ea/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/19de2afd38aa22c6253c4c0f8c62db841bc12f15a05244d358eef49c/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/8f5af64c70ad87cd4004e158a57841fcbf9b0c96baf40f603720d1cb/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/d45675ab9056bbbedf2528c2c227e17354bfdec41ccbe2205fdf627a/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/8b8262ba41a7586675b747eac4c6b6ec3bd0bac3a9ffab5ce6862879/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/34c100bc109fe39320b95b81c5048a7519d44f0084dd353283f116b5/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/640c5400ef6a14687cc39469410dbd73d58f4e3951c6271d04e59be5/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/d5b5171a139f265e122b082c08e7a7154a468f3dbd3d68cde90e67dd/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/d08aaa9a90bdb849a686db894ac1353f111c48ff3644c4d37f594196/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/3f9924ca601760c03281fe947d07f192dc9d47b74b4dd5d541e8e664/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/3edc8c5ec5ad2f60cf626ff348c069df245e8bb0a606081a1753b3a5/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/9677bc8e7048dccfee4aa463de4e30f30e916abecff51391bc74cfc4/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/c346fab699816d6544ae20a401980e2aa6d3e5d39f2e8518df22db4f/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/dd105d90ba4ba93cb2476bb3bdb1a78096a1fd7096c175c77d699d9b/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/e8b911c1899a9559796b5446daf8a127b23da39136fe5257339c05a2/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/1a5915a12f41d8ff7dad31f238d872c179e8b077bba5a6dd67dde334/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/45645993c0984ab4cbeb18b2f85d0feda9a6a7c4293bf1d592ed7392/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/57bcb0ea8b7975a84ff8c8f8584c095d2a2e9b06de4c6685c4300623/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/e2b60bed77fd49813c449125d60fadec05197d4636d13d6bb5b303b0/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/f806e8d6b39663469e7c3b4be6fc37cd58bbc1cd4a11d7588a7a8cae/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/82b5f6f4923812441eb38bf38659500020c63d74a3dd54f93482136f/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/c8bdfcfb2f908d9066cf4d7ca861f761218129e507c78a9a73ecfb12/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/da5ef49a156dc1e47886a186df6b8f1fea2ca05cdffe985b5546d587/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/b452d763bb4b837bb152f3fb4a046dc86cb485c0518f41d2669949a8/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/2fd8faf63a90c280288c391ab8161ecbd718c722df065e8f0bb2beb9/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/32f610cac8c2b8ed6d30ee4a6fa3e67821bae7db62c5b60c75463c0e/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/2111b2d2687e8714edc941174591d1afeccf3d87dbb039d042902826/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/6235c50bf1ce70e727c3e3059b8437442b1d2426d91052ea1f462504/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/c35d2c77509379b547f134bdf1af9842fb0b3ca86a6bb63df231fb7f/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/ca310836c7f0dc7c1db30f5455b8f1412aae336dc3aa80b1323ec060/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/9b722eccd65d00ae0acc26bcff8cc374e87c88b2146d731e6bfa321a/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/f0d056e6faee120e5200fe1bf31216102360e1c88d91afcb0b893185/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/3092cfaf9723218c6f1a972fe0e903c8b67529ad2e7d3fbdac31c4a6/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/176251a46b2bbfff79fcf61ab6b38abf0cd78b4374bc48e23e1e1683/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/fc1f24ba7a91e78186dd9158ab3b3c48850774832313422791c1c59d/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/bda876d9739b1b4416f1b8f67d09bfbeaf9965f533cdafe9ef36cdfe/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/bbbc218ce9dbd524701f444d32a432d7dfe781be0f82684d01f5beb6/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/a179ba7fa330f1f538b8de26702e600d35685d272f091f31e1e596ad/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/6eccdc9b296bbea4c9066c4681caff179a2b4fd2c0392385e6de19ea/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/27c3b81e51adcb44ce7bf7f41d14a60c837c3655508fecb0a5c813aa/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/967d76fd751dbbdb09cc46f6f1434beb375b38dcd14de95eb929dda0/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/b0718bb0b756c2a5eb6809537ca380623c98099f192cc7f9bd27ea05/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/43d1bb15488e56a048e141e3aa405a9a81d43e360e4dce2e7f8bd77c/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/6e62d1ca93c7348948af6295d0c59bd42838429332e175a2e7fae4c3/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/6347ec3ca98fc9dc3b907c19903b073eab1803a434e0b79cb3b02c29/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/a6ae7e875819ffb6f044b0907720c14eb2bb73aa72b00972ca0ca907/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleElectron/d5500ad2389de04bf4a2a297a810ab6452202210c914a3bb23a29b6d/000000_000000/0000/tree_46.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/SingleMuon.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/SingleMuon.txt new file mode 100644 index 000000000..07405e059 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/SingleMuon.txt @@ -0,0 +1,74 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/9f25f6b6e898fb320f91b36a64c9787b42ca68ae5f42f1f22ea457ce/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/0f09d78faa3627f07925d6be65e403884f0a8c6a789423bb23e14829/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/319452a07063da08885eb1ca04b6be87e41d37c84d7c6ec0c012fb0a/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/3f3068006e9b94642bbe25a5698da3e0621b7a30e9b08e3f77deec3c/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/c6350c18c6706317a27576bc1987d8d516aec2ef030d4505b359a722/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/6ffb85d3f3bf6dfc67d964d3fff2891d01e2b38f815cc140398c325b/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/7cac524aa96870f39556b503da49949b865e578cfe572f9bb7f61982/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/d28e46c8fdd803209fe97c268a833929335262ade5038f934cf919e7/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/01be6d91ed3df6983ced0a5b69647387610c23e2cea0ff4f139298dc/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/9edec33c1ed89f0b45128f4d43af4cd849043d5f951d54ba79b3ddb4/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/88b9b01c7f14e3ac226cd2d2458929d56b8d20df2f82678dbc54c9f1/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/5a651054a99db693518644a5b0facc2eb1e8c0488c2b676ff674c543/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/3dc8fb206bd86a5dfe51d579b4c209871b6a7efa1cfa0c4028c9ecc2/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/83924d9866cdba4a7b0a79cf4d5030bc4a16594c7ba64ac3d5771f3a/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/9ca47d512596247b16ecbc0757bc5777bce7f0ab2c412d546da81eb5/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/8ca455643507ea714f15fd1cbdebdd1f545cf0498c91ececf1e45f39/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/299ea4b1c32266c36e34f1e4a94cc589e279dec414c071825f8eee6a/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/18de3c16a2a24b81f08fbdd4e0b422544a495b3f4dcd75c4e05ae3a7/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/1c0d8841c98bc024e3bdd3e9415d41a60d6a2ebae2caf53b1da97dec/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/4bd5baf909010aed96e3716a42fa806ff4b5ddf4d5e0cda5d520562d/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/1583d9d5709bdb30b156eb2576296fc94e62dfaeb59790d5a610a50a/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/b90b41ad9c0c78dc14ceda9dea159f8e416eb92fae124a68ee6c6738/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/22d9a55259b5bc52d05e976ac9c771a7d0009aadedcf160906184ccb/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/1ce232ea1ca309932893b685ae378132af3ec2561622b9abd9e775c7/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/2a97466b8293855f737f8d50f5e414f090810a29202083bb17bf61ec/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/17b16f93f5827ab1392c38d7a8ef5c59da3be697c1370abde322a8a1/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/190b798a21ed34f74920bfb107c6e268be758587eb23a3cc49cebc96/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/0903f160bb5ca761df119e32dff694b7f738124f62fdf5d368bc9ea3/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/567cf2bba9cfccd64bd2890e53c472e11cc973a408042d3b982cb800/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/dbdce13f6e81f5ea70cf53d9cbaa90ba358a5e5a08bc79bba5d0260f/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/282d951ef2bdfa5d76d615a8273c1df3b0b67b659016b19381a83c9e/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/00772b86c78ce676d47df8a160ee597922c14fa70d31c27f7d2a5f82/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/78f17c15632ebb5f02d61df697614dcc859de5d6b1e1d184641dc850/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/89a06b488882fe03b0e73e528c7ab340d39538b193db3326c06cbbb8/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/929053de9f0b7caf6de4d39444a0a2c9b814169b8fe42be99d9d57e7/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/18e990361d433fc960be30bdf70a6f167495af0fb719764fe74ff360/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/8f748505521c94a7bb96dfa2dea086bf7a7c7882a09b966f8abf31dc/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/d203a3fc4415c297a75fd5cebde5bba1f52dc778a4f0c77b12b0d048/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/ca8c5ea01263028e7e87e935799ef41887d97b466ca38ad7395e3797/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/c7700468daef1b58ccc98b02a0d18e22b43edf3a14aac4c0821d4544/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/fefad3e9f3878512110e661a1af5ffab2f5f5b0064bd560c9842c8f6/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/247287c89ed73c66f20cd5f91a4b3d3d339f7a9ea619e24db55711de/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/27fc07acef8f0a87fc06b8150f04c970356b229e2e57cba62a47d367/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/0ef5426220bcb31ac52d10f3e4126bd5af9b4219993a988b8b30a4bd/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/5e379ea22e5d7e1f0836b63988f3d6082ead9e58dad100555d92a65d/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/8227236a662a88636bf89fa4b2bf48f9fbfb435177a5c470b61d2fe2/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/62be38b3ba504546b6f0ac063e0d94b686efbf950b422687657fdbfb/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/fe595cae5ce323a319966e4cf6c1ef93300b6ade95e3d5a5bfcc6eb3/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/312ea9250c9e75c887a490f0dde0045a24b22517337df23e105cb447/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/de76072ce0a7f6adef603528a44911ca706fc63ce42ed7fc503e6ee3/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/3e58bfb2ded662b11d25a1d96be4a222f95de66c17fcb091de702da9/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/fd9f6d6ca8c58737011aa63bd925051f686574b4dd85cc17e65259b5/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/4f8b91ac97874628bc9516f64ddff5303ae82cd759246f60d2e95d47/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/fc6c07cfcd3c1f53ea2b73409ee1fe1c53fdb61fbc6b923ca06785fd/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/8fc16f8d24648633957300f5052f9248f2d3961432a18249866e5f6d/000000_000000/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/5a23e6737a3e799c99621f8f9dfc4ab7f781f17d347926d34c0b745c/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/8eca5e054f266a93bde44246663dca6c2488ee2abde714dc66406368/000000_000000/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/623c8e1d679b823fd346ca871b8460119c8a23c6a04d5cc9b5d415f6/000000_000000/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/019a615dcfd4510e63b065f9ce3ecfb59a88ee88febff6d8ccd823ae/000000_000000/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/f847058511bd9c3d4f02a81fb59c66a347e75ddec1c65be9eb743fff/000000_000000/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/1974eaf1e9bbbec312ddef6cb8ba74d198aabaa1b25292aa204b4b89/000000_000000/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/562278c9f83c38820545967be0e9256db022ced4a99543de660d7662/000000_000000/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/2cb4fa5d33666e138e5083cf244e500152e7463cbd5567314021c858/000000_000000/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/ab65f556ee33eb48e33489a7c3dc7cbb78752abbacd659e23b252d95/000000_000000/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/5cde4fbad192f9305fbe1e69c46570e45618c356ae0731b96099b67b/000000_000000/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/3efee03f6a865aa8ad51cc67ee775abbd6780ef2be0c047717441f40/000000_000000/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/070aed0a0cd56ac5b03d11afd2918978d2003becff52e14e8eeba035/000000_000000/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/c087b43f12643f8b93fd98d0c010fed2dcaaa4dce78d5409da01275c/000000_000000/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/a300eadaa472926741541d4c41ff811b853ae33521661bf9a583aace/000000_000000/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/f3ba71545031fb703119365a880095d86cb2b1977a7264e5106eb978/000000_000000/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/33e50dc4218857193838f5c50a478a43af25ac96acaf9825518b5d4e/000000_000000/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/7e8581552ee2e81093a588c5e15288b27d422e64d01771c487802cb7/000000_000000/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/91d772c40a51ceb34ebc114f39dace9666619b07c545c70761eea080/000000_000000/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/SingleMuon/3ae8a9079023a3bb9baeb9c40f68d283ee60c38fa507729d5cea6588/000000_000000/0000/tree_73.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..03e8351cf --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1,36 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/98645c9e4d8088c16c30cc5d3e11074f872cc77d3dd754d8ae829b38/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/c1db3c5d7adc7512f35d768ac97d1a0daf9f0668d85173cd7d7c2938/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/8d4afde1f194ade02ff30b1c8ca09df8ad6a2c9b02b5bb1c69de9466/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/e306285f97a8b170c617e965d359d3f24bfbf4a4df740f6303e9f988/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/8f469f304ad58aa1195f8a061b847fc23b99fcdc31ebbd778e667215/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/dea7c277c8b4beef0c82c510003eadc53f0e719b45cc221055b00ab8/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/bac8bded62f7f78938b12066437ef8772aae9314c458c704f1f53283/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/a454ac6f6a333d81e0c7509960cb103cf7a8db50f6fc6c8b7ecd1b9d/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/d10ea5180c89d87a950e94bcfb3ae932b596e07955146f1085fdd6fc/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/a34d48cd271e05073b6f8a13ad5467905712b0318a6e4311936a9b43/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/8eb3ae0d414bf9194541592526ab124aa4ff2f35820639cf1c74567a/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/d7d1555949b0fca5edbd10b1b921b6abd881c630fa2a3f4dd7790507/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/bbb5ae8b273def505747d3074b7f24ddde3b6109b552676bbcfc9dbe/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/54771df46441e8f58ac1ce4eaeee09a093215e9ce70697cc88650cca/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/749f4d2bdaa18faf0c88cc38a86fa52cccb4fbef76d5fe3cf77c9708/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/c13641fe83e0551b4d6b3c05761dd390b6886a18ad8793d0a9a1f32b/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/9c5e8836babf1f3664408cbf95ca60d282bdad17f2ab90350e2e1c71/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/83d2d30bc32f21301a687f02f0f4e96b131d17cc22c101712a1a0d85/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/6310d03175bf2f308c05f6a04dcbf994ef702c8df7ac60479b568d01/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/6deed7abfeb3ffe181cfe71e9851c8adc252c98c1977e2547c09659a/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/988ab632915d2704210636aa2dc69a8b15c60219fe2dec8851204ae3/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/ebb3afaa9c2f2c30f3675326836afbebf3644b820496142b0ef6d52d/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/d867054b420cb4d0151155b5165310ab05ee2bd83035ce2746c19c31/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/f370cd63beeab254322657b9dd658c392520b92cccecf7f00a70c0d3/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/4f6cc9bf875424753fd31be196c4da925d4d93657881aba7bea9a72a/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/9620522a9e60f2a76a487c23a046edbd0280f8a3a70ef3f60ce075bd/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/e4c59785a37e38ede3c1c823df5c368236ce5e9e5bf77b9d0c08bc0a/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/fcfe327e9a795e71f22e8333c743c4411b6a17db734f6ea270742a09/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/d5e685f2c8924f78276f5eee6d4d67206343e7bd39a7247619ba1b90/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/684ce9122cbfddda1b3d70316b1d596e3bef43de38a4ee934d2b71cd/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/3fd7a286d4df7fcd61d76e8ce3fcdafdf2d6c331e155a07114b11718/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/a6acd821042da7fb5cde98cc9b1140c1a97f8c5673e0659d0208794c/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/d33792396335a90dc1a1794116e72bccaa0fac84c92bf489835f11d8/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/13c370d00ceca807a155cc8eb87c3626bc9f069c648e40a483a6effa/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/7349cb3a101c513e3f5830e260e0d4f0893305aa99ff5d9de59f6960/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/e416ff7af7c8e369dcc576e8b5bfec800c0df9ad7aefc54e98a1caa6/000000_000000/0000/tree_35.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/TTToHadronic_TuneCP5_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/TTToHadronic_TuneCP5_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..b11345b2d --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/TTToHadronic_TuneCP5_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToHadronic_TuneCP5_PSweights_13TeV-powheg-pythia8/5bff16eb2e930a76e7efdd76db0d0b0d65599d3bb9c1067508d77afb/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToHadronic_TuneCP5_PSweights_13TeV-powheg-pythia8/9c65336d4971109ac0a7fa9bb306bb9b784600d62c5ae6e403f3722f/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToHadronic_TuneCP5_PSweights_13TeV-powheg-pythia8/d03656f97edefdbbe20c8a76b4b4075f4ec1ebf705fd3cbf61e750e1/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..11f15d720 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1,80 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/13c957ef16c3422844c4b2966c31dc961ed02b2b86dfc9de48029e21/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/a596cfdbe84d6c1ac0642a295b8f55695fbddc7f83a85bba80edeac6/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/942038ca3655718a6665657a7b044522df0d5a2901b4cc630508e0f0/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/dc0a9267353b6660320189d9878c9eba8fb9cfb7d0ca15e26fac716a/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/3a5949b80b81a9e5e2bcb05ec54b1582e174c29518a5ffcc2186693d/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/74cd27136d4942412bf81d6c48d364d1816a90cf67855b0d7e7d613e/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/dff2adb46bf77a40076f40421fb56360a8a3d89baa0363a72bd2bf34/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/2fc70c3a13d61c248bc7e418eac2aabf98f3e3db5c726cef76e9e9c4/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/42db18e3a917a530086ce1aff23c802e940ad742aa01874f9a5b5e5f/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/162ce8cd09dd7bc2c8461d11dedd6a80ce1c93d982e0eeaae9ded6c8/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/d078e065e125ca6ee21bd638aaabfbfd042f1e72e31e1558467a10c4/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/36a04dd77c15b75cf792bf95b13386672167e3e8429a3f76069acdc3/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/95deb235d23ddd525242f4390f8f1f1ee6e523baf4dc8fd60be6be4d/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/4202cfcc6ce600b56d9eab791aa2af8cd58914cc4536b24e161ae5a1/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/834e0fcbec231b65d6bdbc2b34f31e5d21060fd0725a18032a62718d/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/9480f33e1be12c91fb0e3285a297ea4bc5adef29f7ed166cd2075cfe/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/bb18488812530611e60a67f236ad28859294fa990f333db88c11527c/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/f9dbcb52044ba005b8bee44f8fdf2174bd3e02b069fc48d094107827/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/1e1d758b80d8ba4b6880ede6085481bc4a12328d3c79e83e72baec15/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/e57eec9e02385eff0528ded6645405eb044be205939bef1f6a75677b/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/312772e096fb85bb1196ccf3596e1a064d09f58a32f9a22d030abdde/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/b65db62f1e47e56299b589beb46c3dce05a1f4babc971455ab95f4b5/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/6c1af90f27e7a6f5934b326eb09da00bc919221346621f4e4754f3b1/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/f0d78da071d2132af250a194e8c0446061e167b77595a03a9d620fec/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/127a4987545061a040446b621905c64c561a51b8872ef407081529c7/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/a5754d12ad4ad2db36e1b4e836b93a2db9d2590897d4c98f2552c295/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/da38f324b84ae10be244ae9762fd03ac7290aa5672db07cfe0295128/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/49a345a4f25bc19bde40695669060cb6a31ae22d6d09ad4f16434a00/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/8ab73aae6f798f20b9d77e255096bba2161db24392bb8188c16f2f92/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/aa03df6c0333e7cfecefcbb87327ca66f8c5f3e2d045e16e8b9907ad/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/46887bccf141822f7e7fe07e906ec0b9a1299c674b7d8ac9c46da689/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/b68d20328058106f499c097d03bbc0463fe653ca93c1b593c914d1a3/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/d5c1656d25ec3f6daf4e3bb64871234d17fffb638bbf78f792c466e0/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/a79b10f95f84d4104957c02da2e148e7bf3aa0aa03bfdbe4eea2dca4/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/c389cff0f8db1cadb6790153f01d4d55262dae483756da8746af2e15/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/3fc297fbf5340bb4bb66fdf537c638e3e47dfc089c9be2b468d8825c/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/d65328bd2f274b798e43b92d977df2fa9c0703b0463ce8db40c6b7e7/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/7950e1a5afe065e6cf450b0bb07b7754f389c55676e13acd7c4b07eb/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/b046a2f9b360d3c80df4f5dab72e8c418bc1a007a77954d70d733b26/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/8106152e43e47ba78c313f935b6cddf1fc558a71b17dff30677c0542/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/61438d8e2583a41d6e96cfcf8bdee6217ac78f6b33dec6c25b9dc912/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/0dd6847f4749155a6f7245ef8653262380779428e024316330f15617/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/5104d48b976b1cef4ed473a52c6d28a01e3d0cff0d67d745d224bbee/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/d78ee99ed46a95e2cbc838b30b0cecefa6e8b9f07782cc2052513eed/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/e0d3c9f8b9aeed2bae26caf7400fd80ff4c18825ca5dc01b7873d5fd/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/5c56e77c7db3d85ebdd6282d690fd2ec85628e3f7b808a9fc1709bfb/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/b2ce766a6c3587a608927eb46df7e90eeb941b88ca1b35c577a3decd/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/6263676b8eb78cabec18b7739ae057b48560394498f099c74a5dbd3b/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/341c7faef92314d10a010574fa429f0713642279f548d64d3f6294f4/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/5817e7e6a0e416bea12211a4e09a3d2445a7d84ce337cdde3497ab43/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/ad2b4212e5614683aeb87f46afeb390729109ebc0318aaa38bddbba6/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/07d92dbe4168d4a19bee6c4e1dac24887e6e6a922b363326e939fc9e/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/8113bf963da3dee72a3852a6171ff1fd494d3c0fb54ab8d070f64463/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/d57d8059bccf2291168326298ebff9594aac4acb2b96997412b6e3a0/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/73cbb6689487f27838a50f04e7579e8a39af2893886e0f3a9ad87642/000000_000000/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/d2d99b6d4222bc3a73e1e515ace14330d02f75721f3d1993b720813a/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/3db09f81f0d105b12a183c2cf210bc212f5d5494ecd247514ccc18d5/000000_000000/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/9aa0975eadf40ddbf40bbcc28e90808ca0ac91a4fd10d0375cb11367/000000_000000/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/6a3343584176ace98045d4037c926affc675b9f0f03b0741a1e290fd/000000_000000/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/f5af970be6d61c60bd3c382b045544134c596c4c1e83b825ae785d09/000000_000000/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/ba70334d7752b8490d3bae5a5807b38121b11c6565bb6840b612c1d2/000000_000000/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/8d2967c4bb0ed25250cd39b52a71d724878d15e7af4b2c7c565ade1a/000000_000000/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/f485d0092066dcd7aded0e52ca1b8146a7f5ce70a7982ac112641480/000000_000000/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/8a7845ad801c609feb979842aac0430eb75ec1440dcb1bbb48b45f57/000000_000000/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/1bbe40581a34430d9853d41f31f9c3cb82ad541ed86f13125fa7f39b/000000_000000/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/d879bac5a5921e81750d4cd9e6432145564ac81b0bb0e308924b2791/000000_000000/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/2fe31ed9a92102e8faeff86cb3765287df2c3dd0be26ebe434503f78/000000_000000/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/0acdca3bc7eae56cb042cadd7a51ee68627878e1ceb0e895e564c920/000000_000000/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/4224b960ba11a1aa41a95f1325d3529fd6641a92f3b383f34807cffd/000000_000000/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/0e5a545f699aafe193ee1c43c21144d4929a6fc63f7a397fd3dd28eb/000000_000000/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/9dd0136ace454484142db65ca3b09fdaa22d9dbf4aea19b2ce89b453/000000_000000/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/e4d294307ac09c3fd5905732b155276dc2c458a71111e910ead208ad/000000_000000/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/7f99ec80b946f5fc91bf3e64d88d84dcc071cdabf827ce81a36d0c96/000000_000000/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/dd26b27e0fe51f63d003d1d2a42c23710cfdfd7eaf5733ef822ec71e/000000_000000/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/129edbcdce8ac7e708e756ea4d1ca2a37e5f5924b7f1c5b22bdb6223/000000_000000/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/661ce9d1249c058a02a307a8dde14836244a5c143e7a45d42bee6a13/000000_000000/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/9a60df074cda4e7ea825327c57566dbddc07d942052ec09fee6f8987/000000_000000/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/b40eeb4d6535105a9a1b7fa4222aede5b16649d7e1c1c6216837171f/000000_000000/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/86003ae50209d7fc2b77d596c871dc09fafeebc706ee92fe9e54f351/000000_000000/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/e8acf8f92e4650a48a2b62e1feb8778f65124179df766d16e2df8137/000000_000000/0000/tree_79.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/W1JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W1JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..59e26478b --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W1JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W1JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8/1653e4eae518208ca123694078bb306c7236c690aea60aed9e7d1936/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/W1JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W1JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..24cfb5029 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W1JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W1JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8/281f84bdc7beb6f401c9199a543733122a88a99372a848adc5d72d1a/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..998c59d00 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,75 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//dd641875e4a837ab3085dc83d033ccde2d447c8a85569e6280ce3425/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//0f7e67926bde1ea3fe70b7692770e41184803b3b79fa12f37f63c295/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//4d3323c9ed2886b16e3470906d74219c8ca3454075443a7e4eee9bb3/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//a5e4b63fd635eee81809d89961166e4984d1135c67123c31da1407da/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//ef766a3e3d0e7981be8d1d685053223b98fec76c88b4542f8c65954d/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//295c760f5ac0cd29a56cf80f907c1855d6a4f53dde1c4ad802778f0b/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//66295f8041c33d043c3d6e2ee84e94053b1940a2fbe2827b95978b52/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//a964fc9fc38a07fd9e74179147bf2b3141af3349a794d1c06fc7ee5e/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//48232241aa1f2dc52cd4e374a9e0fdc1a645fb56e0f9a3b7eea598fd/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//408cb88a20261c77a9676d5140983dd47910a32da196b67ea1db2e19/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//d3494a8c96fbb31316aedbb3f45f97452b45304a24dd768d7ad5f525/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//016c6f197bdf0e4a4213e0f7875366129aa60c00f7c05d11938f1a09/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//1ccdb3b7e3664cdc879bb71b1bfea4f8516a9739c58e4a93eeea18b1/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//298044d5307909d5dcb28ad51d81a87295ccbfe2c17b117598c7fa4f/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//6b8420bd9ebdcf86f5ed03bc2f73bcabca47752c702d4c2a43475ec2/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//9159f470551f3aea1c204869f605f613f844b9d7c975e8793dc4d18c/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//95dd4e6cab67637b070a40a0f4da501ef02de8d207ddbf328159763d/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//ed671fe0cc8d944ef2d72554bbee662d5a72d114d284d59a353e76ab/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//53b0321f5279e7fe9c38d034b6eecabaa98d373d2cffc565075e73f0/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//8232274d8b9f0bb936ada7c4714e73900f38e9b18676013268f26743/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//eac95d5d3541636447a7809af56d29b88a20d7903dce90461008143d/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//9329350e95500c170e838c448783f77d055fc1179f5925a1be8ed177/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//609f5e7327cb126bfe475b108da9bb32fe4cade62524f7a2d4651e53/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//5d2ed9f6dc4688a74a38b7d0ae9f23ce1ec29d2270b1e1e3ef9e281c/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//dde79930cc0769723e1146242fc076ac2add81c3a8bcf39388dcc17e/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//5d4b010099ad7b626588ab8c6a5e8a4db1ae7ee073c207ca7c8849cd/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//bf9f32381278b35b88519bf112fe07475895ecf1ed786f65fd0a3141/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//4ceb5a9b395ade72fbff0a6ad774f2b7751204e6f9879830fb56309d/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//2cbd74719e179c81eb673627001e151434cec6936a4c5f3d0a0ae80d/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//1f0d7a983ab06566dbf0ac2d220868ecc73d3629e62510ff6e9957d1/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//8d36df3d9af86fa39b4c5c1247848fc1b2a0977ae38cc3b3a2998acb/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//9a33bd8df9ec84d4dd6825c5b32b3cb91dc93670f449107e5401756b/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//3e793433c2cd8944121dc99151a772b367a3031059adc42afe6b85ac/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//a188ad2453348139a5645fde23dedcd444d6a7d66b5f387ee2fc535a/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//8840e91e681ca79f8f2029df3634f20edb745d12b18b1892238fc900/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//5636f457f8d35b7484b3cd2d6418595cab620a7b153e77dbfbc54d5d/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//059a9ee764fceed622198f170a33b78b88ef4356f2875b3e6f561ef4/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//ef99dbf58154cc251d15d0a379d7b8f8f9d0c6367bf8c8de72018163/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//f82635f06f795d07f50f88ae29c4fa731066a13917b34a325adbccdb/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//2d7bfe253208cd0543ce609c8eb7735857c9ee43974a093930b4fb6f/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//b5ceb90b4c2a23e079364145bc57357b01344b7b273c1d6d805060a2/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//4009883a789e9343bc03357526c5c68b8f318eb5e509b1aadfcb3567/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//c044c015b5436b244798fde7180e0500d798284688d79d7e49afe414/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//6ccc12474b17f415aa78ef8803e8cd5ec67b2c1eda6d04ad1f2db91d/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//cc517e1a6a52ecff2ab7f3b5cfa0e83b226facff53df3e21e225d187/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//7bf68cf77021e265cd56b1eb03714cbd29956a26c74e8270a34b17e4/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//d89b71d8b2fecdaca6132b12e5741f398c4567cb1bdd25dc7734d762/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//6eedda1ea68ba4f61d131b2b59024424f33c4b7302f18c0eb9e37705/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//5a97ac93267c77f29b6cc296c34dc59ea4395620fea2dbb8a7c4ba76/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//b35be14301db2501f469f4bab0ba93b1f9e68176bcc03e2079d6e628/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//97b626df5281bf0a85bd91404659e5248db88d7fa97614b3c94bf2c1/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//8675601ee94b03fde8640c49f578bf17060bb3f3ce9b164514524641/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//bc1623b7c55c8f99616bf18e11c78e9cd81824ae45cee15c3483920e/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//620615e9af6e3e1c288530492290c01ff6c1b3cabdccd3639b8f9684/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//6d707f44691a5fc41e63abcb231eec9405d3b61262c675663c3eb95a/000000_000000/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//3b5ff84c8d7c6aceb895a9c2e77fdaf9a84b9d65a2330e8a93d0ae50/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//3c30f937f147f90a268256fc918442707c3c7e144665e6cffaa17b1e/000000_000000/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//29c45bfaa0a82d257d23ec801bf09e2b5c2495f7b532b2006672fb08/000000_000000/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//ff6ce132f5a79d9405cf8e99eac2d6cf19f1ff647b15a832d277c25e/000000_000000/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//a94b7811bb9a0315fe7520a7bb000bbc0f6f2e0cd401d15cbec82071/000000_000000/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//b1196e918d7959447eefe3b25cb42bf66540834458877e998097bf0b/000000_000000/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//06a20c0ded10644da1a2ae14fe8a088035651690ce43ec4e3f161145/000000_000000/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//4c79fcbccab6987ebd044eb581550b5bc344ac16a2b4bd02d702f780/000000_000000/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//8e5343520fc32ad385f8a40c2820a7a4987cef34891cb77a5d11213a/000000_000000/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//249c958228338bc24f84a94e3be94d3cc41f40ee6332748c24a30bb3/000000_000000/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//331fe0b9090cf4fe6aff0e5a472ece7c321adf7fb54e85b7ed60dbaf/000000_000000/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//8ef822b297c35dad0beb07c703fb9a818916867c77e736f780bfa3cd/000000_000000/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//4d150be749828e56e3207d85237ec797453521bebdaae9e9d9b2b2ef/000000_000000/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//6a4212966802ebff1dd1b3893b1b67451f625413d20f8d34fa0249cd/000000_000000/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//712ae02adbb6be0a1c08338da1f77fa29606a8d842a131b85007d6d0/000000_000000/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//dd7677b0d4301644173caef553828fe68c2ce42311bf62c86d301acc/000000_000000/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//b2d6b4d3809360a4ac0b1d56d9bb3ffc3c3159b67ab82dfd751bf91c/000000_000000/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//3f33cd8d9452ecdac8b95011370c4a0b98085728e7f1e2733444f0f1/000000_000000/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//9c1c71773e04799273fc68794bbc157107f50497bdb2d0e421e8e2f3/000000_000000/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11_nlo_May21/W1JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8//d1c494acb73f5708470e31cdd9c4b01b46e9724decf6a2ec3b79eb2e/000000_000000/0000/tree_74.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/W1JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W1JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..9e14a07fa --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W1JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W1JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/61e579b96b2adb93a5ecea0b2ea14a060f4adde3707c761e0543c6f7/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W1JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f089aefcdd2c1706fb8c5223fa608cc83ad72a4700817399b3d8416b/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W1JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4646ddb9a02a1d051ad4f218389b61f681df8a8839adfa06457ecde2/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..d0f5e01e0 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,68 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//7c93400b957e14e8caf88d57421dad2dfabedda2b8b5ba6ea13ebd4a/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//17ecded610bc9613de4540e3762e078ea634da7811dfae33f14832d1/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//53a37347b3b23bfbb432b039e512551208752e09d382b9fa387ca256/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//09055ff8eeef31aee510299cae716fdcb9d5dba36f60b9b5ffaa16de/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//351af938a39a69178e71b706e7b461b344b4966e387cb3af944ee8a2/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//c88f14d37d005c05797d6d0afc0f3d0726d6f077a45549f5a769d374/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//cdad225e6e604381845c9d6b6dd062a709bf2b4acdbed00087dcf3c0/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//64d0be2fea0137389133056f87a2ab2129b2e3ac2f59fc0bf44a1a96/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//500f20b00f2b40ae6d1644bdc273325e262266b33baebfb69d035705/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//381a2a65eb7516688837513506cc1d8c6cff0504bedcef013a33843e/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//fcf2a70bdb32e0876e4f17d8ebf1d40957f3922de37a97d690314272/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//48db59e03c1002e4376e205f007a832c4d1814b4c0e118db92bac59d/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//7b0c45a445d354c000299517f23363eafca12b6b3fd1ff2bd28416fa/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//899bd0e7ea1b24cec796c8607445de98ce67cddfe98004ddbb68da66/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d7efbc1035bc917a5c87ba0a53a5e381775d55d17e5d0a25c5d94898/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//1bd2720113ae417b5fe6182b62e308cb8559cb3ad596af5bb7614c5f/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5429ede9ca873685b060ebcc3dd806637cb51551ffe0a373ab7eade8/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//0ad4993b7dc70d2a5ab5f9fc371663cd7da3234d4f9774927ae91995/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//f9344631a4efe147d882a52f4428772a596ca9e4bc8e82ae8e7ec108/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//a80fb5cc163cdd881be582253990f4206ec834fa15f873656b1ca69e/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//60cd4b640ad54e5419292b5d7e4bce52ef6683c4d55ecd4b856a28df/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//afdec216679fb6ad569c61ee53e7460275c50ebdf17e6847d666c23b/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//55181aa1936229634cf5a82da05ffaf49750bcf58aa2ab4398c7d42a/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//724ae221a18d1d2af596eafef1f2dc9a3f790ae184715828409c9cdc/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//f97f3472829e9c4e03ed707838ee82fb0c3072852dd231a1902f3482/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//8522bfe8962559fd51f9b775729c2a9bea3ea0d9a3667c36126b5493/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//9c925d7280c037e82c67f1b03992d6dc9de8f37a664a06773377bf8c/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//db3582d0ffd938218231a08ec76f813fa1cf0eb8398d779979f9d042/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//134bc50712caba563186d13e5e176ab77ab1b661de1b85a3edda32c4/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//7c5f909ad064f96fd15fa76fc967be87708cb313321af95c5e36a440/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//ce116f00da0cebc3f40e7e16c3dab70f2d336c370b45140c27ff4053/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//a6c3eb12ccd9397c55f6f2dc94f63aa7f2cb159be7e0072b7baf8a9a/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//e3a7f6406306b9363f1d6a97858f15e161acaa3ef863b5334f4f5b1e/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//88e8d0e90e00c039ca0c2d37c491c529036601070e48964530cf5ed3/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//6385a6b8cf75d09594d204e8b9cbc261652945446c404afa1d204321/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//a8695586b1c3715051d4922896c48f960692c6553281121fbdf1142b/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5baa73e2f2d159d65b31f22522cadfbaf19b1f21fb71e8f9eb46ebf9/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//7f2333d758c4dd355eddfb0ba4339e70a6c19a0ec805ce007246ae55/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//e1be4a99ef75091dde366886300c09ee2fc06f36eeb0880cc4d9ad1e/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//cd704ec0f37d250f639f1b1cbea87dd7571e13848033d5cf3fae4156/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//45411809e3b49602163e2a385cd466ae6a0319b2b27d2356169572f7/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//4087ab2d50663a5e24ef213bc8800680720d739ff69e2dcd8550ff0a/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//fb9c994c937272b71c8b7039dccf27472b46857d133159ebd87df2e4/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//3ae6126c7cd9f3f0e72faf85acb5661466b5e13682989c3e942d4734/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//15684da6c4d9ec7fb1ea44e80068208aabd2c7cea5ceed439603c20d/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//83cb549cb29b707120c256fc4b4ae2de498d44e9fae78d8af49170f2/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//9e0f033f1131b37032e556719468f3b4be3e8552b2fd3d05c0120375/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//e917e2782ba4e0388f29f506f5083a7dd8996882959ed8971222d88e/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//377fa434893cc4811a36710a30ecd17ad737a163ae01ce355edf55a6/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//1d0e7cf2c536fba59a41c8787df9168c930f47e62ab364d625d5debf/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//ab2bfff9bad0bb74ee5cd27bfb8b70f39129145957b0e2ca62549b6c/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//2d952d4c4b53539005439ec7a3dcb5ef3ad4d95e33e3af70eab8bf43/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//df026d99ed6c88c71ed659fa3b977fe1d5babefd10bf857bebf786a1/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//df95fd670b975364065aa628694d1c9d9dc085d72bdccf252b9509ff/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//3531aac371fa4e93f3a4a0d6e14e20c2159376f290c5e9ae58641027/000000_000000/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5512fc31d8c52a46ab2921e571e8c8c53c9b392f82e0a395e528501f/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//45e71a898de3535cddb987cfbb02a3743bd070c0cb38209f653eb22b/000000_000000/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//f6f51920bb4c5873e5ff952bbd494a98ca9fdd0db647496fae0fe67c/000000_000000/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//983ce16c36f640c7297b34d5b4a214a6727f2354d760aceaf8ad0e10/000000_000000/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5c4e056bb59495e1d40221c22c46e53a061d50b674dcb9bb77c68b25/000000_000000/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//21c0105412f15f741a1cc84e0ca7fbe178bcf1ed5c33b83573ece9d9/000000_000000/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//550c3480a2388200376a7d0bae16bc66df7390dcad40cf2ab5126e06/000000_000000/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//e46e728a273977ddccee05f736e756c55dfd3d2bc8d13fbf0bf934ea/000000_000000/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//be6f7a90898314225f440233d97aed7c8fa3e1fe8eb293ec49fdc7d3/000000_000000/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//164a2a9d4b4451922b6dcbb3c82a526a8bd634aa0fba5e5e375ac8d1/000000_000000/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//4f35a53153eccbf683734696f00db761ed075f57d18aa93bcb1757f2/000000_000000/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//85b887155e16510e8745f938591d2563bd816eed654e885087ae92ae/000000_000000/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W1JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//b1ce86d1ffa1dfd0a4d447e60dc6a64348cc7c3abc95b3736e718413/000000_000000/0000/tree_67.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/W1JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W1JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..dd07ca162 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W1JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W1JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8/44207e4b341b973f125c39c53f7a5aa1e5c06de4af3d5948540d2e31/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/W1JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W1JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..83194cb36 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W1JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W1JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/e63ef6cfdebabd7a17c1a6d53cdff5efd741f092763c8522642f2fc9/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/W2JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W2JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..79073550d --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W2JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_LHEWpT_0-50_TuneCP5_13TeV-amcnloFXFX-pythia8/33b59cfad08b52b70d4f856ccf035f59eef766841db482c8f877fbb0/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/W2JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W2JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..f932e29c4 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W2JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_LHEWpT_100-150_TuneCP5_13TeV-amcnloFXFX-pythia8/7fe8017d60b4de341d22588fbccdf53582803f92d4fdf3ea3dce3bd1/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/W2JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W2JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..83c10e31a --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W2JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,4 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8/8449a9ad79dd95db42f13cb15c8a93d5acd2584000617a2630de6d5b/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8/dc8369200b323dabc1da47f6502a3796d0b40514ce611943a5757651/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8/2de079bbc7f035f96279e8f4d6d0c6d0d3d85cde74df1aa0608e48c6/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_LHEWpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8/d9237b1c731f4972786562b2f2cd947767241ff4fe729090447cd5fc/000000_000000/0000/tree_3.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..5c07f9caa --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,366 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0c085164e5c9ba6ef6cea69d5fa3a9ed508742d3c267bd9e09bad90e/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b04fd61a7f70b4fba87071ca20d950877d4e73d07cec92e3a649f142/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c93a4f73bcb53bef14c39e4b7fc902d28521a76f2dbd4493e8473cd2/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e737ae4085305476420c83757917cd893e5ca57c486a22623effff6e/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d5ed59f9ffd81fc40e696f1530feefc41b503ba01cffe9e2294dac3e/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/aed60d24851c00c472bac729d32c83c95363ac72959ebae58f16a544/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/edb0432696ae92b0553abc318fd75d3213bf4cdb0b36a0df2b22c272/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1d80caea213899be8061a8f0e37a6085e9cff53ef08baca5d095ca06/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0f0ae5be7c865015e0a158755af3a3247c550eceb22d374a19883791/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/bd0cc94537a625b3443e740ede229ff623f0577dd73913aa81011a79/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/6081a3ee8771d7839be9332498f25370f0aeccce22bf6b8bc73ac8c4/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/22143e5b61b65f9fbc13e6ac2fade48cea4d2394c0ee5edecfed72ad/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8fadefea53008f62dbf921f60b9b5e94e6e91323324f01575ecb7233/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9a7b539ac323aed49bcfc624573e8ba3ca427c4f2ecad203ccffa33d/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b3c9f2cf3686fb1f148ac8fa19bf1a00b96271fde7470cb26de9b107/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4c902136d5e0ed5a9501dcd9016d0cd41e36bd7a1ac979893e534f4f/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/fe5c1d6b2afd2fd8909f7759f4b42d2ac92c0daa15d4506a98bbb039/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ed60f788af2b88ef2c88d569aacb04793be0b2e3682414f312f4d8e9/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1a1da4cfb10c170e534845fe0aa578935c3eb526ca4a045302549488/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/171ed607321c8b7dac3ddf5db02260ce26cca0edefe291cf35c3d32b/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/6d19c77192196e13631a876be5fb2d6e37e37e301930c06c2393061d/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/bcf42609d402e4868fef78592b8b45bb5d3550bef74a5c6ad600a530/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/cfccb262a7220d007e838d42cc8b2f7e698be78c4824095233f7cefa/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0e5a6c98e867d53c34599ee1c998c8d75e1a4871f3e9da33044e65eb/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/527a1281cdffadbe9de0025b4c3bed91c165300a4535d171b09f7253/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/538e4a07f50dd614339bcdda1b0003315208f78f3b9f8bc636082de3/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/466c6d44d2bfac18586eee0bb2c98f94b33e677d6e4141028265f9bb/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8ab04361b111b665fee8d75574c5adee3f16dd5257f42c5d1bfa387d/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ecaf7283dc73492349fd53efb8a090bdab44974fa7c969ba9bcc91f4/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2b8bd4d011dc96153573c3d25e2237fee9753799404afba08a9e9715/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c0ce47ca04f113786ddb1a41671098e82eb11a91bcf675249bbcbad9/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/edaa3661fe9da494e0e2cc94a20d1526bed3f7c871df916e3ad5bcb2/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8dea77f0517e2e5b6c6eda266f9faa61363daab6c710062e54b6b427/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8e3d949af1f7784848e50479bfabbf34789f83e083384bd0d0254889/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/fdf67d8e82b77b371c5dfe75d54dc87cb4c783f3bd5d05ff5a86c53c/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b45ac355bf7b1b9898111e6cf7908f325752c587ba05e91262b10271/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9d7a046ede10d1b09c97236fb773d15e40f41efb892a3dc782980994/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/da443036aec04dd8d795af95f6679ffbb6cd0a38537d994385489944/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/fd5bc3a6fc7451b038e2e4ad3ab4c09e6055de6be4cb7807dd71dba7/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2d71cb73c48406cf3a67ec3167bd1e627b73cb36041fc8b30d666516/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/47e29777e42b36a3109b746465ba8602117218f1f54caf99ec0bcf35/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/80ac073216cf8b94ddc7d44f392c265e6a315528d5c4311f175e047c/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/cec7c24240f2b85e2d3cc455a66fc46b680c3bd08e6225316500b0d2/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c315f84e665006ae4fb1f8465136e7b8329ac19dc90cab8f030b3f8e/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e4df6e9b721e9b26a931de80a2cc1a31657d499b326f52ff0fe1c687/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/51569c02832f51e22e2761c23a179bdf13dad3c5769208753212588e/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/73b880e14133cc61746169ba68da86096b4960f3c4e0c81aec32b735/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/890564166a1e27f9bd731e4933cd1523632a54c541b5a5e294135970/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ca2faaefa5be8aac53c002d8b68d231dc73c22e9c4a40db5a1709534/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9ee56cd18ae401cdc04f6dc9ffbd1105fdc5a4e6c6c790c0215217af/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d27fd689943e9fd511a2246a4878920bf7a3f5308525c4e265f27018/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d8b617f87053ac647209ea7ad13fe390996ac7126a6c9b065fd2b04c/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e119c65e3a8a43a469a12dc77b3f5903a18360df5e1aaaa11c831720/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/931d9d5d7b3d7fcdb1af69b4a2a76bf086e25f030f9f81c4db1a0adb/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/fe4e9cccf2ec8bf2691829124abc3d617cbeded4d468b4d0c5851d18/000000_000000/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/bdb5ef117932a50e83f5102a8cc293824d1e82ff2a7626b541227e40/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e511675c74045ef3d2d3390502da9f30ce49a8778c2dd20deaa8e53d/000000_000000/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a4099ff8f1afa388b4ed23102669a44797091b820a3c016b1f3ae98c/000000_000000/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/83c4a84a3509b978131c5871acc51ca494560d120b7fb20af93ed639/000000_000000/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a25f4852c551c1360562b9e18e7f19e878c0986b75b6b038497a6973/000000_000000/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2b48df9c5a1d4817d5fe89208f7f32d9bb4c1e05984d6a35a0a018b8/000000_000000/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e63d8262890c99c14e0fd1fbeec2a5bebd8f61074dd3a3536b0a6edf/000000_000000/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/133ef0d2ae53148a347c4ade48f05f79e6730258143307f8792f6c18/000000_000000/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/99ea86cabac66249c7c084e598f1ecd7bf55a7326f32052141463c2a/000000_000000/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1819ac7cf98c3bc01fb84c19e5860d8b15b73843da2a7fda7f9af682/000000_000000/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9e5d685774082bcc4ba2883fe935d1157d105ec33b9e8fca2afeea18/000000_000000/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2867c3236ccc6f45f219003ea42686f1a174ffb3ba7341678576a762/000000_000000/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9914fb522c143c6fb659b84fe8498c738febce0f752140a415beb06d/000000_000000/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/05689b3f559d0abcbd40e9aa5238036eb3facc5e9be72b380ac456dd/000000_000000/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b80de014b5f7f4597211ac23d7870c2c7360403ff5d6e20dfbe210f3/000000_000000/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/be86710045a954de74e9766c0d486aee66d8e8ccecfaa20de651c8f8/000000_000000/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/15f14e676be36eb67877ee9bce47c13e507debae1bd8d1b6c4adbc64/000000_000000/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/fbec949225c47881cc7b974831f7b500fb4961f32360e1c79dac1975/000000_000000/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b67de4838c3c125403ed68e578bf5fc512322b61bd83a1f80284e7cc/000000_000000/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8669d66d329af7dc497a3d58a5cc61466d5eca082077ec3c29db0224/000000_000000/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/237998c8ea6b5de18b624db066a6ab4348785ad72217f236bd260ba5/000000_000000/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/94f8d4f8d91d71a27a86adf9cea1260aece1460dcd585929b0f93c4c/000000_000000/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1218157dfd50fc9c48cd1d98afc63ef4a297c2d9cad0663857b91032/000000_000000/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/84f857285ae5c70bdfd0512b693b31388385f5127e5f5d80b53a9964/000000_000000/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/bc5dfd36a64540dff72dbf4f1588e1c5848ffa9b8e82990c57863a2b/000000_000000/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ec467893ae40291e53e026fbaafca332d8575687f3335a2d2d81a52d/000000_000000/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ebb7d2abbea62cb07bddf608635560573d4f01d1437e7a051c4496c9/000000_000000/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d803fea7a078aaf61e79bd0dd395f65eb12bf98b34f206890bb610fe/000000_000000/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c803784b9eae7e6cd1e03865b73956f67772d3811f4cc602129e95fb/000000_000000/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1edb1c2a1efd71c933baaad460a74a1eab2eecd59e47450b08956c1e/000000_000000/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e91a51f69dc8a64ee79ea7444c10706198023142ffa9a6ab4242dda1/000000_000000/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/7a1629dd1bcd90029c04ea47f772f9e86c7a21a2e3538b2693a75bbc/000000_000000/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8de00fb0e2bb86cca1bf149be1b7d8c3e7bc1bb8f089293ba404d3e8/000000_000000/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8c93b4377067bf318a035dee5af1d19058686abeac81b17fc8ae28d7/000000_000000/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/284146708b5e94f846f36adaf9defa90f07d241868f87a3510817816/000000_000000/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/fcc53c26b7772f51ff24cddf6c8b69431f32459d50bd6c45c5d9ab8e/000000_000000/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/139fc2ce1ab3a3fdae66c253c13c00dcead790b824baab63ee6afb20/000000_000000/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4a02f378cdd65b38cb36592db6af5fff8c25c225567e00a528bf9cb4/000000_000000/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d1ad28ab7ac5c4f22cb117bc19b7f3833041876d318b99f422b6e9df/000000_000000/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/17dbed950d400b4e477d5eb01ea154495f0c3e910aac2016f01eda27/000000_000000/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d2f26ef4daa3131476540578ae1b81cb2a4515c5c9173c3e3977995c/000000_000000/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/55db2ce32bb3dddd2a7e07b6e30a78eee82acf13df45a9cfabf7c94a/000000_000000/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/298f354d53fcb00266eae226c54636679ae57519f6ba3124ae9feb99/000000_000000/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/7f86b94535c2a483a9a1dad27e8cad616dd62523ccb83c9a7b0432da/000000_000000/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5564cfa2c722f423e7868f5cfb927d6e4b4db6e8e6353910b37d8fc9/000000_000000/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d76f74da1c0cd6bac17d6f570f08377324469ee2aecbe2f4860f83da/000000_000000/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4f113761e27cf504bb2d5e9768f3dcdc067295ef7e5ccd25efe7c075/000000_000000/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/be73262b6894c54f56413ec4d2511cd5fcff65f76c6ff995b434b532/000000_000000/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2ab7beeaf85476b09c6057f0afec4c03a98440bf73de86a333bd35c5/000000_000000/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/26f6f5bb381cdfdcf11947c3ea08100fa0a286562d6c0b55c76fc9a6/000000_000000/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/113fbb3e5b14ed4898fcae692e04ae7a9a6e7f4da9e57e68f9b924c4/000000_000000/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/387dbbf27897ceefba76afce06ae4a63da590ead9b6e318a7f6ddcf5/000000_000000/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/062b0ecbe496278cc88eb5449154623aec5b62003430d46a432f7500/000000_000000/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/560d397a23d94ccb021b592e7012b560c03b804d2e97eca4b5a0a05d/000000_000000/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/85a96fa583440e4207489cb68a0a7718c064f8a816969dcf11f7e13f/000000_000000/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a15deded0eb43124c8f5d8deef34f6e0815f839633fd0405a60ad766/000000_000000/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/6ea677a5ff9755c6500608d69a8d4894bb1d3610b31ff1cb825f6f04/000000_000000/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/43fb46c3a9491aba1466b0512d1d8fa8dc004d0d52ae8ffb1b8e9054/000000_000000/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ca7e3c8f473024dff074095620e7eace8009b8debd175d345fb8c781/000000_000000/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4f93ed7a94d34bc0952ec137e8f074dd66ed7c1d032ab47558cc3488/000000_000000/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/28bbb2f471d39dea1f7071bd43f66c0acba3fb27f72f21c8ec97ff43/000000_000000/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a89788e31a2e2a8faf16581c35178cfba3e19660eb71cfd613336e4f/000000_000000/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0ba044422ab97c49f4018677486c97e5e65d667d979d5b8b0f7a6526/000000_000000/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/6b087047b183cc871a1b5a54ae244010306462d41df5dff9d0ef005b/000000_000000/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/fdc94e59095d32ba58f7992dba0f085d9671c8c7240cc53f617786e9/000000_000000/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/51ecb47d2d5b1b40336f7a766ee32673101c476ea676728097199010/000000_000000/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9054d4e929465a82a08c7f6595bdee217a47381d46cbbf08c48ea40d/000000_000000/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/77409a5114dccb6b0300f8d696b80b9b0ef34798b9829d7c8ce7d383/000000_000000/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/085ddefa1c5337bdc824d6514712668b475f86cc59cb441b8891b3ea/000000_000000/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/64693b849073510695af740504fd8cf780b89231db179d66e3860c1a/000000_000000/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/928b42849905f41ccca26fba2a890287e51e59783d28ad4ce37074bc/000000_000000/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/394a31d96f1a05eeb580d7e5c4cfccc79429eb99368473bb9fc1a924/000000_000000/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a19d44b61db9cd3cc374985de014fae6c783230583ee9908b7df5d15/000000_000000/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4c750da9e1dc0f9c45371ae6a98a14b7559394ba0c4c7105c7b70b42/000000_000000/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1e56565dff12fc7e7a89d0420202cd1c23b9d428015cd688e541ad01/000000_000000/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4d93e61bda0f8aa7aa10ae83d39f916d2bbd5b7cc2b17bed81568fa2/000000_000000/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/353640c395b22484d0c3bad0247e8d5b12cc719b194c4ff44edfdf12/000000_000000/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/663a924c158a0b26af025b94abfb83c90710e5e106300b65e6bdbd23/000000_000000/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5d9889ae33bb17a4ddf9b11f203fcc7025a23e441502cd746f04f157/000000_000000/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/dfbdae6a0f3a5a6b5b3797f8ec775b009bc8f816ddf44f7cb8e0b97d/000000_000000/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d52cb2edf9b8ab26925788184a0ee5e914fb458b7202351c94744e37/000000_000000/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4b7c5c17650eb62e5dea184660662a1561f179fe065f8119e645d3d6/000000_000000/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/361f55a6659aeffb3a1b49298d413de7f7da112b7243c6129c2aa53e/000000_000000/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1376dd343df881d311feec3d099efc43272e21698649ec63ef541e9d/000000_000000/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5c6fe1005a16ce5f9c17ce823fa9105036d2222783e06b9c93cda015/000000_000000/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9a0d05145815cc1cc7015d7beb0b318402fda59aacefe1de766255a9/000000_000000/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0bbbd796c240330fe07e83aba6672e1904147fca880046b42eb9a520/000000_000000/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/07d781bc2d8f2773e4bfa9b0535db546a880a790e7852b50ec31e1b8/000000_000000/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3c08a46ec97785a63234d32729ab61c5f6aa5f486454a7fb0a42cecc/000000_000000/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/84c0125789e6f684cd310b9790c72306c384e6fc226b9e7458f49cc9/000000_000000/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/faf50c76b1372feba3c8f85054ea94e8847b55ef43cc8fde7090eeed/000000_000000/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d66696d2d14f7c0f3f6150b012dbebe195e7d53b369926739fba3aa9/000000_000000/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/141b5a890c3b28f1b1f36e0667affb9199d309e548bad183f194a128/000000_000000/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/141a277e371da7eca86b99f9d915161130e373fe0a804dd3de5141e0/000000_000000/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/55a660173be004f586cfe2ac3f7f161c8d66077d65ada1d0035b2882/000000_000000/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3f4291145a944f3731f87013725e8dcc1780280b66f3bf0d06fb1682/000000_000000/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/7d142bcffc2d7beb471a0b477cc128aaf28ce865e8a856c3a7958ec9/000000_000000/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b74da1db17aa5e6e5aef7176938eaec724650e603426bd4555e67edc/000000_000000/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/6feb62255a17a6b04390f7a55eac0ee28831112c37f7add0875b0a8c/000000_000000/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/6040b2e18560241142cd6b8cbf95f1c8f727cb1574d6d65120596f62/000000_000000/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/874350eb4365d38a01a67271a7814907e69e9a7913d6391400675137/000000_000000/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c20a80ddbe78364d8ce31093bb81ce8501c67a0603a3baf4552df977/000000_000000/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9c8d7cd7c0972f100791391b07ba1fdee8d7f14a513f797e65b28b9e/000000_000000/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/fc3ecef098d38911a1f2992d1f1a5b09adec2863bd381d9a21388fb9/000000_000000/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/425fb9860b93a8a3c12f9bb50389ad5a9f047b89a51e7787a7ab9aaf/000000_000000/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9c8c3a6cce58773e63a8243875392e49b3c2d6a49658bef34663ee64/000000_000000/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/cab4c8b2f9b37c1a61f852824ac3a5a79dffec0fe92ee75f19c204ff/000000_000000/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c27f0feea25af1b99b406cd0fe54b46f1534170c3f92d0620517632d/000000_000000/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4e05fff286dc1ba0833cef7bce9cbbb0ad4c6e57d079daf0177162a7/000000_000000/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9f4ed3a09acd2ebceb0744b7024bb24e45718823682e9c5e19848586/000000_000000/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3b92b9efdbf9b60962687837fe07b9a83bfc1ca900fb3c2d67b6429f/000000_000000/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8786be768bc70d4756b0c4bc08c12a30e638677c7ddda211f673d1a7/000000_000000/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/735d26903b5e13ac61673035bf039fb7b1651a1d6d738c8ff5ef2e5d/000000_000000/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/47d66c418362c7ecb9deb73637a4a22586f50fc971d9c2cba0a420a9/000000_000000/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0b235ac65ef4a92350748f35a969409851fc003ad8d98198f9b8de18/000000_000000/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c4b3cee01c14de7e2fb3869ae2469957ed99eebf9f065659119a4eb6/000000_000000/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/fbdcc500297c9c9dcfc74e9c3b72a11557d40123837d73f8153e2a36/000000_000000/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2d137bd2fba1373a14b3138d87a0de427efe1ff63ca1be0e7e3151e0/000000_000000/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/779e7f5a44c80bf5587480f7a0d16d1de8fc2ca759c5c11ed40bc9ae/000000_000000/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b1d8bb811f219d628513c34f2ddae109679fb247b14a2c4c7064651e/000000_000000/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/297cd3b2f9ac1c40155be3e4b66cb37a7bb4cf3d4209ab94ec2997fb/000000_000000/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8df772c4f85fd85161a55fc6eec690622d880144896fcc832bc84497/000000_000000/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9638592651a45afb7b5b53fee61d1dc65525a815157c75f657dee5ce/000000_000000/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/25fe96188ba162bbbfb4a68c75d00ef317c0b7a3ccce6138a6346284/000000_000000/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/6bcee6a54f963bf75786f47419524be165835c249fcf3bbeafcf3d39/000000_000000/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ce506b287ca0b08b8281ab4e1b732f1aa10f539244e34c30f89c9533/000000_000000/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/36fea19a718ef8e0cc50b8e759e379c15f3e30ffbdf0eed5c9523d5a/000000_000000/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5a564c6a15fa886ba37fbc66245b485afcc61191cb55c8fdc1462b1a/000000_000000/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/dcdaf61a3701e83798281154dd6c1d22f8befccdd474ff56f6a940db/000000_000000/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4bc4b4d1b024aa120f544407de8118490e6a646a0684fcffa9a07b2c/000000_000000/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e98d412f61d84248b857ef69ee9aa1f44735beb6fdee1f1e623565ad/000000_000000/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/19539a377e64123b0a32943fd31f0fd127d8dc0415bacfbd9662bae1/000000_000000/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/95a3370dd761702a7738174957efbd08dfc1e632ebd53b5053d3aee0/000000_000000/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/fc98713c6837c3e84f0c1c28e141a16e4315c1b958d270e0249cc58a/000000_000000/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/624110ae8867bcf1fa06d15b748649fcaf06f3b0605e8fb2d01065f4/000000_000000/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3cf0b827cba09469fd5ca85ae1b710d44f8503244baf30de42700d00/000000_000000/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d4ae812656abf56d8762172f4cc6a65785cc1bae640b013ae1646676/000000_000000/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3f3525eef1d795ec8401686e96c01ede8afd8af15419002055eb1626/000000_000000/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e1631cee675ec063223e1bf85aac059e13700e450f295ce34fe389c5/000000_000000/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/aee6ef2872bbffb6afded48caaee384dfa102fd2a86c76bce4a46fad/000000_000000/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d39c334599e0a1c79ef5830390ef9eb4afecbfb79721db02a0781a03/000000_000000/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5da25738e1c35d20b62aeb376948be34b48925fc4d973ec2e9faafa1/000000_000000/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/71e07913d6cfa210d97dcb45bf9477f169b22584c8da926bdc4a00bb/000000_000000/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c1507b7446f1eeff1daa8926def978feb667861259def8bf07e85b6b/000000_000000/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2f4b7b7125ce493112909b55f2e3b200b6241c33d691afacaed59e54/000000_000000/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3b7c69f33229d63965b20368c7d27a56c0321dce479aac2a35553a1c/000000_000000/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/92fe5b19f28c872027e8a8d81b766486e18b424ec25b07e0c5cf64fa/000000_000000/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e29836f67790a12240882ce610fdcbcf4437665536dd8944db8bb167/000000_000000/0000/tree_202.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/14094cc0cbc8ae886610548ed8faa8d853e41e00f478838c7fe79305/000000_000000/0000/tree_203.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8a9e29f404456cf968d8a62689eb4720207266b18f80fa09d07f6749/000000_000000/0000/tree_204.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b88599fb6a0165a6340241460cd2e21cac4f2dd6f560f625e9b58372/000000_000000/0000/tree_205.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ffb3c8d35ab19dee9246800c5bf1de0a374f7e1a2fbc2eb83100f32d/000000_000000/0000/tree_206.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9785914ec978ea677a0f82e2271c891ef47eb66a93f9b7f25ff7385c/000000_000000/0000/tree_207.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5c5282f4afd87f2c0a93e76403c24ce757dac6b69d35f9e1c625158b/000000_000000/0000/tree_208.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/db82c7b232033a0623cb56af1839b535e794d74ed201419b902eaca6/000000_000000/0000/tree_209.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/94b716ecac58b2f0dec52de2bed00867e261f69b9820c485e841e5e1/000000_000000/0000/tree_210.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/019071edcd698ca157cf68e6f96de4a088a765bd1287769cb27ae111/000000_000000/0000/tree_211.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c2928b02fc34fb85ea0b1b28fcef096efa2258481063dade3513ef41/000000_000000/0000/tree_212.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/76699cc4d3cb84d226bcca8e83bf8acf8a08afb65b0fd08825aab504/000000_000000/0000/tree_213.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/fc24b640cd4c975b53c0b5d3bf1d1e19446a318263de1f534e9effd5/000000_000000/0000/tree_214.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/83aee40c1d7c06feace7058989a54a2746e9385a24d996ce7d111711/000000_000000/0000/tree_215.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d6297906c64168911582fbd63076c50c9e17658e55c26bd24eeed693/000000_000000/0000/tree_216.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ef938ee570bd30c91aa8d7cfe1e1d9257f5e33679348d83fe9c112fe/000000_000000/0000/tree_217.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a1516af334f1f9f009412b6ecaad3aa1ce11a5e3994fc173183fce7e/000000_000000/0000/tree_218.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/af6753b95fc0fbbbd522371173517133bc511498fbda63277bc33c82/000000_000000/0000/tree_219.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/089fcd0a507f77a696058fd568affea82ca4558c3cb42c9551d5dea5/000000_000000/0000/tree_220.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/07f1b7cb79d774d6416a5964004cd073ee99db5c224630adde3609bb/000000_000000/0000/tree_221.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4f84c79dac37d5da7bf90c503dfab49e0b97192146ea52c3794913de/000000_000000/0000/tree_222.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/342f22f1a6f5de2ab26cc8892c6417ad68d135c69d3d48fd8c7161ac/000000_000000/0000/tree_223.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/949c59c1bab0e986500cdf7bf6bf3d33d3e29a4676c1b4afffa453f9/000000_000000/0000/tree_224.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/73e4728362a20b9d637549ba42bb1886958954b860f4bb101872e527/000000_000000/0000/tree_225.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5759b513ae839dea424a58a65842a95e118168960463d3c6a298a3ca/000000_000000/0000/tree_226.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/679a346310d7cb08b98d0a60270f034dd5ba8ae820098083733fd878/000000_000000/0000/tree_227.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/16594d25b14ccdd713c334d442bcd2bf58ce98abe646cceec2b5f9dd/000000_000000/0000/tree_228.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e69c2022575abff58605ebe320439a32c2014241bbba92551b5e180b/000000_000000/0000/tree_229.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b6df7e46fcdc81147cf20d655b4ff62e2b8bdc81af937a4b0b0ad2f4/000000_000000/0000/tree_230.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/675f4d681a59cfe651c624e0a500c9f5b3ba6b5e30cf9a86ee176c2a/000000_000000/0000/tree_231.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a294b57b84aa567c57c0b3c09577faa1ceb0e528899efb05fc49c136/000000_000000/0000/tree_232.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b0f13b147ab00c573557950ce6b788dea2bf6601ee494a985274c6e2/000000_000000/0000/tree_233.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1d54cbefe44d71f19422e85fd2cb9fcbbe7fdcf58307ac734972862a/000000_000000/0000/tree_234.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/954a7a18b9d7d4957bb38747b668b64b167131ed22fe7c84daf251fa/000000_000000/0000/tree_235.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/24ae52ae4c36aa31d3db2434b347ab7ef5b3f43ee78236d5843696f9/000000_000000/0000/tree_236.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/402ccb9ae0b02a905fb7faecfe7486e914706b20b341003802318831/000000_000000/0000/tree_237.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/05843720f91ed300f90d172c1d8a1c00c19ccd3c19b21e14c610cbd8/000000_000000/0000/tree_238.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2538e4b10df87b9cd29912fa726d542378a90ca56c6873a3858a7336/000000_000000/0000/tree_239.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/287c2cbedb93fce0d6a0fed910ce3781485c96080dcfde46a72a440f/000000_000000/0000/tree_240.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/6b9630177989c6ba7332b59ec2a9a7e7f376b0d115d22b82c22c4ad0/000000_000000/0000/tree_241.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1752c1a3cf199a23175662a5c68d32cce824807c82a519b13fc5ccf7/000000_000000/0000/tree_242.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a564a57ea903476f22bc33f046c331468ee0fc79877f251c95d046c1/000000_000000/0000/tree_243.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/06fa4b05845288f1663f51fc14ff92925dc7f8a06aad8cbd3212731f/000000_000000/0000/tree_244.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/77fe819692454c3f248737794002716721af6d86ac4c111cfb4b4f66/000000_000000/0000/tree_245.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a4eeeff19e6dc42d6874bfc8acecb091ebb2a212b41634bd64180b35/000000_000000/0000/tree_246.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3ed6a33398791a53cdbe384e45bab2455a29173102e8e0dd36cc901d/000000_000000/0000/tree_247.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/cc2070e567cf03c2a2092bb77a9afca80ce78fee0f4c7f27cb1d2531/000000_000000/0000/tree_248.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/eacdcc39b876cda9df2aed482fad467465a1075f322eb069d28e1075/000000_000000/0000/tree_249.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/172b5ad20698645060b5ad5169c2da70bc9d68689edffba2aa2af0e9/000000_000000/0000/tree_250.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/51fba1016e74e63e77bab796c1e4fdfa2164ff42f1229a780959fd50/000000_000000/0000/tree_251.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/05714e50aaf023895d0b469f1af114c2812585b6026a1b11c7b48018/000000_000000/0000/tree_252.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f39a9db469c009be3d21c2513c3434f5fb5b96ad5477a650235b368f/000000_000000/0000/tree_253.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d730496fda44d457e8a82205c34a5b7c7a60a64100f965e808cc2c4c/000000_000000/0000/tree_254.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c1d0f9605391857185f1a2453cacbc9e85bcd92fd0259679cde39116/000000_000000/0000/tree_255.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b396d35bf1acbac60187fd30d46c11ac1d356436ab2e73c5ac2cb2f8/000000_000000/0000/tree_256.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2fd0119afe98547c31aa476fc477b5a0a6449b4b114aab06bee0e43e/000000_000000/0000/tree_257.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9b7ff91beea001cfc0de94d72e575d233ce61ecd41edd35a9a33335e/000000_000000/0000/tree_258.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1423b884e74f940b1d46b9e32921178146285fbd345fd446a22a966a/000000_000000/0000/tree_259.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8e7c34b0b3b79c0a0cbcb99540296ecf9b0df67a8b0dc24bead4ebe7/000000_000000/0000/tree_260.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f14def86a7276a06ab371fbd27fb42b73ba3516f32ffa83caae6ef5c/000000_000000/0000/tree_261.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/27012f7c66c770fdd9ecadf56c8f1fda18dda87446716c556cfcfe94/000000_000000/0000/tree_262.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/640dd1d75f11c27a730cc7c379e634d13bf062f8be26c54fae1e0516/000000_000000/0000/tree_263.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/03aabd9aea599803fa9a7182f44fa7abd261abf590463341572ac6e9/000000_000000/0000/tree_264.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1ca52dc85b6433567612036e8c02cb27d1c4ed6ea3b69252e50b4c80/000000_000000/0000/tree_265.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0674018e08a71c631e8b3ae8cfab3fe316b21e2326490ce3e2839be1/000000_000000/0000/tree_266.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9e6ac19ea9b7e5703ff0865bb5390b87630fbb7e737bb7974d913f9b/000000_000000/0000/tree_267.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9e8d4a0b3ab21b492b6c8477bd4e40049a93a838775b08d90dbc451a/000000_000000/0000/tree_268.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ed97bb07d920eb6a7b7f3de6ba14a8f9199440b09a5ba6cb156a0f17/000000_000000/0000/tree_269.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9bd3d445b6de2f224139d107ed7d42a4cc6f78680003a59d71ede1de/000000_000000/0000/tree_270.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3e7ae4ec1954a2c1f2219430cf25adb5cd2ba43d88c164d6c2cff415/000000_000000/0000/tree_271.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c76353aec1fcda2a7c9b9164a2e8c20b0518d72da35a579609058086/000000_000000/0000/tree_272.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/cd99d8b2a32dcc6935de1f85389195038d00bf791fd5134c2c96846c/000000_000000/0000/tree_273.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/621419c66a46115ea025ca784f02d87e57da4d5def2e154ff43777ea/000000_000000/0000/tree_274.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3d5fac3c84aa89042702d945308d717a8b737568c589e158dd5b799c/000000_000000/0000/tree_275.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2ad49ce222c71e4631b2ff080b2e8471e1912cd4510fd472b1b18295/000000_000000/0000/tree_276.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/66016613863221ac42b2dffa088af3d00898f5838fe9dfe8e84aebb2/000000_000000/0000/tree_277.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/7dde7923e79ee066fe2f08465514fa472c2453c1790196885e1dc16d/000000_000000/0000/tree_278.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/7d3f60f0836936b3679dfaff1aee3372d3c7640c8156f607b742e867/000000_000000/0000/tree_279.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1931d813f222edd3d38540355c2515ef9c017deb61bfe5a1c697842c/000000_000000/0000/tree_280.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/6872fa6665b8f072915ec32d6946dd17d146d5027b140a715ae10907/000000_000000/0000/tree_281.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d163c4f467fdb7af5f5686f9e39144a18505a9b4b8e89de61063a8fa/000000_000000/0000/tree_282.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e2a084d5c8cfb1b99b3f62c7b84520e9738da74a2d1fa53d872a285f/000000_000000/0000/tree_283.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/992fb36c6a3fc5b8d4981fa0a2e97dd505f812b94ce396eec3237f8e/000000_000000/0000/tree_284.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/955f484585afa75300a97a9b5fdf374691a9b61b61ca3826440b8e81/000000_000000/0000/tree_285.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e239360132256c856c1de069695486fedc0f47fc56d9ca7cd83864ef/000000_000000/0000/tree_286.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/44cd2106da7e3c0af28b36c451b23f2f993fc412f1ed9bf92d0159ee/000000_000000/0000/tree_287.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9bb1693604d03787515bfee2b14f792fa676689b668dc1dea0683f14/000000_000000/0000/tree_288.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/872d0eb85c7dd8131dea643dae21423ea3070f363079d12fee793e8c/000000_000000/0000/tree_289.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/95c3c94374d0d4475838e46b0bc9277c113b35fc3845177cb1cd19a8/000000_000000/0000/tree_290.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5029b920cd319e4af96ea5c5e86bc4023dec7d8f6da560fd1f31a312/000000_000000/0000/tree_291.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b102ab277516e04f446e533d2eb9118db57e91e3c4996d18373c8bf7/000000_000000/0000/tree_292.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2dd307d0b46984a46ccd2cd5ba264c883e69a437defc058aafd9743f/000000_000000/0000/tree_293.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1b535714c4aedd93429f35a9a84003c13dccd27b2f0cfbb7df4582b2/000000_000000/0000/tree_294.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9801a49967c1f1b9cc969d4b05e85000dbc41b956952bbc025ef9247/000000_000000/0000/tree_295.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f974b2ffa48f93929efb3eb925f700979aff7f3deef25d680d06ead4/000000_000000/0000/tree_296.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0052dcdf7b173580a418292802506dc82e6d584c573cec220736132a/000000_000000/0000/tree_297.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/190a131c1af4a5af98b451add9bd1a69a10d061345e316b822185715/000000_000000/0000/tree_298.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3f7aca26dc614dbfd81620519710609b62767a8766b9cda57d82bfbe/000000_000000/0000/tree_299.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/aacff35171066d9a58ecbb5ed94e47b257ddb7b81898a6ff7d37b8dd/000000_000000/0000/tree_300.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/12790d383c4a0f31f8b01ce0b00ad30537cf8cceb1439f5b2a0e2d10/000000_000000/0000/tree_301.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/928747bec94f7156b9df4aa728050892b52607434aa4a24267153439/000000_000000/0000/tree_302.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/bfbbe657ea0f8ce9a813b726d5a8c5303245417f93ed458ca688c659/000000_000000/0000/tree_303.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/a3d26f5eb3c329fe49a40406e50927982325764ad4804dc2134f4efd/000000_000000/0000/tree_304.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/04d152a747b67eadea9f255caa647b92194fdbabaf488a8143c5a153/000000_000000/0000/tree_305.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2dc171a1727726a2fce0cf4ca11bf338214ec5c32df6ef01d7e756c1/000000_000000/0000/tree_306.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/cc683b86b2ca8fac95c25070ccf96a2c30247acaebeeda49a2a5d954/000000_000000/0000/tree_307.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/e1e161c559c6ce7dd5cf4bfeb1f8fd78bbf0f585c81680173b45656e/000000_000000/0000/tree_308.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d7c4d0d0ce1461c052499a6c1768c4a34ac2f9ad047d5aaaaf69d645/000000_000000/0000/tree_309.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8bab7c9bace1f3caae665f25eca9fa1b9a6f716433e3eae576236bc0/000000_000000/0000/tree_310.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8a8fb22c01b98be2d25a4d6fc4152958478e7188238b78cf01ab0cd7/000000_000000/0000/tree_311.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/22179201fa774970ce0a23a7738a3c8ac6efed2edeca5b154135512b/000000_000000/0000/tree_312.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2e56daa61044d670f5b5eb855d096cbc7703db8dbe49758c844f5c2e/000000_000000/0000/tree_313.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0b81b8ba51d76fa09078b6ec63d3924916022599e87f60e7d1132fe2/000000_000000/0000/tree_314.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2eeb6b9ee2f065f1905380c96c1c74d199de72e90c4a011a2186e1ba/000000_000000/0000/tree_315.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/859e66efbee7479a1a5fd9093b4a4269a26b702e4f9e69964d26b0ae/000000_000000/0000/tree_316.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/758953bf483af5a8f6ed196bbdc33b9d1412a5dea73c5b1d201abd33/000000_000000/0000/tree_317.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8cdc00dfbd62491deea34f68ff8c3857d104b6e109e81fe247530f23/000000_000000/0000/tree_318.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/d54135656000cb373245143be59fa3bee5c675b84c97b8ad8754edad/000000_000000/0000/tree_319.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/c99b51109ba597c6abb731a37e27354c3ebd7f983796352bf4f60e16/000000_000000/0000/tree_320.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2f264799a9c08e1e4a6404e2815ad52dd8725f87b552258da6009f69/000000_000000/0000/tree_321.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2e61d5517e7e48aa4ca71c4ffbcdc97502cb118bfec5f6cec4de8473/000000_000000/0000/tree_322.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/cad5639f461a46ecc8ef399b129d037123722fd37f3d6c90d15094d7/000000_000000/0000/tree_323.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/41be8eb2e6e8fd2b347315ac86635885ac83fe0abc98567227eead95/000000_000000/0000/tree_324.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/8f591d3a5cc46bf66f08d6f57f360a5c0574cee2c82520067ad3eb2f/000000_000000/0000/tree_325.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1d9fc642afd7c139e774e4959c7f3062c29bdf9c4fe358a270d6a284/000000_000000/0000/tree_326.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/df96dfd59b14b509b557f8adfd03ef9dbcf05f5afd0970cf5e2ee6cf/000000_000000/0000/tree_327.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/38360f0a801d348a597c529c0e4bb206572616b7042a07b16cd5996e/000000_000000/0000/tree_328.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2887516654e6d415ac9e6f2e1a024ca9d8f2893ea620de1a49a3d35d/000000_000000/0000/tree_329.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4cb3a62413b73f936704c7c145b57e1275eb34ce6c0bdb8207413d81/000000_000000/0000/tree_330.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9efd5f86941bda0137db55ac388126fe9471ee09953d5319c0f25594/000000_000000/0000/tree_331.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4e610a2db9f44e3874d768d8f2132fef310d0f57a3ebef2c8f73e6ed/000000_000000/0000/tree_332.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1617bafc199c9c7820719fcf1d5b0989a6ec87ef59498c24177d7e8a/000000_000000/0000/tree_333.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b6a26e0d23c2f1cc925aa86131c7a7ae080603778c8ea85a46d07760/000000_000000/0000/tree_334.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f9cc9b89cc9869ab4c0f02a0bb34c2d156056b24322554145cfc52d9/000000_000000/0000/tree_335.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/77261dec63ef2a0e346dda65aaf82d0da2e257f26fe815ac5976a09a/000000_000000/0000/tree_336.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/7358cd5c4760094f5b24830717ac984aa34bd6482a2ba76184610607/000000_000000/0000/tree_337.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/654a272bf1b526c01ec9f46769406a525ccef4b4825adf2ecaa15a47/000000_000000/0000/tree_338.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/2210c42b1c719fa5449ca08538cefc57b16c739198457ff5dfd06dcb/000000_000000/0000/tree_339.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0d617ccb1c9fc9801a7b4ada4776fedbbf2dca6011ac8b9e956d00c9/000000_000000/0000/tree_340.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/66de1d5b2db2264a908cf3212c4f1f5df65f4d43d7690c1b74e3b2ee/000000_000000/0000/tree_341.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/20bec1a0c3626c17b1c7b25f5f7e7ec04fa43c8bcaa724f1489c1a7b/000000_000000/0000/tree_342.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3dd82bd881904691dfd7cb05edfdaa7750bec6b98e8db46b0bb7e59b/000000_000000/0000/tree_343.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/6c892b0f9b0ec5a97b1217964b1a3d018cba89dda55aa2693caae79e/000000_000000/0000/tree_344.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/4478dbf231731a57ca15d269e0149f80322ed0792bd530879f65ce04/000000_000000/0000/tree_345.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/0ab092a978aafc7dd6236cdb49d783a3d6770037eafaa99d17375634/000000_000000/0000/tree_346.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/f36a8a1e3cbbedce761bcb6a18ff263203d8d6a30a18e1ffea73af54/000000_000000/0000/tree_347.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3f58c989e5ed504249cfb0e1b582b85ebf6d800ba04cb8c7edee5efb/000000_000000/0000/tree_348.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/289cc4c9f33af70a5f0151b4d6138c44d7bd00c0c5d5b3095864cf76/000000_000000/0000/tree_349.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/1ce72133cd13226d1d5554d933b75f4b5abf5100581758f0a75b6cbc/000000_000000/0000/tree_350.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/ca31f7848cc71a1d0e06a6148d7f3a9c151fa42083e65126a288b679/000000_000000/0000/tree_351.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/5d748d3f8ad618e3dd5fe9148fa3c832328ed4acc09121041914d456/000000_000000/0000/tree_352.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/7174673cc40d745c19df670fea7e00cc5ca0d9ab99f8568710e5b2b5/000000_000000/0000/tree_353.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/7a423c1137f552526655450800e764e6e7a005fd91d380f1b10e758e/000000_000000/0000/tree_354.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b3ca6ad0d0ebfc5bfed52138a685e2c99b6b70c8e583b99329f0d948/000000_000000/0000/tree_355.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/9a8d27614f9fdde67262c03b5782e1a3f974daa894bc2a9fb5108a83/000000_000000/0000/tree_356.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/91a64fdf338051e496d75e3f169084fdba7e4bcff300ffe46a939d62/000000_000000/0000/tree_357.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/bcf6041de86126ae12656588a5efbe26e559932fb29064f49c12f64f/000000_000000/0000/tree_358.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/eeaf3a1baf13f7ab4bb66f5a4929178b93b332b8d1bd543480619ea4/000000_000000/0000/tree_359.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/7b530d2246ab52b08c6e023b34aa9ff5548fa5aa37c1ddf9ef44972a/000000_000000/0000/tree_360.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/dabd6bcc8e6cf9ec9a33e7ad4bd6518f4af212d25df3029a66638d39/000000_000000/0000/tree_361.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/7380480f92ba0175274bd9b841173f9fbf1b33acdaffd54cbe792bce/000000_000000/0000/tree_362.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/3e8188bf0e18c004391e1d97bae4679e0b9d92e1b2ca26eba1ba20da/000000_000000/0000/tree_363.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/b02309254c0d69af08b7ae678658c6e81f438f72e0ef95c386d8d146/000000_000000/0000/tree_364.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/W2JetsToLNu_LHEWpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8/af9419d3a16450528da7db6999a248ef7e709b6a218d30de48ee160b/000000_000000/0000/tree_365.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/W2JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W2JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..71c3516ef --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W2JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8/718006dbc1d21d4e8b3d0f7c8bdd4899c69eabb52411e1c2f026e097/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8/b89e956a64f7696327a4d59af6079788486af18226172d6d489ba8db/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_LHEWpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8/2ca6051ce7fa5e7034c83f412cda9f2c67966ab9e1c499d3d2aedb38/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/W2JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W2JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..2b70aa8d6 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W2JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_LHEWpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8/0b92594b7928ea9e24adc77753454f2df031d08ab188ff217bf01de2/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/W2JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W2JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..9d9b46682 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W2JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W2JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/e3ae073336fb896282a264afeaa0a2b1ca05498fb464d023ebbbb39b/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/W3JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W3JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..e1576812f --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W3JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,4 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W3JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/5739657408bf82abb4b7b1a0bdf9c52898bd1bc70544356f9520ad7b/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W3JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/f163a219079ee2e66427010bb78e938208060818679875171e206ed7/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W3JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/c1867f44778b8f927dbb209e8750dc3ff5ad698aa0e65fffb74b1cbc/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W3JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/d7657ddec7f24d0ce5c225122e123c8a3a72266eb2795d7ea8ce4981/000000_000000/0000/tree_3.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/W4JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W4JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..a396d9b1f --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/W4JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,4 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W4JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/798bce49f07b92b941819bd4b98128a6bd00505dad77fce081cc9ff4/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W4JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/4d3e71ad1d819a2d2f35538248169ae33d90c1e6b166c29ac321584a/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W4JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/a05f60d2a740897778062b5a2ee40f7748455dfee713248b2f3db0bf/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/W4JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/0a7d75d3f3f44de228ef24e9f8ca757345c32a60d0342a64c412e142/000000_000000/0000/tree_3.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..4f2a82594 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1,18 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/8a533e92efa1defe00f66173d1da41c527766cf05b5007dced85296a/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/057b17659ad11a940d21db7724a661f7a23c95de5322f826538d094f/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/0074a42262acedee8367e9f3ce9f5236d57a13dc985fa8a059644565/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/38626965f5bb5c2650eec0fe153a4bc122915ded6b058dfb3120faee/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/b87d20e7c27902ce65788dc17ac2bb549b8e3ec6bd10fbf255968b7c/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/68bfdf2c93328252b6ee52a49a1bafaf38b864b3b69235661bd3396f/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/0cb79a4430ce0b187481c80ae29d5c64c8e4ff83a76c2b2115635e4e/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/ec24e676250dbabfaad57160fbdde62ccd5fd117fc3ffcf8557e6517/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/306349f1654431783819a839db4ae1d3bcc2f79f3bf0a27b037e4675/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/4d372bca7b58b475dbf7e8b89c251f6134288fb7d34a22cac9fb6efc/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/5d87540ad7aaac2db2d71ea3932552288f8989604e905c111a15a455/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/56b9be65293ab90248f93d60760c5083b06e9abe073a5b035b02600f/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/2d2490684df6109a1c9bd5484e7fd09e93448163dc6c3a7bd18e45c7/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/932fbb98a682d469116b143fb40a880b463b62a717921f30363ac170/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/ee51773481900c11aeb8fc8e57e76255a0172a5941996b37422cc9b2/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/bb41b8a3842c0dca0cf19677c908e24f7a7282b2dc5929accd7b655c/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/92971aaa5f00dfcf303037b9d67befdf49b6abb2e88a47fc8f739f8c/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/eec00d04a4a6a8ecf7f7c5cc3edf68e15b908de4280c69ca4f3d418a/000000_000000/0000/tree_17.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..cada513ad --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1,13 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/5a6591277bea7d2f7df5328bdb57b3bc184f7ce9b600ec6026d15de9/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/1b07f4b023af9569f3c662e7d8f7cce80e0f56276d1080ffce02ef55/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/d1fad2e0435eff51c1a3f67d2e7b924973fa47cb4d5eeee1d7047e3d/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/763a4a59277a744bfb1e9b3823623b279bd3015bfad11efcafcc6014/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/2ee66ab029b7bcb1703f7c8ed336acd08d9eaee4176ab3f2efd13a72/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/06ed2e9fd161a93d3cd27d24d2a90ae6c70bb669aaec37ed6c805563/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/8a1c9ee264d6cdf1314e5b2d3370ddd9464883db6108440b429c2f85/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/b3915943556131564754d847050c082bb9f9d1bb66fc74f66f840734/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/86f97b90cbea0d929b8bbb3b8568768d50905e39880b3bb409e4abca/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/24fdf9c7636df5b2b646dba228b9cdfb46ef7ef2c41fc93bc5bccc6f/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/a1688b4fe8f20f58236c0a869f72226b0bd12af3c4a4413d834591eb/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/19bcc51eeb416d30a3cb1dcad76ff96a522d1d886c47a7c471210988/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WBJetsToLNu_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/b32fb574c1455a184a585d583ea32762d3a7d5f31e31dd0ddd92385e/000000_000000/0000/tree_12.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..8ac04d02f --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8//065501077efb5dd107cb3937035054b207158607e6c5ae860ca211e9/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..95975e8bf --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//2bf11f2e86ee76873230bf5c5b257389ebe8b370aa13bee1eaa51186/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8//4e87800ad03580b824d827f3d32fc5ed48061c1e55d2c4a7a11c8c49/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt new file mode 100644 index 000000000..06bcb2500 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8.txt @@ -0,0 +1,24 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//3521458e6d1e56f7c18aec46882678ecc52787490877ea08910be13c/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//092860f17058eacb07ac9e22e9088e849873bc2cef8f04b54badfab2/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//9be2c42c4c6dc70877fbc3a52c88ca82a2aa769602f5bda89c5e0b7a/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//c7a85a4a970e7cda2dffbb9cb80839df6925f303dbb56b647007e78c/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//b8b623081d9152808755218458cd6d6a8323e5670426696018633835/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//90f0f524be245785ed6d15dda8ba11f755f68802d815a4f99294902a/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//da14a46d74e079077899557ba900e27d32e471f55b7e3d98b5be6135/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//3ec1ab97d2609b58ac7da286336bee3c937484cf2e9066fb3bf50ed3/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//a168818deb99f5dc877e7698c153dc91d9091a98628948e7b7cb08d8/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//85d63dedd4afae158674a96d7771c093a47f2980a36e069c7e04e85a/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//42a79217c87707bdc48037e71eceac56ac32a5cd6427903ea3aff6d1/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//453a476fe2f05059bbe122478e569288a275d85417d6700a7cfea453/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//4e97d6bc70614ef240f4f1f337a7b8d1ec90593dd31b9806b0be4c78/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//1bfa18d6e638f7f1411fa3e0cf984e9b51fa9ba351820796558e2150/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//fd77bcf6f63edd39c1e7b848ee9950a0128d121c270f2167a0eb7ec4/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//aa7463fc7385fed96afba77ce08bf32fa540617c0baa3644d98cc189/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//fad85c30b741c2956a5c88d2ddd06bf25a207d9e623c1a05ecc8d5ba/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//49bb9ed21cea5fa0920e7ece32ad919bb5cba79ec49e228578025852/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//17b30ef88a26770846afac3c62f5fb6ff5ef450ff75e5ff43003bb4b/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//d5a0f2cea3ef51f81059dfef26ef343c2b93956a18d8c6e078c2abbf/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//2e37e9f5b532162a4a58611f20cd875e70d47102fb9072a0f9be5701/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//da5144a68500cf84e4dfa7276c215fa0b6ad21fa572c9ccd3d10d27b/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//7775bade8476af218f00f428312959b85654fb41e63eabcc83d21bea/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_anigamov/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8//e6c04530c7a862748ee059f53ac116b683cd19c2eb685f62fa165583/000000_000000/0000/tree_23.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..b0c2a0cc8 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1,24 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/8fa6e96ecf1d9244401fa2d26e13ba1e0985172f64c1d8ea372b56ca/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/e9385444702e8059b654b723bd2ec0f80d456c613eb17dc067894156/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/fde3882e87975a2c817a7e7d89d63d3c64588c16d2ab07c7962d5e86/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/7e1f8e157685597e6c01702086b1b0ba57b00a0fa04bd9bf89f76631/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/e475e003598cd334d09c0ff3a97d3aa6b0ae3332c52671907ffc8b84/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/9acead8794dbcec94334d5ce135752712ed4c0c0705d94471dec0f75/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/f878533bb72d6b508ce0d8db43aa74f0598d473bdd424fe6e090b903/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/d03d4c71db3e6865ddb9c626f3fb83e6ef93b63676a4541dc8e7177a/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/30d7fd608dfef435481df2d9f05f243f5f7c9af06e146c13781d99dc/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/b5cdf535d8031f9c6c7b5a39c3c2af2119dcc427d99d1f5c1a77c76f/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/e87ccf27fd403dd28ca5d2e8ead948b0a7eaa9ec3ad9ea59216e5550/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/fd6817a3378b3fdfb1364582d76b4ada8c55d545b3236db9ebb8e38b/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/251cae6c0f97ceac944996b801eaa7bdd982b74604acc45f14dfd8f0/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/b9720378fd9c2c42c62febf976216c2b3a66587cd16bd134f8d98033/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/21b1ac31b1c709f8ea96d30b92fc545f508333a3c8c63a4caef2edef/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/4a5cb9a97e1e00266b016316acb6603fd367e7fa94de62a3243440a4/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/2b8b17ab39e9c51833f076e1de3dbbe73a39fef76cc6bd6033e1fb71/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/313102751e9bd029fdfe57d77d43981642279d5ea591bfe3048405e9/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/c524ff69ec72c9282ffc0e638fd731caea898e6d62b17469f5e4dc8d/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/1074e6fd2eabec36b7c468d10388fc6dabb5a9e5a32b6b2cbf990f75/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/67bae3c1908ad31c8396a6440b594a10dc87f464353837016b6e1fa9/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/b9d714dcd66cfb8c8de3330543672a734be2be15099b96e2f790b7e5/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/9a2d83e6c725a2f2e96feaf687ea1bc29ca0d3f9b0e3488b7f9c0fcd/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/1cabdb782ccc6c3ac9711ef07acc5d46fdff8228fef20489623c52a9/000000_000000/0000/tree_23.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..5a40b81a4 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1,36 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/20ab0f659c0625c44216aa9917d17c5480c78343968942e6f1233ce1/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/1d6abda0d825b033dfcacbf6f6555c452680576797b53a2a429f455e/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/c47cffe531320bbe793dfaa9aee30cdb942cd2a53cf2e2768b67bc5f/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/25cab2e3290a6aa3a033e53ecdeebff0459b9b6ecab593874b7c489a/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/f7bc9a7bbbe9fa8eab6fee36f151315727fee81f61c4d2ac3599f6c5/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/900e6c2e106453fd9449d5c97f0def8c60a702d230562b81c4fb2459/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/3f1b86b5c36fa20d3bfbd8bad2ed026d00c65d242f2d76682f7a9bac/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/a9dab3f773d4926cb2fe79a4d52d6f375b45497d41d1a7841da87557/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/3911f1ec544617192bb4cb6b649e0e60109e4d8f8bb41696183d9c67/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/5dae74d7e88edf21a3e0cfae5c8898c2f6db283b6c54700f6548734f/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/7b6b5c3ee6a10131632373ab0bd1c45d06f1f5a141fe3e768245b451/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/3bcd9f3de642081d725aff58b89b67586d507a9d7410a69608c3d4a4/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/dea876a577d4d0f34ac332740be34c5a5954a78bdb49a68b858eae95/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/13fbceca7de7050743d88b1905ed9a4eaf53d779dd3faee43d25c06f/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/a1a625bbe108b2efaf78645997e5c94405cbd21520363df544440e58/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/df8712c0864fd1c964246465a04e6f28245c2bca2739e12421299f0e/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/95d4824151b62de9931786e4649cb09a2b5ac56d8692a42ff4a4be09/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/7b0121c7de2f6662974d9e8734f3ef69c67b13bf78df4a7133022669/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/9a0bee2a2da10efe1a285a05d765b0dbad379546a56bc95a708f0b6f/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/472e7581f550494fbc6bc7504a3f7813c8dd2efe6da875258979209a/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/78512e3ca546e1482c5d05073e6bfbd50a24a3b9b9a811e4665072f2/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/51de14511c659342cd6e63f58f7543d80ffc24ef2e3eec2516aeeabc/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/335d6d37cb7a484aeeac014b9c01f7b8140f9e17a6a669ea3ce58377/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/568fb61839f50e518606df910e8aaff3a9c3c2faa1e03ddc6106ef94/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/f1ea4818094859504a1ecdc277f5591f022e9666ef36fd0cbc4bb06f/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/c15b9ab2e92854bdac0698793d55b2ce96f1c64513d5a9dfa24e52cb/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/fb10def07c36b312181cd42c4f6b50ec3a34c9bdee3d779cca221e02/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/211feba01340a532d26b4264bef5207cf8a2ea6e2c1014e2767b90ba/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/74175610331b39cc0536d8e17719fd8167ca917e36fd99e28c51fcb9/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/0730857a811ff82fe0355e741d2ea5e8ca98df5f5bef51e7da3ec36c/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/04c82f9c710eba05c2f1fd1fc14ef98e70e4abeae97077e20db38ca7/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/1ec0954a1248d8c8dcc0265877c796016fdedc31e97f4eb48881bff0/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/6632f609b55b7b85078c2d7232373a1fc0d3f26bf7f0c52d2df64deb/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/09b52c4364fa951142fa4e87749c85e74818cdab6e621f35beae6200/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/e3e94ee2e872a0e4084d63ffa982821e7b7dd7826e8ff5528980ae85/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_BGenFilter_Wpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/844889ace137585f89ec2b159e2b03b20326bea309a413acd855195e/000000_000000/0000/tree_35.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_HT-100To200_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_HT-100To200_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..fbc6402ac --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_HT-100To200_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,8 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-100To200_TuneCP5_13TeV-madgraphMLM-pythia8/d5272c42e44fbdc80b09dc9c216e843db070fac4f33d21bb0a9dea9c/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-100To200_TuneCP5_13TeV-madgraphMLM-pythia8/e1f598b362c067cdf1d7490f4b850ce6ee65703803e5ee8f33092a36/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-100To200_TuneCP5_13TeV-madgraphMLM-pythia8/71623b16d8dcad2ec8dc9465ac2f0555b6c8851c964dd02306047678/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-100To200_TuneCP5_13TeV-madgraphMLM-pythia8/2242b4e78911a4ffe6d42660667693183a7f1662645f99c4382572fc/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-100To200_TuneCP5_13TeV-madgraphMLM-pythia8/603f18b444e01c591131c9078020948661ed804b45639e1bf6781914/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-100To200_TuneCP5_13TeV-madgraphMLM-pythia8/b7f99ba5645d6c651cfd940f2b73d4d5886a5baf6cc9c3b1e07d0c10/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-100To200_TuneCP5_13TeV-madgraphMLM-pythia8/d44650c521b5aa1ea020dae4bcdb423f5760b602ccb8ceb101e951bc/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-100To200_TuneCP5_13TeV-madgraphMLM-pythia8/f5abc4a43582e401f3004b5ff835c03131f6260d16edc9b8734b6ada/000000_000000/0000/tree_7.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..52b3442b6 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,16 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/546ecde9c3d5fd3c31412f8edb4e4a8684a3734b796261779098050c/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/2bb4aa201c2d9a68c681ec8a09df36d079cc7d19aac414d8659947c8/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/7724e71d35ebf73a1fb92cdfe886e2132b0a8600c9f6afff51a7fca3/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/cc64b639b11d316202aebe1834cf0e246d3534b66a16b099721a0074/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/25884b93f0a14d90eee180445c8b2d854f430823f74155cd46b7e4b9/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/7cfc6b7c825aa5c44f17fe014e07549bccbe3bed14f60bee612a01e9/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/b6a8a0b126919c62451671edfef2513c14fb51de87b773529f4d3070/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/06e4659b99c27559762befde08b29e6dbb192a45ddc6e41af9f291e0/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/fd567936c1f149d3b8286a1e658b0498125c3d5795e401aa63e81a1e/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/0583357ef3b8159a1d5a94ffeb087b293d443c26a4144a74f1f769fe/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/3c2c4cd12856420ec6a0f406768fbcc2b128dee3d8df4ebe929ec616/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/1b3fce0b57d70ccb5de52e29dd2724bf52d6b012ecba8ebe133f8cc8/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/0c8d7b64d9fe15f133fcca6532afd7becadc6d27ae4858cf06396a07/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/f0742be10897dc6b6246f8ee8145f9234e9d5539522f11f912ce0633/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/25d9f35ac4628950f20026ae16328637359ac85f6ba6a2f1228849e9/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/c3beb5138c0b0a0a664cee7c98b2f8ea914a1a6dc66f1985e7ca8d3e/000000_000000/0000/tree_15.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..2f7864c8b --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,18 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/fac9a55c548e893b6473ea9a905f75b1c680db981b4f9ffb1e0228a8/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/8252dd726a6541c622e476ad1f321694f8b258026ce1f0d1bd36d2d6/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/3591bf7eacd1251c749e55933f8fcf6c0f14b077b12324082551a62b/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/cb17f2a306e90eddcdf3dac2116cb48797838124404b071fe4a6e102/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/09c64591d957be5732b7d4dea7d927a39364d9b315dc10848e4d35b2/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/a0644b13318c69374dca3d5852e0b35bbc8f0da6668657d554cd9d36/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/298650ff221e6a014d7d9dcca389cd501a24e35a3913d5fa0dc598a6/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/3649952cf6631a2bbcbd3930dcca42deb584838ff2ec34fdd0ae803f/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/c860ebcf8f28379561ad11a1aa6311c580e5f9fa44456472a251c3cf/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/777573ad03f6f74df56f69a3c29b58af70b11d3ea7ad178f59118fc4/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/49e496bb284118b4555a51f960675d87aa2a54e579efda40ce5f0c45/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/db2ecbd63c9fca0b8342c544fc614ea8af7fca95ba8449b7733d236a/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/574390f2b4048d9b62ce21a910f10aff5cd4585013d163946a8969a0/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/fe03e2d03b1668e252c0ddfa98e910d49be4fd9c064b9b65c1347555/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/6be57ef3152ad492f8e33c99024a955b990bced1f0fc029d8c13b510/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/aebf8576f0345eeb60aa7b7e3bf2ec2d448aa77287dcafb3e5c1087b/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/7628425d27570acbdbc334f978622835e6d7be20249f9774842abb9d/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/2a5bb1d816738093d33ca0bbab7e85334817f1f27ffda5e7c59a1036/000000_000000/0000/tree_17.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..73a0b021b --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,19 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/0158b8d76b89c454357cf1835c0f31f7cbe192e5543dba2a0fb990dd/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/b736a6229d8df710635e94d9bccfd701eb53cbf6c44286acff00b104/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/d8a2d782b6a3ede9f625a9a447328d6d536efb65cafdbfa5369329d0/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/2ba7b08b7e78e3137684ca4a3019610fa863a837c0dbf506d5074647/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/35a7d5e93408f881b92fe6166bcea0d9bbc5e45f025c0f4caf1147bc/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/ab83674ef5ff114cd5fca771b51b95d07eb7367f132b8ab8bc49e628/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/c7e41d78c6acb64bd7dfe5d7a78549ec1a35e778f6e7d6ab902a0c79/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/433b632ffc6e32dbfcde31321468888fafd097c6dadb71be01615094/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/626e837d607fdcbf0a4a70a88a0e71bc3874472099572fd599adae5a/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/cf0fa139005931e079a49b46af361328a37fc816e0fe87526e082da3/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/eb023260ca2cf3ff3d3769fdcc74029f61addd6be4a9beff3b61dca2/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/c4e36b050633ec613395034229f598e3747716860733c80e8c466bfc/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/5a42668953f7c8c2b874b8e1c6db6297317c697078a8f46659245555/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/eee9777d60796859a7e361739ef96fc1d9e806ceba3e9a23834f32c7/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/d02e3a906ba2f996c1f067273edf01ee13e70816f8bced6fcdca2caf/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/2dca30ff029bf7c0c3b07a4da68fe47eb656be725d5bc55f457004fe/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/93ddd5e77bee48f1c21f2d7ec3457bcb07a22b400abfd420188d7918/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/c5228a526ba249e37c42b55c3254af1da675b8b992e6e1e33118129f/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/0cf5978f3102658fcbb73ce31495a9ff7934786e7b2b2453012eb1ce/000000_000000/0000/tree_18.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_HT-400To600_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_HT-400To600_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..05c43038d --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_HT-400To600_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,8 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-400To600_TuneCP5_13TeV-madgraphMLM-pythia8/a987c5fc0632abf989f5210d132ab51be30b58d4724a4da93c7c4aaa/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-400To600_TuneCP5_13TeV-madgraphMLM-pythia8/0fb36244806e99f2933b84f55acc35b5675f44416339708599338179/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-400To600_TuneCP5_13TeV-madgraphMLM-pythia8/3c98731c3ec5609d1b55e7a5c0d438bbd5f824dfe72756b1d597b1d5/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-400To600_TuneCP5_13TeV-madgraphMLM-pythia8/ff2c364dbf3c37ed92ffee65a6aaf8e8af16acc042b2cd03ad400945/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-400To600_TuneCP5_13TeV-madgraphMLM-pythia8/b2e26450737a23dfc2e171a56365c9cfd392c3376bdf0083b6769078/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-400To600_TuneCP5_13TeV-madgraphMLM-pythia8/9733206e5f1d83b5e29c9e8f06da06dd56e8565675c88f7c0ddce9ae/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-400To600_TuneCP5_13TeV-madgraphMLM-pythia8/a82dd906595a6e62dcbbe60cd6869849d8f52893d119bc7eb2588b9a/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-400To600_TuneCP5_13TeV-madgraphMLM-pythia8/570350952196f000f7f104fb562c0f38bd42d554cd8f155430db28d4/000000_000000/0000/tree_7.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..91928ece0 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,23 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/319b673cdb9546cac9d075fcb389112122b413cb172f0fcd85f6af1a/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/df4f397fae8fc5d031cb50139a3509224de53362834d1385d24563e3/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/dee897548a76dd399834c3e1fbc904c2933f4cdb4247be4c0fbd0c69/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/49fde589557e2013d33e5feaa53c006ff0f82ba9a9382cd03cfe10f2/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/7436bc09007c9c2861394e07981105872f47f49039c6c88d944bee5f/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/83d1bc948d46c86a00e1274da54672b482c070b62bf52f65df4f6bc3/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/5cf8676a5c2c5d1f7410c990f80b66f2d944d7b0911d3050d39b82cf/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/effd4b03d23d4c3cd2456d20c4c76f60d6641148685ba74688f53285/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/d2935b568dbe9b168d20888f2d6bc77248fa44b1c1629bf8145ced4e/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/ba257776a8d3af45b9cf6b32f96ec7d12e53d55e4a96453dee469c6e/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/b418a56ff19fc8c19ab9cd749981718b3e3ef5c0a15077ef83b24623/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/f04fe27d171eea4a27915be92ba56fe5937c4ff0b16d8e58256975d0/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/94e6642ff72ff067331ef8dcc5692bf50be5d5146bb6f071a0849acd/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/609fd773b3b9456b0a1ba01552416dec027a35190f41d1e679c4050d/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/635e1783402094b9b723a6caee5292d3bb3b7b506c51e87a7750051d/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/34d1eec4d1e430d252e5db8f69ba7f43743e29405a5b7ecbf25f2cd2/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/0c382d8a895135786457ffb862551222cd0bacba85b66ff902f5ec12/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/325a86b48edb21800c40fe9a2f7fdc1b464b939f826e8cdaa3c284ca/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/3360f5dd89370fd12b5f89ac03723ad2196ee25353aabfc51298443b/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/07ddb84d76c3ba05c3d4ac10a1823fd9d2161756e4631f18e2a8ea8a/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/54eb1effd126fe98971d3f3b36a504af8ca9077bf57d8a95482b1eb2/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/5e0cfde89927df03b7c78d3c73290c46395bb78a20b28714d57e38c3/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/04aafe93af210f679ef6d9c71093da232b7be83ce09fed04e095a32c/000000_000000/0000/tree_22.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..1c0a8540e --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,14 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8/f1c851a8d5898a209592bcb15459c64030a604691a9e8ea2a8d4f46c/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8/e6bf8e6736ee311d203fbfd6a2bd4b65abbdb44375c18ad83816b555/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8/2c66d34e62176bc3262095d14302056754c93860a7015ba8b563a60e/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8/28f7f18e6699c9accca267f2be405331a98941d4726dff8a80bf74ff/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8/c5361dd8c1d18c13244f161f4294a76a595ff45c22d93e650afb57d8/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8/00a23a56e80ee156dc3722284114a2ac895ea060247c59e580586974/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8/57ab1d76488bfac89e102a2500e87c4eac0e02b9391cc7149fb7b84d/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8/5648ead8c8e4ccac05bd559bee9b49ec35648885e4218bf9b1e59a7b/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8/9931b89ddd5ab9ab1fe36ae7f4c840abac8b5c61d8169f178da17d07/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8/132c63b957d57b75c4f0578c0107eb832a6eaea4bd7a3ba1c6a938f1/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8/0a1b16b901c9adb46c76d9dae8917c4f9fb3a4303ea19fa72c4eb446/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8/e0ffb36e0f2194b2e3d4cc863e1e79edf0a826285d061649437f5753/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8/48fa8881a412a4f8f3027569c94206725b9f217b37593c5dd7e7dc62/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8/28627a2375783f04eb8e04886ee4368845de6fe204ab17d7640497eb/000000_000000/0000/tree_13.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt new file mode 100644 index 000000000..81b64342b --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WJetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/e42272c56872aa9d718e32476d59badc32e9c80ac5173193c3fd3a5c/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/45aefcc7539d29152ce38b8bc949b73dd51b1e306ac76fc32250aec3/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WJetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/afb92438df0ed4ab766105863c0b1c024be8d3b7a34d0e7a02be469c/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..bc7eed2dd --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/c762d9e224b905a371c18ab8f3a4f9aff80e65a96b73caf806c6080b/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/6b9708a6f4ae1e1fd44bf75b597b8d581cc0d9b7c002b0d0a88fa74b/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/f7a35e440841ee1449fda24f134e69eb4afe726be7b2579491a5840d/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/WWTo2L2Nu_NNPDF31_TuneCP5_PSweights_13TeV-powheg-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WWTo2L2Nu_NNPDF31_TuneCP5_PSweights_13TeV-powheg-pythia8.txt new file mode 100644 index 000000000..5f5119c6a --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WWTo2L2Nu_NNPDF31_TuneCP5_PSweights_13TeV-powheg-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WWTo2L2Nu_NNPDF31_TuneCP5_PSweights_13TeV-powheg-pythia8/e068c537fee4bd8f01a36b113d9009496d995e2dd8ef4e4079f8dcb3/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WWTo2L2Nu_NNPDF31_TuneCP5_PSweights_13TeV-powheg-pythia8/2925f6a012598f972a933948580054c682d569d319d12b9ab6d32277/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WWTo2L2Nu_NNPDF31_TuneCP5_PSweights_13TeV-powheg-pythia8/998c051308a51d61f80e774916eeff9433cdf3d5d7010aa57436e1b1/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/WW_TuneCP5_13TeV-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WW_TuneCP5_13TeV-pythia8.txt new file mode 100644 index 000000000..273f95104 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WW_TuneCP5_13TeV-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WW_TuneCP5_13TeV-pythia8/aa394684d7db29cd3146e617d35c6d4fe1c5743f46b03bad564934bc/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WW_TuneCP5_13TeV-pythia8/da880b7ac5ef11a11a1db2da72049d848bb0620eccf11fe846b8943c/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..4b6faa6c5 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,16 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/efadab6caae4c8e70aaf71586694a0ca352fbecc11f6f7c1c7f7851a/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/800bacaac8c103a3331c5500f01a85d84c35de3b41a264cd6fe83741/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/a2925e680a1da92f40fce2495265757bb4eb696b117b00b4c8e69efb/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/17f032a1643b4a880d1dfacdd6ba1a33ef6ad2ca954c4a19c1d24765/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/bd54e29b5f7410574089b7f5c09f68b58f5db9ccd73847922e394992/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/e9329b4344577e31972e27eb6990e5fcc9e9d498df8156e5dc1f377b/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/b3ef698a5dce035bbcf2f32bbb5601edd29656581b4c84ef25f00223/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/69b817167bfcde0b59845a65e4aad95430f8e6df3b416a815e88b2f5/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/d48e82b82cceefe5093f92ebfc2dba3825308c633116ddd6a0b13302/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/207623d363242db5de68141f1b7671f0f18ede6bd6a08ae797ee4698/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/db260f7654c175a074e07b01795478ceeee2a71ec00370e5018f1075/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/734600b2de10ba6e70dc82e9e631e1008415808e8f87a5d4e7e9671f/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/0090965a6d6f7064cb95ce16bb5de5790be15da6cfc31d42c7ccbd55/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/0a373e328d3e09d373edc541fa24e16f19361652e656a7d624ecb0e5/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/5c2ca30099753fd51994824837eafb7e91b95fed58459e40373d01ec/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/4cd9bdacc069c0a345b21ffe75527bac0f35bc3e17b252ee0543d196/000000_000000/0000/tree_15.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..063a00d75 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/01480c4a8230eb13a2d2e4331af97a156e1961f0323ef7dc6bc8bede/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/8fde1eadcb0b957c9e005a849a7ce2d81822a7e961995c12595599d0/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/WZ_TuneCP5_13TeV-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WZ_TuneCP5_13TeV-pythia8.txt new file mode 100644 index 000000000..6ff5e0439 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WZ_TuneCP5_13TeV-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WZ_TuneCP5_13TeV-pythia8/9ca831de590cd536ec0aa28cf775244b8be1dbf9752bfdbcfbd817e0/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..4ac15e762 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,6 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/5db02f8c8a1d5f9ce0b9cc6af5dab7b6ac52fc34fd803d373c3dfd08/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/ea29651fa98d9a3d5376e0476c0199d50977460280044790647b2b45/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/baf5b7d14cc5e5512ed44d9cbbe6638688a5325d653f77bd3617fccd/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/5e651eda8bc544badbfdcd14bba4488b195c0cb582c91b64d6486411/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/51d90e7307d9fcbf806248d7fcbd816beb5a5ffdb18bcc45ee4e740c/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/067b4658c1315663b5585e4c1139f1ee406c8438b4979a5a78c974b1/000000_000000/0000/tree_5.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..d95dfceaf --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,13 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/18c72fde9fa16ba4aa1ba66aed16f6d922a6c4b4dcd78524753bc1e9/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/73769eccb13b229e3c1d84100f900734e7b60f76d90d779120872ca2/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/6c03b47cffb17c4ff4f95730fc931b66cd3b9fe62995f52865220c87/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/d63cc00b0292241766d2735d22076fb41b941448aa465a373778fa75/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/486f3d28842e96a3e2960d21ecaa46d135bc65e99825b388a1bec0e3/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/874f5ac81bc483b7638938384fd386e264b07f2b53a688442473d1f6/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/be4ea784323d2b4ec45694bff998e86255f15542580600489698240f/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/ddb428108123ae58afd2be0883f8efad3d3e19f32917ed6ea5df7976/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/6e0c22d61f74787845f0b43ad80f26a20fc8d2a0a2a28dfa55ac66b8/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/fb50c785aa71332159cf34ca2c09039af0646f8fafcd11f234e1e2a2/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/ce2dd64e1b1375a693175e935a00c37e945c2b7a6b5b38b836a7f6d0/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/b1ebdb4b8e6c40b328bc370b6a7842399eccfeac0bca77b9cba4ca18/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/b5372b30271ddcef061fcab04d3f73cc14f6bd111fb0cefa348900f0/000000_000000/0000/tree_12.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/Z1JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/Z1JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..2aabb398e --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/Z1JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z1JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8/e731f71bfd5d63f0076652db831ec11094978a2f21c6b1a71b610227/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z1JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8/c91654f58746c375238556e74c0d1331f325d5a4ee60c99fe6e393c6/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z1JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8/2b1505ea225ad4ae57dcdd60067eba3e3e8085ee9101d624770cdf9c/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..37c0bd21f --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,135 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//129eaefebe1788bfa2e63c2739ce2f46389750f46e13172da25d8d12/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ab113545f818712eb47f45f21336ecd99a124ccc6ada15989ca70456/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f761e9a623c722fdf36185b602fcb8b0f5cddb233239186b724ef611/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//278a276955e1ee675bc4ba0395a2684ec40d116e14c0239f95de3b2d/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//60d1fb8c999546b9a8c9e9cecb2a49ed4592626e3c88c662d2b16ce4/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f48f0a1d7e426c6c842cdb2a9ec80b5fab02199f49d1812b10b89cfe/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//06e76695ef5d57f97e11ea30d67b5046f644407f63d61c254b2c6db2/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//916b34afa0ff989257cb6c6715d33a4248a09d0e56bc1594b5e33717/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c288364f09480137c01ca520a473560e97ac9aecb5d4507c212454a1/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2efe940d3b05968388c5557f3f19796208df72a1d0c86a4d7c3f8003/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//69486e3a25b3da5948b52d94665574153b51b4585fec471bc206dcbf/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b5eb9466c2a6be3758e1dd715bfe25013870f6bb929e5f3ef02279f8/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5decef543258c9f3028bafb2e1c01aad7ea7e4a854a369d07a0499ad/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f46d43bd8b8ffd3cdddd586631068e1036c7222a99e8a684ed6c07f5/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2d9e2b422fe160fd1fe9d719fd5913b2f0981559e590586fc1c522d8/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//cf0650a78818e6505a5887dba7929c4cbb882e43af46aa7c12c90876/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d7190af6ae47ea59025f126b7d83924aa7de5ac8e42b6cc653be5edf/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//da7467618d3eba015984467e0df28005b5c583742c93acbe25e1e8b5/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//58cbeb7836fa7eebcd57a905e1ea4ead97ebba4337e589fabba586e8/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5a757dcb55f146ad9dbb0fc669b0f42ddb6c2090af128f0d55158a28/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d35555494926ee6415fa0ac179f96b3ec79cf93761fe9c91db08f34d/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a9e7cf785cf3c604f83245ab6966bfbf071447acea1c1df906843247/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//154cf9489492e13833962e45c92c33993a0a64e91355e2fd2deb0785/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//21daf552742c1cf3a068f5101c73b59e59b2db8a8e7fc3c730a9dc97/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//7020284eb15a16c694aab7dbedc7b3f2e2d9858b0a9f0827df675074/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//442bcff3a574156346ac15ed0f56ff05626a33b68d1d128c0ea5e4de/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e00b69be58766aefea3a12daba2f940b9cdf295972d69a3e2e6fde3d/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//82823b9682359bcc2bf4ea0b93f91cf7fcedc58cfbeceee3e79493f8/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b8b58a37cef6a85036fe2bbb7c30a1552fc1432416a7dc2a098912a1/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//619a5a68cf52f8d07d0150c3e4c25f74499ddbf75b50014a2f0324f6/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d8daa602c1bef5baa65a9a82a6e6fe0fa629e8844736088823ace0c8/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c63eda8631f2eae7ba72869e660dedd44ed733d4af10055b46962d35/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9cd387ffbbc46b857e0c3c6bdfbe8d637f2f392ae6d23be1d643cd53/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5e34fd8b45438760096c585f5d5297c7ed5bf5aec3c705936466d62f/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6a81c1a86f09911b2bab1cb0ce3bafa0e680bf8bb596267765c92b52/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//8d1911d8b36c708eb64ce1d8d5889aa14e60ec861038576c5d33708a/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6e7d0298a129f9daf6daa45da8d1ef111ae42e0b4f041d80cb3fe5a0/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//feba81e456dd16c6bdfa16f6f9c2ad5dd092c8f79bf29a0853c7c7de/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3c9d5b829f0c05512ab833fd14c503351d1d2021d6488d665534e9ea/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3d5f2be0dfdd4e967fb648e933abb636a6587eb0ef78b697e478d489/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6a5fb8180d94b35344cb0a2eb0274a2ad34ba03467d595535c07e76c/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//975db1b472cf7fd8a37567e26d97e4a14c112977eb6fd48df6879d9e/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//8e078c04945af386c372117e63c3056d7723406ad3f661654b4224ce/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6131f555e7795024fe9cd2afe41d1d403a392494fd2a5df90992e7df/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//816bdacdc4539ca70238ee59f8f3ace91955194953079d6d68789e80/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a56251f717876815165167c14b26a9ec6bc0e83bbd3d947f128fb913/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c1b3f74c485c80483afa25c112f5bd79adba110c87ff1eedac76871f/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c1081887ddc0ad685b0c95b5fbb8a5db3da4fbb2340e1b23f852657a/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//8bf8c032424b294c17b9bd8491ddd24beb9c644f34ca6cf4e22da10b/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//07bf2cceccc3f5320c1402d2387934942344797dd709ac93429b2597/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//deff40c730bfbe429b2b800c12ca1c08674e4322f882967b52d80b0f/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//37828d1137dd67553d1dfd4e487967f91b927f535fc3dce21bdf0570/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9b618b6722afc63b61a02196922619e579c3f6ef07722059b7a818f5/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9d283be58a82c892d2436a839c4cc25c3fb91b505026a5c453c2a2bb/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5b811c9acfdf1d447252322ae13667bf8c970417038c2bbc386c6eef/000000_000000/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b04cdb42a51d14c29324e14db1e4bf387948cac6e2f42c441cb9999b/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b33884d21d4aeff10b5db1486250afbdd6e6eb47c4aa280acd4d6a45/000000_000000/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//42722a8ccbe4a9dcc2f322e57a2e564bf4d5ee0986794571485385c4/000000_000000/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e6d21cc602fa0272c2adaa537bc6ee2a22830f8dd3ec5957307f28f2/000000_000000/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//40b81bbce896d433a569cb0a02cd2735734194b08014ff2b94e2f413/000000_000000/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//af9ff6166abb2906fe8c2a8c04c697f484b8d057ba748aa6b8641c17/000000_000000/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f615c7ea0bb921a6e2dd42114b0f2e243554c321ea9ca189487f0fe0/000000_000000/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//291806e03fb3182f88885bcaafb6ed2f15370da35e49d0df8a0abe04/000000_000000/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//818750f7da58f369347ffefeed1d40d60b0c675197ceeb6b171ffe28/000000_000000/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//c5872e3dbb07971464f5942d73fdf6b9bf1fd70fe34744f5e0ef6c51/000000_000000/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//96a241e993cb7e5410c12e7479a55060dfe7d8f96c4e74efbcdc17e1/000000_000000/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6e6b35aa7c9eb0a35cc4fdb4c90c7dd71589c74a13c528a94508297e/000000_000000/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//70ba69651704a12701e4501c4ea518f076821a9ba831c3e5821a7d24/000000_000000/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6300e5973be4ce41b85b601e1dc4d4e86ba5948f074781416ac06164/000000_000000/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b4cd8b1f57d824064242281777f2eb6e3f9c719c431195d7617c8e98/000000_000000/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//deada80ae495e9ae5e0d3fb4fa65fa90a4c276401f8dde5f08ec71da/000000_000000/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//eb73c49c0a3007e00892c3ded3e69d39e382740efa2cde0a26e5d5d0/000000_000000/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//264e0b3dec373e3f0de1cd4f1a561a7346efcfe43b307f4e9c0c7730/000000_000000/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6328181dbd8b51fc78b053305f672bf85fbc9b18c7dfcb538880261b/000000_000000/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//cc99c358b55de692c2e352890b34ebb6202593ba35c616b614570c32/000000_000000/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3c2480f36282ae265551aa0242bc110f54511ca72187c894e98f761b/000000_000000/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4e5994bbbd2d63deb5f259f3bd3c4caa22a4a0ff90d7d1fd38be3de8/000000_000000/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//014cc410271058d9fd07dc1e4d37d38772df4103bc1e1b1889380da5/000000_000000/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//05a3d045c7d9210c1fd7f2613bef110dc1a4a7b0a2e2eb6e95a07cf2/000000_000000/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//20632a40764bf1707f66633e180a88f707b6b6ae72496970f8f7822a/000000_000000/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//def0ef2ceb4b7779568d75a958fdbd34e6b5a2625b163edfd2a6a29e/000000_000000/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//36dc9b6045cbabf8a9a25ccf63c25eca7388583ad9af6e490e24c092/000000_000000/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//97dd5fdb3063a3ff487b63d7f893ced13ae9993c2c834c26bb0eb693/000000_000000/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b0ab6aa6ae479b0ccb21ffea9898024c6a9ba26a943e4fce845252c0/000000_000000/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//fe430a43a5cd4fcfaeb77f101b912028dfd4b871b5f1c0945b645ecf/000000_000000/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//383b8d8d5467a9a063d2050c9ec73115d00a6335654af3191413baaf/000000_000000/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//01eca69d931b8e4c801f9246ea7ecc92168113d128930d4de95e0775/000000_000000/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//18abac3bc2d555e0583280ded3d4269ef592da5f62b01ba12ff7cc58/000000_000000/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//fec470d55087207d33c1e4fac215fad973276e00f6c98957ded04a73/000000_000000/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//8cb15cf55168a9d2a03c311f207404979c7eb3e161c074aae2f33b4e/000000_000000/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//7a901e9c46d85b72fb454a1c04d0cd531084a0c2a61b921e1fe0290f/000000_000000/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ed5be205cceb3b2a85a9ad13e4895f9703cb503a42d84708d19f2268/000000_000000/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5a1259c73a7c1e8e7a437113a5205fbf9badf6ef2ca648007b512542/000000_000000/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4a3305dddcc2498b9e45975597729a0183eec1deb78295f552beb017/000000_000000/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b3361b18e1d40652e26ccc9daed4e8af8c641241fbe5106e0bc4f402/000000_000000/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//371e9346cdbf42cd43d1782529d9e76ab59572d94fb0bc292deaffba/000000_000000/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5f846acd04c06c7cd64d24c976b5584b44bf5c0feb6af94314ecd6e3/000000_000000/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e6e3b1564bdfe2d8433b04932db3fc24ac60cb78a9ab5f28f6202704/000000_000000/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ab6daaed9f5b359e42b1dee6f8e1a5cf1d350fbc3ccf22278cb9970d/000000_000000/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//ecfb7e3ecd51b3424772adb60832acadeb40b2ec4afe6686497a0a48/000000_000000/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//cca3ea3a93e3541e6bc38247deac8369d3452f4f4bf45b681fc829c3/000000_000000/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//64ebd7526795c3e39ff81ce5f3441fd7a21f2981a90643424b139f68/000000_000000/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//a7245b41f68ac6da65dafeb5178a8e3386d66fc8688017d9b89ac774/000000_000000/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e536bbd01a2c58576848fffbf2442681c72083ed3a714c933b64ac54/000000_000000/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e0d6e4d389623ea34b3cf1a2c1208157a34b6b9fa1879fc0bfb5c2b6/000000_000000/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//79972e603a4ed159e81ccd988b5448e6dedc742cfb5b3e403ee33fd6/000000_000000/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//374fecd1e1ec19a531d0daa94d1866b22da600b162fe23b59ac70a26/000000_000000/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//699971710a33b922a38aa2e2d37cf8b73a594ea4ce8ecf88abf52e09/000000_000000/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9052f650707cd0d14a48ff315d7669d0fde93f01af21dd1a8a236799/000000_000000/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4874da72bfe9f0f6e3d20df88658fdfd4917724e573f5de70228a564/000000_000000/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//34f9ac1c046b9972fd8ac8809fa16e61b20b0ff4baacf5aeac1311cd/000000_000000/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//65359a02b3a582c278018ba20cb673aed3ccda2fc7146c8402049f3c/000000_000000/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f887aaf6dd8bf3f5a6c73dfe1d54eab29cb19af0ceeffeb9d4870c70/000000_000000/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//1fa0257be27669b3b7fb7ee1143aa96032d14954110b0ca049b611e1/000000_000000/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b9c4b700a5e49b11021e4b62d475c608444d45bd6eca6f56f370f166/000000_000000/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//faf9a9044c4271cec5be270520e8e477a21ebca65e24b731a30f3dfc/000000_000000/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//008fec8906609de65e853890eac59d37c834dbb67add9f53df5eede9/000000_000000/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b9e41dbc2375fc146539e53e6fcc96f396ffeea6694bb6af400fd2a3/000000_000000/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3c2f3f490551f08e9ff6de6117a476db4921a6f5ccd105a987cdc933/000000_000000/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//d70050b1f9eb68327bde3751f24f8c151df1ca9b28b169b549239845/000000_000000/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b44c22e3f2c9ab6de9813a0cf5ec4e76922debaa35afed17f92674e2/000000_000000/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//fab22dacadbf05af123f3b84af350b44873270cce94bf3790a64f597/000000_000000/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//edd858784dc8ba1ce1f6ff67681495ea3c0c960093b5963284c44dae/000000_000000/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e8457ae7de24d2534f8ac796de073849d5e85b94ce097625d2c9a79b/000000_000000/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b9db1490789e9a62bd02579148cc7c177024e374ee002371d15fe650/000000_000000/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//322acd1afe8d8ca619a4b648b241e34c76cbe7e1313cefd65ff89572/000000_000000/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//abb5a6684fd591adee9b9376b18fd4cf0ed2fc6c09cfdf46169fb15f/000000_000000/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//923a028b7ee31b5abaf78ee0f55401b860ba0afc51d505cc4d6c6fcd/000000_000000/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2b50dafff7f99fb249178af8e732ce8ec376e8084730f59cc482cce4/000000_000000/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//b864c896361c822aa7aaeac3580c1a1c06036c570c77e4a09b0175f3/000000_000000/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//776df922767553749a1f99c57495b849b7b14f7e8e2a455deadca74d/000000_000000/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//3a511688b5e6de4aa816f1fa7407651b53a6983e61229d759fe1ca62/000000_000000/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//4ec5984b16e2a6bf9f8c490de328f7bbd8a29a4b589b35b6ea9e2921/000000_000000/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//17363e91383706d0fb237b110aff0b86f3a2734acecde154c817e157/000000_000000/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6d3235a7c2b227aa9f5615dabf90318b4d5d100d935e037720e26d8a/000000_000000/0000/tree_134.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..dad9b171d --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,24 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//025cc3103e65764d6d8d640508f38c943239ae8dbd4a4fa17ea9759b/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//33335c07f9b65607e342f3b4b5152de711c643b6d7b8d001caae2df3/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//0f3e16f1c35deb7b0cf3bd75df1e210527ebb96240f1e817141ff0cb/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//a362e733dac699fb2822214d280c3d4e9dfb069a780d6c959780c03b/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d14ac25575a1f05e2131ffb657fe5a4bfc0c10d8c963b080982be455/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//ece2ab5338649c9475fa4cdbb9d83978a9a6beedc01a073ad39881d2/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//cef6eb4345d8b73e248bd68410e4f04ddaa3640deaa7c463937dbb5d/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//30dcdf97ce59b348a73efab736432744a29d3ecbbbf5ec98183e145e/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d872007121e7d26f972c4ddde90f05c5e5be9c9d95c7a77420e35f85/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//6983a624d927e32d88c3bf26fbcfe9b4d0b17b31ec437f874765892d/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//f2a857220d0c7b3740d74d6157735c49363d3d8ad327f7aa8370b835/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//77607e483063b43341f81debed7d6152ed6121af0258e1373a1c0ed5/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//deda4647d6e16bcf67e5c3186c0ab83a8041b0be69e540153b5d546b/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//4a5647b791a311d4571929322109146bc985192f3da1a25d7596c43e/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//55200499d02c10b5a8993627907d225fa87b7f451d0f9fec7bbb7925/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//daee2b8ef0538b9744de06588d56185feca8f6c26e481af1b6e03955/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//ba9a2b0acdbf4f8261799788bf8e2e4e5f84ff0315e4568843c464ad/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//969c122fd3531f6e7deed6ca40c7b90e522b40945ca71bdd236caf18/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//c975dcd2a186db943950332736b02663ba5f67e7e7bab5a0de721ff0/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//fd7c740bbd9b4c7f62cca8d2a7adc46b2170239392810b5aad9e4558/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//428f4665d6e5daa1c284856c2d1617425cfd4cfe58a3643962259195/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//e860a863a1eab0116a5a2e5338a4e16145738b2070bf835074176bbf/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//3279aca3970b01089b596138a0ecc4e8923d5186885ff6a14f7ecc20/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO_EventLumi/Z1JetsToNuNu_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//29215c944d4510be2a4d827be58fe59e0563ac022fac3c9f837a69c7/000000_000000/0000/tree_23.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/Z1JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/Z1JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..31ba4edc0 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/Z1JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z1JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8/336d0c8c593d28abd881e1d2bd892b08fc814f989e93066b842a8b7f/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..1694aa870 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,220 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//190ff5bc2688747397983f86b8407e4b8da410a7ee34f35d4d1c4679/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//bb460935ae9df6022dbeabd7bfce26d148d21b907c18fbb0281247ad/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//af678a860d9569a3e0efac777b841df1222ed1c3217f987fe4000774/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//21968cf3edf06817c2ea5f7cb2e759fce790b2bfeaedffc03547f0da/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//505acbfbc3e1b06cfc9ad37445145ee97473cc1e3a4159538b0a05d4/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//b4d52e5be535f4584f7b2b49bb20e4f08b45ce170b809fd34e7aef2f/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//090325ad7742bef4ae7ed767c79d4beba5f6d18fc95b67bfaccb002f/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//a35907b7b18ec775e0adb4d9295e31034a61d84eca0f22ce9a1bb011/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//0a47130d058aa65558599fdf8ba7c12b31e5486e633124a8d3147e1a/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//ba49aa607382b1aeb548c21114c1873bad6d9268be5befa8676be4ac/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//665ea7fa6fc361c2693631f3d2c25918a7eee04f51f04314b49f8ab1/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//bdeb3bcd7f6833c650870c09eb75c7596c3029cc744b561def031192/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//250af8cf94a762b662c21e187033c3aa03588489c111e4528eab6ec3/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//fec512745e0a7279b0416e6a9763cf6fd08cede5b4bec31fcad7945b/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//b1e3eecbd7578aa6ef40acf395d8f890ee1ec008e3ea1e1f3745511e/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5365dc15e2a3f74c85c92c3af5202dc815b74b70028b793efcfebcba/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//542e671f066513128f1156a6a88649bcabb2055147fc075b651fcfaa/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//a11354a46464b61674f34f9bc038db64a50ef23a11ad18d8bf5dfab8/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//f028c0dcd24bca8cf5e6412f46d7912f509cf6ad8743ee582d6b287d/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//4b5f98c026b71060ba5046d0c821063f3589404f8ff33cbb80cc9c60/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//1b47407805464f2dd6c08c171ab13009ee6484a155caa653369a19ec/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//7c3bc1c3607b197f391d6ad94dc15e300dbf6740a03031ece7ae89bd/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//29350ed3dea2838b5df3f2be50d9535e311731e6828a9e270a8b79d4/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//668556d574c305dbdf42e5f0ebd05b273c0fd3bfdd3ee23d107a3a29/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//ddb00841c7fe5ef1fc9240f653bdaddadd9a8748ebdd0ed01f6c1207/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//c8d2df6221f1c53210d7fcf8a8f74b206456c97f5e612b0b674a53fe/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//9378a1c9d8a992fabbe0bde90210174e29ec79fc6184f4396a71f860/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//77b1fa74147159534a1e8a2731a0bb0416d014de06e52abba5147a2d/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//9e12e816d4c64f6ac1ff010384e66dfb83db17cd0582e3be0c0506f3/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//a7758e2afce68cf0827f9a2af1050f0feafded3f4c3a2dedf0811be9/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//03d7bb058137a0dbffd558c1f9952c2ff6e350230683369f4aab8954/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//edc16de6e0e35183a2954cedddec5fe96d4412f4195ca1a84c9c2448/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//fcf06c988a72618fbe29c8265fc6936602c63aee688a7efc0c47d053/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//2b64a53915f13e255cbe3340c3a291e4af06f7fa7ab2788ff8ea6e1b/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//1e71b70f2519d320f1617eeb7c19d463025be999f713f4ae7edc07b4/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//2fcabb1d80e7b083c779436d79b567c5e5872fbb8cdec82531e3cb93/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//b45bfe49c0a487d9870213945c2d3a68d1993c500eb4e3787f96ec8e/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//50f3613778a8ab243cb2771d0dc9f3d185d419dd47d7cf0ccfd9aed6/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//b13030d0abdb2bd3085426401276a2cf7f3ed539b179b1f328412089/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//11d430beaad5f139749694ff32705a8327acf2cae677347104d50cb8/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//64090d49d0c0d6dbdc4f8e184381263fabf62f09d099fa76d149dddc/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//fd5d2c086dc9599e138fb7ef19e96e8d887e8b46382063df1d8206aa/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5b085251996a4b1519778891c5398d5d3f6e68461621802e05d04370/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//bb24b31d0957a7b732a7de600757e19a6d7bbae1ec1485ca6541cb45/000000_000000/0000/tree_43.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//e7d4c5012801de4621000db3d236aa3299f89ff746ab6966ec23a8f5/000000_000000/0000/tree_44.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d8d79e184c01ee468b2a9c8345034656a8fb5ef876140d228b332389/000000_000000/0000/tree_45.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5adb8ffcc53f6e2fb9d63a061da6db374f132170f8763c23d9465363/000000_000000/0000/tree_46.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//82bcbf0032cdd90697ac91dee4e9601635b47b61ae5e38c36a71fd47/000000_000000/0000/tree_47.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d07ade464f234e501c6847d7a8c4a421a2e062b6024d8b65173a8234/000000_000000/0000/tree_48.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//46eaedaedc8badde5b685f6ec3f6045fe1183e79b582dc5ffd9243a2/000000_000000/0000/tree_49.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//b9231744fcaff2fc23b1c8bddbea56b874947bccb816e09903294c5b/000000_000000/0000/tree_50.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//67073a9c6801f94565a66ef425e014dba5a2a8341fd966952ae4e42b/000000_000000/0000/tree_51.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5459746940b4eac08b738d786cb76c8fec1b2f75f67dcf88f9db9e30/000000_000000/0000/tree_52.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//a66c3f28f9e59630ec2e990d4b4c6fc8e73f426fe702fa57256b36b2/000000_000000/0000/tree_53.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//8de718ce9339fe294ffbd8910cadadd9700eeb8852d0e9d4ce890a2d/000000_000000/0000/tree_54.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//e5092e863e403b6da0efc43ea6bc99fa29a0d06096cbadd3e2ff8af8/000000_000000/0000/tree_55.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//9fad8643079a909a3e0504c27ea525d9bac45953ce5279f96169434d/000000_000000/0000/tree_56.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d3d2575bac1327f2a6eb5c1e1d2f17480068b50948e1d08c12f33817/000000_000000/0000/tree_57.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//b1d08a5746d9aaa17b0284ff79a90e8b5ddfa378a18ad4dc81019acf/000000_000000/0000/tree_58.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//ed616e9a4ec5c6c70701f8da846641bcafdf029d4915b3b579efe9cd/000000_000000/0000/tree_59.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5a2ea5686c0c93a4ec557bba0c55875045033f710463e23b5d07379d/000000_000000/0000/tree_60.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//80b977185b1249e6e02cdfe8e912be9162598bbecec199a08f4876ac/000000_000000/0000/tree_61.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//fbe6954f444497451173a659f83de7ab7f15a4d8f51d793b7fd082d5/000000_000000/0000/tree_62.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d98fd4b9fee0725e0a225fcfd4c700003361c1038145be543eed0366/000000_000000/0000/tree_63.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//dc7c409e5d5af9b4aab6b1ebcbe7ea2a9e30c96e4eb9c4230439e040/000000_000000/0000/tree_64.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//1e4a8ca38fc19a2e72e825acdf871f7e2ff1748bbd55ae8e361122e8/000000_000000/0000/tree_65.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//379eec72e4b906e0521a4d9f38d181b445d8d3df99fea25ceab3b8c0/000000_000000/0000/tree_66.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//117a0751e4adc01b3765f0b0a5b162a01e19d0682af8a4310866d77a/000000_000000/0000/tree_67.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//67faf654f3bf4f83fb8d5b49fc043ae6ebe5c2ac79999dfc20b465e6/000000_000000/0000/tree_68.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//0ef452f4cd74135a015d51c981988bda36cdf80d2326874d36a2f9ec/000000_000000/0000/tree_69.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//432e2864996f00b94d3d07e13efaacbd4cae34368c1fdd251bcaaf6e/000000_000000/0000/tree_70.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//3494c398300a8a09f4c975f6ac36bce3c98a155f3109c289569796c0/000000_000000/0000/tree_71.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//6dfd0348139b316c63c52539e5c98f1ff859e3ff59189d4524d021e0/000000_000000/0000/tree_72.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//0577aaee097bf1351db208379bf0e7ddb193a2319c0e69bf18d95e12/000000_000000/0000/tree_73.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//ae15c355b38081f40d4f886c48af455a14a410e37956ab8dd45b8438/000000_000000/0000/tree_74.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//b18c96062bf76e35e38cb574feec4d2d69278ba9ff4731547a68715f/000000_000000/0000/tree_75.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//fd684e1fa2a785938ecad39dfb7149517c89f0bd00d7b1c41bd2ce5d/000000_000000/0000/tree_76.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//a8c3f771f56ca8754eaeb7155653fc617384d17776848d9524af6b74/000000_000000/0000/tree_77.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//1da070c8010d2c4216fb541f978587be078adc83ef48e3ff3d0a144f/000000_000000/0000/tree_78.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//9e2927e2450edc99883f5f1c3c164df0ea14e06bb5e3b58dbeb6c9f3/000000_000000/0000/tree_79.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//86d3a1436d544bd1db1a4f4fe35101bbc9fd9cdde76775977140b13f/000000_000000/0000/tree_80.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//c71628b72d29c849f3033102df4b0fed375a7ec3b34fa9c63eb1a6dc/000000_000000/0000/tree_81.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//e6ba1ba110fd4f063cbe8fb1e8544c6061f69e2872c597558f81c027/000000_000000/0000/tree_82.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//67bf7b80a6dc7b03f11bd8de1363963bd176746c3d3bfd88ae7d5c2f/000000_000000/0000/tree_83.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//0188858b27df2e91c9e89c97d88dd82e1cd93d173c1e8520e2d04391/000000_000000/0000/tree_84.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//e4dac8298a3be0bc33739aa1bece1e16580589192bd822a5a51b0931/000000_000000/0000/tree_85.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//05aede7363940e74debf4c690cd995add27668cdb14c7a6737a59f6c/000000_000000/0000/tree_86.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//0309c17ea7fbfd11389e67e55b76a80e259341aa90e01ba678902640/000000_000000/0000/tree_87.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//4532a64addb2c9c124900e2f6b06dd8ec7ff5a64a1682ad8121280f2/000000_000000/0000/tree_88.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//6a5639f11862687019cc90e134951e510b146b722bd24e8c04b48e81/000000_000000/0000/tree_89.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5b54be41109b7370043c3e31dffd0a3d93c31f02d80afc82c4f655be/000000_000000/0000/tree_90.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//c71ce5db8455b15b1d2108af4fc451f5e98ac1ce6ad1ca457dea7e07/000000_000000/0000/tree_91.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//ed953e6eb484e4a094690242a186e0f1865ca6b26f81bce61a192db3/000000_000000/0000/tree_92.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//ae6b54d83f3a465802090d8d5427b55711b48291d97873e06dac889f/000000_000000/0000/tree_93.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//cec488b1b94867ef80a75e515c90c9845934c53a1d29bb843b1378fa/000000_000000/0000/tree_94.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//723863c135f8d0bca3bf3e5fdd4d9009e2f02b4873ebc9d52f6da1e3/000000_000000/0000/tree_95.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//93968138beb707ad6dbc3a28ab80e639cb906a9ca2c6e58ce14256f2/000000_000000/0000/tree_96.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//3ad0be21ac65f7ad9b980b3904129bb9dac59a9d67f41d074684ca81/000000_000000/0000/tree_97.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//ef09b7312d558c90788ec7e511f213f93c0b066f79d848c66c4c5f58/000000_000000/0000/tree_98.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//71289e16734c684d42821746f32acc28c4a28b82447ff4275f56e2e6/000000_000000/0000/tree_99.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//00fd401db4ec95e0ad4b2896dca9838649da6a8b1674868cb60438be/000000_000000/0000/tree_100.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5049a877695f0f3ea5c24d57f4c0350a4989d829027038d0e1ea51b7/000000_000000/0000/tree_101.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//47fd1cd9d9fba4e39f06760b1577ab80dea44056488789f4876342dc/000000_000000/0000/tree_102.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//23fe2bc4d4e604e057218dff864c9b9149daa55bb61c7a3f1b683e44/000000_000000/0000/tree_103.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//c2b0697901c25ef174116f809f48ca40d202315fe537c8cab74ae64f/000000_000000/0000/tree_104.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//ee624260de67b03775a30127de2f1dd0a73d990fe6eb84772c0c0d27/000000_000000/0000/tree_105.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//b6a1ead87fd6087d28765dc481d8b1c05aee2b057411a9c5c1392826/000000_000000/0000/tree_106.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//f773a95643d15e07b4108b6afac1143382d68d4a7d1740b01618fd83/000000_000000/0000/tree_107.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//e3b6db5404022d2a88ca9fbd4c3a20e26465534e53540bc1e535656f/000000_000000/0000/tree_108.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//46a2ba5c1bcf76740c9ae570f6d4ffc808e50ce377712e4f340dee4c/000000_000000/0000/tree_109.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//8ab80aa0a8372e246f21ddf3b76f35441f136acdb4550f55020ca9a0/000000_000000/0000/tree_110.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//80a51b64766b886ac79cb9e9af0f98bf75aeb3f70a6136ae2d534729/000000_000000/0000/tree_111.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//aa936b227177c5539dcacbfbf871b93bc8939bd553f90153eff61252/000000_000000/0000/tree_112.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5facb990bc51ca1430c74d8b9bffdb49cbf2f2dfa1b64582d361d530/000000_000000/0000/tree_113.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//882d23322a66ac9547b557ec2b8b7230bf3882b39406c6f1558990be/000000_000000/0000/tree_114.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//a51becbd099d252b20f8738b4eca2242d93fd06489132e20967d586a/000000_000000/0000/tree_115.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//0d15d18be809a030ffbcd0cd3188ac1d79c950f413b5ba60b385b771/000000_000000/0000/tree_116.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//7773e294172889390d5ebc06f36d4fb889ce0855dfaabf88a6d36856/000000_000000/0000/tree_117.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5365a207e0f7a10d744025180c5c1d6cfb623b8f61561706bf786c91/000000_000000/0000/tree_118.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//3ebc66c74ee9a29abda885e91642da86637231918b1429bd0de9cd32/000000_000000/0000/tree_119.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//34816ff1484702d8c5d9aee2acb7c1dc1716d3ae143d93b8234d1a3f/000000_000000/0000/tree_120.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//af43c404f7ee13aea413e7ffc33bffa3874e7d12c6e31b688e379a1f/000000_000000/0000/tree_121.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//7f60b1e17a1d8df8e66b46eb68d9fd59ab700874e15b42cc44b77110/000000_000000/0000/tree_122.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//f79b0c345aac49af92443619a8ce0e82e4ee25b8a85a99eaf589b898/000000_000000/0000/tree_123.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//17bbc205ff837c24ce38d42bc42b133c7f4aa2649575f5133b7466b9/000000_000000/0000/tree_124.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//72f0816778dbc0669df3472126cedaf14eb5b4a8d49079e4e737a532/000000_000000/0000/tree_125.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//39037b708bca668799eb7aa7504c61f1ea59eca7aeb9e812cfc02663/000000_000000/0000/tree_126.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//a6c670bc767349eabf1c640fa47a64542663524b92490fd5f29496a1/000000_000000/0000/tree_127.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//fc8524eeed5f8ac9dfe6acf06253deafec522897bcfd13d5f32bb42e/000000_000000/0000/tree_128.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//0c451f58fdeaed372c32a3a31d0d0a23318a7b1105f4b81e4f7eec13/000000_000000/0000/tree_129.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//7f2d82efabefbfa6a4797b50ca2aa3b69b189f7d31619bc50b505cb7/000000_000000/0000/tree_130.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//c5945f828533d6b4e5e342f2668ffdb8d698d34220f4a816a40da46c/000000_000000/0000/tree_131.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//4ff61dc49699939888c8fd5aee4c0f57ce64af496c56f5667e823c4d/000000_000000/0000/tree_132.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//1aea5586996543313312347c4c4ab077d45def6ad83918288d36ec26/000000_000000/0000/tree_133.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//96db85fe1a1839337c7c4753e49941fedb691e82b53748f70bcb0534/000000_000000/0000/tree_134.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//32169c4a911dab5a2477db0f7045a62eb8694362713714538d88c65a/000000_000000/0000/tree_135.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//1520929f9a70d2a4c695daa22c5e6f3e91778b57a5c674a5c69f9b16/000000_000000/0000/tree_136.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//daf13a54c23f9bbffa4f149c79364304673573d7e5fc8a0417572571/000000_000000/0000/tree_137.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//baaab653ba81601f5129ca0868dc777fa1201d2730a84ca58649d7ba/000000_000000/0000/tree_138.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//bb2bc6edacdabd3000fa36d35f43d9f37986b67b9235dd72df3461dc/000000_000000/0000/tree_139.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//2df9364aec573b7fad667f1a3db55957bd06f85ee067b43e70b48682/000000_000000/0000/tree_140.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//2f31aeeae94d31ece316ca5557266e138da50fc2d768efe55abe3942/000000_000000/0000/tree_141.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//1e7e7803c0a9cd92fda7f2b559a6b0bd188c3ede9563551c9416b480/000000_000000/0000/tree_142.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//6379e1bae80c6e710c8cafa0f140ea4f93314b5521a447c05118065e/000000_000000/0000/tree_143.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//c29bb14f70913b61205433176139acafadb2e37dfee9b06ab7748b75/000000_000000/0000/tree_144.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//cca5d7b4d72ded10c1b1ae5570f3d5e993dc6d0865745e934a682f74/000000_000000/0000/tree_145.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//ca6fb3ab2ee1ec6a5dab1a291f11949ad0c956b16ffd311d898b005f/000000_000000/0000/tree_146.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//e48f1d6d4275e574f1806d1a4113191c76601f57b5a9cf07655528f6/000000_000000/0000/tree_147.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//4a06b618b8859845f1446d149f39fb73be24d5d5ea5fbfdc8c459c79/000000_000000/0000/tree_148.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//149672d6e87b7e20c38cd29e43d4847a1f1400661e08338c2c9337c1/000000_000000/0000/tree_149.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//ea3b0b32c24b8030d6286b8abd71ea297c3b05c5bac14921e07db183/000000_000000/0000/tree_150.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//1adaaf55107a066d82147b56f3657cad7b9ec4c886a569950f83e2c6/000000_000000/0000/tree_151.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//a5653f02b1f17e17eac26d1327a1ff05aadf80d07501eaf837a3fb8c/000000_000000/0000/tree_152.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//854ce2428f67dc99dee7e4043c6e28a710cd52bb4629b36327942fe0/000000_000000/0000/tree_153.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5db83fd06a87f0f66311e02934e36a9583c1ae98b60affb358ce012f/000000_000000/0000/tree_154.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//79c639f91f329add1e84a00b8a709def408991d741f6816df9d662e6/000000_000000/0000/tree_155.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//044b4285c77544d0b35b1da63f2c4dc101d0038f2cc357e06380a16e/000000_000000/0000/tree_156.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//f89b7b6ccd54f380cf16a455beb1162620427e171413d99b4a34fbea/000000_000000/0000/tree_157.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//7a945dffb2d14df8dd61b89a78a95da4f66d1398e700fccbcd1a0dfc/000000_000000/0000/tree_158.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//ce7379c9c0fbea3446eb8d2e9df4a622171d877e9c4c3e6d4895aa50/000000_000000/0000/tree_159.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//7ee8c57d74d5971d1dc16efca17b2a29b33485b720f25a0601235161/000000_000000/0000/tree_160.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//8ab5a2e86310557f779dfbb19ad4871335f139eb654f6df624f277a4/000000_000000/0000/tree_161.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//f5049e8dcd4008cef2f575ff9df61f8d4d2942af1d5262c0b1956e39/000000_000000/0000/tree_162.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//3814f4bbeac2e8bdb662df0a59153c5fd0e364633ad69cbced1a58cd/000000_000000/0000/tree_163.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//0fa48e0f14010c71d888f80a3960d4b8421ae4cefd77969750321095/000000_000000/0000/tree_164.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//5c75d0c31bdb08bb277e67fca43f92ccf8a43f1aba034406ae1ef137/000000_000000/0000/tree_165.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//8a67161ef6aec01e7b0bb3a4c8240bc91205a95382966661a3235e39/000000_000000/0000/tree_166.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//135cc9a749fd8beef3cda7d409916129f53e27beb36828762e980f7c/000000_000000/0000/tree_167.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d020474fa24fa51a6f9956b592ebed60b7fbd68c8003d52594c7c7fa/000000_000000/0000/tree_168.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//f8d9585d521919917664e98f8bfdd68e94c27f0c61e872b655a4da00/000000_000000/0000/tree_169.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//31281fbeca05518f8f210fe28b93fa43318d3e853b1b52b42cddf81b/000000_000000/0000/tree_170.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//8195bc91896548b23e7ab004fb3800a7ecad523a0745fb2a47cebc1b/000000_000000/0000/tree_171.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//b5a436abfee748ce7748adda1b7fca7fa3645e3ac4badee3abf933ef/000000_000000/0000/tree_172.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//7b55f6c1082264f2b4fbadd2bdde884b0f48db1aecdb4931967a76bb/000000_000000/0000/tree_173.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//fd3c4c477c3160cd084bd21f92d694ade5ad1df127cbe768598f2fc4/000000_000000/0000/tree_174.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//3d2a47a670eb8498660902c7104ef243ab0063eea89596521b229f3a/000000_000000/0000/tree_175.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//9afc8d18ad252ef5bb6493e183e1fffef6c29f585009fbd3cf823a3a/000000_000000/0000/tree_176.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//c30df43f8b2d1e619e9e1b9dd7acc2ffe62bb29186059700efeee9d1/000000_000000/0000/tree_177.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//8e1d84e4ea7c33caf2f00f3735010947e349f2f1fba0825012f16c33/000000_000000/0000/tree_178.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//bef4c35c3ef00e5d15eced4f76631924c109d50d08df57338df8b0a9/000000_000000/0000/tree_179.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//3c15160a9c26081d76b7d98eb4eb1d6c245f603395cd02354be4c4d4/000000_000000/0000/tree_180.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//b5315e2408ac7adfece7a255fcfb4dee88657cfc6e1b4e3a4981830d/000000_000000/0000/tree_181.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//9a7fa55609f47431cd2aab9bee136ec9f0d0ece1bcf2b68a6b8172ee/000000_000000/0000/tree_182.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//f324ba9a51211d793904688fdce6af8e8dacdec49e18e29431a2e131/000000_000000/0000/tree_183.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//41b11ce3767bb1115cb9825a6aa3922034e4455686a71c8f2de08dd0/000000_000000/0000/tree_184.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//44e3433c54fb90fba2821b539d4cca278e754131cccb28d9e6887e9d/000000_000000/0000/tree_185.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//de52d5317a9d957d0350d181ca85814be0f338340ac7e956c9fac78b/000000_000000/0000/tree_186.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//2358dafc1ce2f16739c9a4fa3ea38c6dceac989ce1ef1d5728dd907a/000000_000000/0000/tree_187.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//957ed3f8773785f3d1686183acb769db9f71305e82087a081d55df92/000000_000000/0000/tree_188.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//96aa295ec6935323b8b2e66de24b0e648b399925e1fc554ae8bea641/000000_000000/0000/tree_189.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//7c15b5459047c81094e701cc566111bb08c3f8cad4e17d24488d9250/000000_000000/0000/tree_190.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//8c4fe146ff4a7db7f7b244cc892162ac53df8651426d22451956ce41/000000_000000/0000/tree_191.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//056116a90d09b3d73172dc7a3ef2715477f039a8b6d9fd1dd14ef53d/000000_000000/0000/tree_192.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//79adc455494f61ccb155e32f05aa0a0c8e67f6fade22eaceac28a920/000000_000000/0000/tree_193.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//4d60404eddf14807cc01a6222f67d8a10ff3c820f89d9336e8b0b4cd/000000_000000/0000/tree_194.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//8ea1ab60ddd2dbea115a0dea13ad93ee9e4908b01c00c3734494068c/000000_000000/0000/tree_195.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//08ebf813f91a545163232bdc5be19307c0aaa93837c27457748ca71c/000000_000000/0000/tree_196.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//19ce584c2bc784265b5f656ecd9cbf639f9d6c0e1c762de71cf56683/000000_000000/0000/tree_197.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//a2f087e272754c6b145c55614e4230c124e81d6966ab841826af304f/000000_000000/0000/tree_198.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//db6894ba65e034521be770b100027500bbe3f7858d10c4d9c0d7617f/000000_000000/0000/tree_199.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//b33688ac9fa11888c1455bc2c824841c72c90b75b71298fc0ffbfce2/000000_000000/0000/tree_200.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//d0fe9952a7c7ea591645d632ad0db345fc05c1e80e21dd08df0e6bea/000000_000000/0000/tree_201.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//1986e0235f44e49d92f20d26585dfd66c2de0361560c268d8060e62d/000000_000000/0000/tree_202.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//899e9d08cf9e6c001af046a2be02b3ac1493719bffe9e98830997401/000000_000000/0000/tree_203.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//501809d8132a8abea75c7e575ee663ca996602c21cb3d0375769507e/000000_000000/0000/tree_204.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//396655298916753105f2ecdab733ed9fd4c3d3935ce5757f5e0626f6/000000_000000/0000/tree_205.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//c25212c0930448c72b5b36e0be49cda2e89afce76b1250e5a2b0018e/000000_000000/0000/tree_206.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//1c037ac95124b1be63966dc7c83d153113c11089bb9a89966eee7a5d/000000_000000/0000/tree_207.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//adccb9454603beb666bf7be22272ab1f815701025a1128e0f51b11b0/000000_000000/0000/tree_208.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//9edad097954e66f4c5b5e69485987ccc28572c5407d63928aa4d3df6/000000_000000/0000/tree_209.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//f37b222d4e26b43bfe7c66234d56bac77cdf2e69f9665aaf554dc820/000000_000000/0000/tree_210.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//37ebda5beec3c0825bff7525a825c2ae53984dd8a2dd40d87f6d393b/000000_000000/0000/tree_211.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//2125194cf70f1bad17e7dbdae8b0db58a3ecde93e4e8bc528c18f935/000000_000000/0000/tree_212.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//37e99753013a1706de74d2f9ebcd8db2e37b5df2ba01eae383f899da/000000_000000/0000/tree_213.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//f7af5d114a000e2a85fb04d6d8249a07c292d33582ceb205be2f501a/000000_000000/0000/tree_214.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//02aec2d15579f0d88fba7f4cb3195105d1b8a9c7ff8f9be99922d1a6/000000_000000/0000/tree_215.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//4a257222025632357fbc71fba69be8da36736eb7effd5c30297c71b8/000000_000000/0000/tree_216.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//97a96c25116cbb5f1bd50dcbaa7d875d3a98139fa8e2d62b0afe671c/000000_000000/0000/tree_217.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//713742c081e712eb2ba461fa3c56d7aa563cd94e51eee2d8305f5983/000000_000000/0000/tree_218.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNU_M-50_LHEZpT_400-inf_TuneCP5_13TeV-amcnloFXFX-pythia8//b0bc791147bcd34e17165d49ec42b26963b79aa0a0652cd207434f3e/000000_000000/0000/tree_219.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/Z2JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/Z2JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..746c2166f --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/Z2JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8/3d319d50ce4a36d42eeadee89c931e375e894c8d5379781abea2da68/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNu_M-50_LHEZpT_150-250_TuneCP5_13TeV-amcnloFXFX-pythia8/80fe4d9d144b3027e1e0d846df636721ca689cf9c2f6e6f3c999f6dc/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..3291dc480 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,11 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//5e3ba6df5991609eaf81feacdde7a14780f8d23f844e31e4f50873df/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//9a8b0b499a41c13f3768949fac1e0e9089b7a67c4f1807ac4480199f/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//2ed2250dc7287aae2746e7fb2873d35984391c8a1c559c0821531808/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//7f12e972da420aaccf38f5dc985b7d611256da63d8ee03902cb1bb0d/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//f5931d5333adbf1a2c01de9258aa670a15a375c38a01b8c716bddcad/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//08dc146e00acddc4566199c1f9ca579f34a8a55f8f37de0832f5f89e/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//6d78c98064b61756d5d1f9bfb74cdeac1fe3f32421f7d04ed92df69f/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//fa0fbf57e7034b1a99c9ed123695ede77823ecb853f122684d3051ef/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//e2dfcb96850f63ae9e242d2f7a14075dba36b30f5e100ca99ce69431/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//16e82efd5a16f9f248a5e51968e982353cb35c3ae0b6762f4cb7958a/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11-NLO/Z2JetsToNuNu_M-50_LHEZpT_250-400_TuneCP5_13TeV-amcnloFXFX-pythia8//36fe1a811e3fb68dcbe9f54c9644ac01410fbff9edbe00a090009d51/000000_000000/0000/tree_10.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/Z2JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/Z2JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt new file mode 100644 index 000000000..9ce1873fa --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/Z2JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8/fea716a534c730a0a3531e786727a8d978d4820f2be0fb33f3def8c7/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/Z2JetsToNuNu_M-50_LHEZpT_50-150_TuneCP5_13TeV-amcnloFXFX-pythia8/4f1022ac8e84721516a74ac705451bdba27fcceef425bbea9ae09946/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZBJetsToNuNu_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZBJetsToNuNu_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..114130db7 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZBJetsToNuNu_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1,13 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZBJetsToNuNu_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/b04937affe07e781f12f8a4813eb996111139fc31c8dd1ded5fd981e/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZBJetsToNuNu_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/510bd0749e9dda5fe9ae24a315aac6adb570550ae3b17725c3883328/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZBJetsToNuNu_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/27cb544989b41bc86576b915431759afbb2525e6f0a0c0d5cdcd4d4d/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZBJetsToNuNu_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/60479c07e39448b36abb6316986b881440c20d2a020b878b1761a4ef/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZBJetsToNuNu_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/3df9cfb9af82d8d901dd765b861f79f358c9798d74ecdf3e9a3eca91/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZBJetsToNuNu_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/27e0cf50044ed05642185727eb2c339eeb0dc44a85b03aad634a573a/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZBJetsToNuNu_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/e9181fcb354beedb93b4798a59da1b2c82f894c268ea00e9fb6a5157/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZBJetsToNuNu_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/27bc556f04d259d1db71030cb76efa2810315e128276e9d29a97fc54/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZBJetsToNuNu_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/5e95afc54cd1f7c319225bb3cb3020a77ba7bbc496776819e2390d19/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZBJetsToNuNu_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/2174043e98f287915edcb5278f312a43878ad04c5d0040657140880b/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZBJetsToNuNu_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/4a52edaaac6748ea4ecb3157943f1acbfb878c95a37a54755266b3bf/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZBJetsToNuNu_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/f2daf96287b6390bb5418d81a0e251932c3123d74b9101901d957eb2/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZBJetsToNuNu_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/9dad6f0a808277b3d9498f57271abf2311300a7a13a69162b263a278/000000_000000/0000/tree_12.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZBJetsToNuNu_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZBJetsToNuNu_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..ec4ccdbf3 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZBJetsToNuNu_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1,11 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZBJetsToNuNu_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/9a18ffa675bccfd5703b6eb2276f84eb53d7ab7d4ae26fa14e27250e/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZBJetsToNuNu_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/0efa7c5d27b88549d5ca1648d0d3e5831bdf376cc206ff2042bd0a6c/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZBJetsToNuNu_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/85aad91e9cf54504fd192b9d4b23f8d6246507ec5f29456c4a655adc/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZBJetsToNuNu_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/c56ff3e49b4896dc2e012ec02220ac5951fa94501532dc26b21ce727/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZBJetsToNuNu_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/ac8e094f320ef9b053c71c8bb318a1c168a86eee7bbe3204d8229026/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZBJetsToNuNu_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/9db96b618d9ad6b330ade3f9c5ef1a54e48d9ef45d21394199df2f87/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZBJetsToNuNu_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/7f90709f7768b867f5fd46e7911ec872a344497676aa8adc872a86db/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZBJetsToNuNu_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/45ad598056aecab28166bcd19b90f5e091ff3e79ad4fb9b157c60afb/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZBJetsToNuNu_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/fa7a2627351197557d3b07a16a6aee1d8666f24d2900c0ad6eaa1e6c/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZBJetsToNuNu_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/76567abf5971292f6f6c5a5c844a40f02c8ee2d077b4141db35186a4/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZBJetsToNuNu_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/66d678beadb012ad3c75d2602fc738345a88a30d1abb6a029c4462fd/000000_000000/0000/tree_10.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..011558c41 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,5 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/c1e84caed1263f5265e9d3fed7d68f4ab7a58c16a8322c00bda74b4f/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/4d0932406c09893773ffeda1fd14259411732e848313de0d329da1c2/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/036f6be06d50ce64d3c919fa64ba3b079132d72869400040efc9a43b/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/e00334bcd6b0b2bc3463da1795f2a52b13071cd779ea3ad375ff6ece/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/035a08b6f7a37762c89e6587c65fb760f25d05d6c54fb3c988e6d208/000000_000000/0000/tree_4.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..a0ef63391 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,7 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/3f9e3fbe6a63eb0bf915c34a1127eb4ebfd900727b6dae87642e9510/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/3a969cf3461d6818ec853ca9710e8c60dc1cd9b498e6dba9beea1812/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/d561bc33495db481e7bcacd7a4c30cf360fecaadb1f480446608569b/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/44fe8a0b99a9e0176fd6be3fa980afcbc161874466322afe2cdd0dff/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/152f94c59ec33c8a9db2156ae6c03efa166d31f234352e9f799cd644/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/686e9a2ff4c40efc2f9519992bdf8c40f976f2e7761294395cd95cd3/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/3656bdb348b9bee9f2775b9beb4b0a8f15092dac1bd556e0a8be89c9/000000_000000/0000/tree_6.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..058ad04c5 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/55e812c618f89589bd13d2769bada2031656ebe739c260dc6a394e78/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/9d9c91277ef3b7e78f5916780e3bdc534c4a0d81f97afe762ab1c03f/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_BGenFilter_Zpt-100to200_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/1da9bd85e436f3c53e06f09fd63cbd905fc6717d90d6533e2aa0688c/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt new file mode 100644 index 000000000..129d78bcf --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/32eabf7a9ef086142cb8695a838a336ae109290de79ec61d247d6075/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/f2b36f313044590d6dc01024f778a7e2983be3f658ba46986632689d/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_BGenFilter_Zpt-200toInf_TuneCP5_13TeV-madgraphMLM-pythia8_newgridpack/b8f0ed4ece873678c1ad4686e737b6ae9c390ceca0e2bd75a0a608be/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt new file mode 100644 index 000000000..421a0c186 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZJetsToNuNu_HT-100To200_13TeV-madgraph.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-100To200_13TeV-madgraph/05dc06b860dec73fe103cef4e4f21dc9a34799c3140faf80b3a85b16/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-100To200_13TeV-madgraph/5fd8d00d3d8bd9c86748876f3cf2ec70243d203c25e3470ae9ae7a7b/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt new file mode 100644 index 000000000..3568ea50e --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph.txt @@ -0,0 +1,3 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph/33c20d0124281bcb57fd57809d1101fcfb5e3e8b16612cab6fa8224b/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph/5ac8db1d875a9f1dcb56618bf81fc9540d713c255d81775341c55f40/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-1200To2500_13TeV-madgraph/b206055fbd3cca4bbca17f3fefe9606e39262e35e281f8647914134e/000000_000000/0000/tree_2.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt new file mode 100644 index 000000000..a43a1f30d --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZJetsToNuNu_HT-200To400_13TeV-madgraph.txt @@ -0,0 +1,14 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph/f2015afe4104729ab28f9a4ffd43309602ae4265be8bb3f3078a420e/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph/ec0fa887200de99561f24c26464a191e967551c08907be5301c1f1b5/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph/552130e8dfb45ff20494e3601d4738f7885540cdf05eba513aa053c7/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph/8dad30bdd5268a9b2a17420a8ff272e4f546f4895529ce6909393c82/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph/a5b7d1281b1d18bc49d8de524edcd0301d2868ad3f6f21183173caad/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph/aac7da4b317bd8948db43fc250d97d3024a1ccf5815af51d9e9e9f0d/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph/42721d03db48de7547497f53a921a68bf03e8cfe4ac019345f549dae/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph/831b4811d52643dabb4665d66845978ec3544feaacfddb3edcc94762/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph/3ebf647856a29efba3894817491ef76f795dcee6cc22e33884013a5a/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph/0f57c4ca2a5793b8548c712386ad993efda1674b3d7578aff4884769/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph/cae673c3acf16e8328dd9e9c06cd60b3a72ad9d83e283c9d6e8a53f6/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph/5190482349af93db9e4ae56f67bfb98ddf32f23bc3690d4155850ba6/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph/79b841be2ffe52d93647c888c7ae7bebf5886c19222d0fd93157dbea/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-200To400_13TeV-madgraph/05a502ff4a0e4fed2a644b9f9cbca7d6d47346e30875841dcd04f002/000000_000000/0000/tree_13.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt new file mode 100644 index 000000000..b9280c2f2 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-2500ToInf_13TeV-madgraph/0a07af73ced9d16b16ec59eddb8d117a5e5ccaf5b5156b281afeb7ac/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt new file mode 100644 index 000000000..143e03082 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZJetsToNuNu_HT-400To600_13TeV-madgraph.txt @@ -0,0 +1,13 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph/073ecab5ed702a8da5f4c1fefe29d57c60c567b042eeb4ed19a0f6e1/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph/6779464a697712b7458df097254eb0e635b44874077dcc97c3242355/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph/5343d6b1e0cba916ef2cb59fac5a502596be386e70766a2ab070fc8a/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph/ec91ab63309554875dc97cf5d1afff22b75007f44b2b165e07d5fdf8/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph/69afc0b31a6b83bd83df73ecc052222b2d760de7f842312d02d6b57f/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph/efd0f6f44ae835b71df8fc0431744297d4defae38f3950347cf8ba7d/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph/ecd9440bd014603908af81530f7372a60ee9b8a0e750f75f85956398/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph/9e050816718cf3b5f3a1ca8c8ed1accdad2bb62fffa976e7d72a0b1e/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph/b0e2f1cbdcb452640cfda006e120fa9faa615db053c20e2e76843045/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph/fb134fb01748f8a1ea6913b1ce36f7ee8743173af27d5cf4679446c6/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph/652bf607bf31fc4afcbd36dbb8e8a9bd03c862a9a506a65e406e5ccf/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph/fd268415ade1ea91349929b5494d987ba5a2013406b0d18c5e98be49/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-400To600_13TeV-madgraph/1e042525dfb66176c1066bd25df2f6932a34294e3851aae28ef1c3f0/000000_000000/0000/tree_12.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt new file mode 100644 index 000000000..326424a28 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZJetsToNuNu_HT-600To800_13TeV-madgraph.txt @@ -0,0 +1,12 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-600To800_13TeV-madgraph/0af5fb18a244b149023e3b72d0dbea1bf0a38800e06906c15f4c7dc6/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-600To800_13TeV-madgraph/358c9a58ff3734b12999b6d0a31a0582cea7cdeda2531bcb5b08291f/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-600To800_13TeV-madgraph/44d998386aefa391e4b5e7180281758acebfbc023800364b8037e72b/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-600To800_13TeV-madgraph/4241d4c12ab987d5b99f7ff52efcad4f2b04c19b6a5899b7e76bc243/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-600To800_13TeV-madgraph/7ad3f459b97b376191d4679a8fe4d3d044cc8b433e4a0f901de73571/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-600To800_13TeV-madgraph/e09e0e9f31186df448be71a989aeabd92e196561480dee9098ade2d3/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-600To800_13TeV-madgraph/e99623a6d40a5cbc10539450e6528cd39f8e3982b7a0f15786eddb6e/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-600To800_13TeV-madgraph/1ce1961e46e989abc043c4a81c6a44fae2052e0ddaa758185f12a49d/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-600To800_13TeV-madgraph/4708a97f483af2da6b776e8f88b00be24a2d03d8ff1dc8dce78b7f65/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-600To800_13TeV-madgraph/9be834856cc1674ac376cff82b75ba8b08e5ef9bd899226022e567ad/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-600To800_13TeV-madgraph/f61e8a0a1eb579be34e58f0c1b5cf8658eff92b275bfbae4ca51eaed/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-600To800_13TeV-madgraph/a204211f71a98040ec0fafe5012ccdbc494942d5ff056ca0b1462eac/000000_000000/0000/tree_11.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt new file mode 100644 index 000000000..61c59e07a --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZJetsToNuNu_HT-800To1200_13TeV-madgraph.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-800To1200_13TeV-madgraph/df4b433311c202eb42f924c6c0ddda08b25e963b5628e39fbf5fb058/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZJetsToNuNu_HT-800To1200_13TeV-madgraph/af37a0cb2f6a90c9d7aacc75706318ac6420670c9ee4587129a36246/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..11401be24 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,16 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/9b5b5e3aec72f8ecab4cce4f04e0e24d6edc84a2d83501c9005d68c8/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/4ca2d5a10d66cd11abcdd96f12058b68f52d4ae81bf3ac1c741f177d/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/c5fc877c50b35d4318834a328a49ac148ac1925e270984f65bb40862/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/263bc38ee08239d5466df90e164975d9f791bc964f752ca12746a8ad/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/c7bc11cfa90d4c81f54b52f960be7698769f735e5557c975811f38a6/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/76c715ab7604b428db66585b21aa77cc6fb1e1369f9a0e4f38691341/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/b64344d35245ab0250a24e851f84adb6139f1bd19a8dc9aae2ea5e5a/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/d13ab11cf26aad482eede962f91bb8b0ed423050bf551e6d1b3d0d59/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/f31318d23b92c99d29ddfdf3033b64c294de6a69c2c950a54dda9e55/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/1277163849576df9a10ce26f3aa8e12a0f5a6f9ecaea8045219c33e9/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/1ed05f735c05f2382e54cd8115724baebacca584a76456905f3e7729/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/816968daf1ffd616ab22e7590dbe8d8b12dc152ac87175b1fc5e4d67/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/e917cf6ee87b9f64b2290b5bdc6dfda28f6fb9981a936d83df17f406/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/cd24f758a47e35e3cf808b1776454a4c3f489f943b0e900b3b4dd520/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/8ab0bc7561a384d68d85d2aa8d33ee64d5744c03ab72b7c9d48631d1/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/f227c620c775bd6d8e6c70e635677db0265a1fc4a4c16d2201a729d1/000000_000000/0000/tree_15.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8.txt new file mode 100644 index 000000000..d7e300532 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8.txt @@ -0,0 +1,44 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/603e64ab55b9de31bcdd5056694ea445b157ff51f0ddc2e709354f72/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/9a6d0b240bf44541c7774f617afbcb6561afa9f8f60c327d4160ce0a/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/e297dc1cbff779b306a09b8d502d3efa1d36eb5d6af33f69805cc21b/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/fdbb1fd47dabc0775eebdfdc86017513b498acd6fa25f2f390ddbdb2/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/ddfd1c7465dfe7c35c06a3927045b13c628c3490df77791b831cc3b6/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/af29b1c57ea811ae0947369edd82874d7c0529c7682804077c25c62f/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/171b8e60b740b93173c1fc0c01ead6a9a7291e6ca58f1f8663594dee/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/f3b1146c0ad6f644f07e3baf4dc9e04c854f53b314dc85385e0f390f/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/688b4bff03284a1d66299479dfc227de3ef816ea8ca9e55815c79d33/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/5b5370b46f70791d2df5ace3a2c228b3a6741dae8b194c1b89b932fb/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/d86df58ead9beaf808afd780ee917a37b03e6ee9cf7750c81e060882/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/80b1a679673ad02dd97d0ff28b24be8bcaa940e8ba192f6a05421a21/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/b1390271e576f29d99a6c70979201fe219dfd1b8eab03f8140ef1417/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/504b4f0b2e10d2e559ed07a658bfa5ba01cf0cee78ad3b6ec840bea3/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/bb0b002f5f5d2c7b8eda829519c3bd25cc6cd01e0420660b7faa2697/000000_000000/0000/tree_14.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/6a45ef75991d1a0c215120866bbecc09ced3a582ca39590165f11f6a/000000_000000/0000/tree_15.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/5fc1fc684e083ddbc05ccdc9cf5c71a1f417d893bee5f1ccd3137252/000000_000000/0000/tree_16.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/ffdf72cfe65bdb7f87c8e28d3ffa9c612cea1b76768513f9b5c8b814/000000_000000/0000/tree_17.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/c1c8b55f22f72584e4fb5a446a8df197f02da390ebd4d25bf64fce66/000000_000000/0000/tree_18.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/51aa6293c2efdcb4935117bc3803f90d560bd24826dcf63d5042d537/000000_000000/0000/tree_19.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/a4afc49fbffcbb2361478817e12a9a2a2bd34d433374cdfcd7235803/000000_000000/0000/tree_20.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/3e0f53266f45a0824346e206b72ac9e274015b58b0b25ec619c9ea14/000000_000000/0000/tree_21.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/c141374037a5fd862c0ba7a3adaf8e5c149b6d8c437f097657551d4e/000000_000000/0000/tree_22.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/9fda548a3df797017c2ea03ca63114fac35bf673a4ea5e351232f8fa/000000_000000/0000/tree_23.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/e4ce047833c5961047c82e22731881e5e199c14a9cdcc12408cfd467/000000_000000/0000/tree_24.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/9d81d5f45e1490acdaa25f41a861ce1243a36e1ed9324e3afae86df5/000000_000000/0000/tree_25.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/5905cf57b04927fa206de8b1e85c9d6fec1a09b4fe0492428da8f3db/000000_000000/0000/tree_26.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/421d0a2560857f7acaddf1c7710d93df1ea544f7d470674954267704/000000_000000/0000/tree_27.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/da0985d6b3d78a3ccdee4972473823b06a0706afc97dede19f932f19/000000_000000/0000/tree_28.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/84b7434804dea7987296c192cfddf0208e609de843154b10b5f4c1f7/000000_000000/0000/tree_29.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/9daf6f972ca87f749e02637dd52308b998a0655c03896f50fc2bce25/000000_000000/0000/tree_30.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/62603dd653bffefeb51dbf775bd52bb87dae56b79d684c57152714a8/000000_000000/0000/tree_31.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/182eb6a988043f53dacfe36068cbe8c1a56c065a7616ba56c57357c8/000000_000000/0000/tree_32.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/14994949e6a986339c9128aaa1b7b6a749b8f8eea4d6968f863d20f3/000000_000000/0000/tree_33.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/1f7d10f456d79d40dcaf046371dd11dc73fc3cb20117c4579e694f38/000000_000000/0000/tree_34.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/e167dd924d7fc7ee6af4a41c578f4530d7974419faf8f8a79b3234db/000000_000000/0000/tree_35.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/d6b068912130d7023be648e9ecf92e2de696c6692af1f9204de4144a/000000_000000/0000/tree_36.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/f640d7f6ef3ffe2d7ade2036f2dd0f36574cfd5a7bd6d366052e50bb/000000_000000/0000/tree_37.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/48ba0b2b75dc021f44a482459816115f56736d55866c8006e93d5fde/000000_000000/0000/tree_38.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/8331ba3ebfd05d3593f40fa45a1630692986a0c9bfe5a50c1965e58d/000000_000000/0000/tree_39.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/e761a9eb012304c89915caa5f94ce4404d2ca6358cd555e5356a5439/000000_000000/0000/tree_40.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/80622ce61776d5dfb7628a651391f63756e0ca28a9fd9ac191c87632/000000_000000/0000/tree_41.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/30a33b989e3a1796293519a92fa9be9c237105ad2922818fc5d2cfde/000000_000000/0000/tree_42.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo2Q2Nu_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/b540a438d624ba1a8209374075788e528f8859c21a98ce983c5fcb23/000000_000000/0000/tree_43.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZZTo4L_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZZTo4L_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..4d5fb6165 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZZTo4L_13TeV_powheg_pythia8.txt @@ -0,0 +1,2 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo4L_13TeV_powheg_pythia8/e7facd2560818bbdc477dc260db86aeb2b262cec027a1c3b390ab47a/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZTo4L_13TeV_powheg_pythia8/afc418869da40eda2da7e8948f276dbdb28b501e649d635ff15204ee/000000_000000/0000/tree_1.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZZ_TuneCP5_13TeV-pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZZ_TuneCP5_13TeV-pythia8.txt new file mode 100644 index 000000000..eb67284bf --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ZZ_TuneCP5_13TeV-pythia8.txt @@ -0,0 +1 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ZZ_TuneCP5_13TeV-pythia8/7621f70d03ed28e0d3f78eb4fc2fead2275323113895ce9a51e83bd4/000000_000000/0000/tree_0.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..1ffab3c05 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,5 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/de34b708eb7813b03171092bdd969954a8942f393b4edd609103944a/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/d438abf3a91db801d953eb15767ce47378de6797419ba0c38c05a9d2/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/f2bc38363f312af266e3c364bd0ff91bfb9679f3570f084b07457bc5/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/c55dbf572fa02a1508481a60cd79b7693ee037e2aafe10506e753a3c/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/2eb1ce63bed5f3fb43820aeca79ffdc6cb2f09b5269e952124867cbd/000000_000000/0000/tree_4.root \ No newline at end of file diff --git a/samples/VHbbPostNano2017_V11/merged_Zvv2017/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt new file mode 100644 index 000000000..3fb9fb130 --- /dev/null +++ b/samples/VHbbPostNano2017_V11/merged_Zvv2017/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8.txt @@ -0,0 +1,15 @@ +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/6e8f44d0d2bfbadaeea709e3946422b50263a075403ce7dfab313ae1/000000_000000/0000/tree_0.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/5845daa4429d23b1496f14529788fcf361df7339b8e7c62ffcddc373/000000_000000/0000/tree_1.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/3f2816b89e93f2bd89c9493dcc3c043d95b07b819974cdfa82d89db7/000000_000000/0000/tree_2.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/1de7c438b3be10ca318c0c048a3e14d32bc8514a65de959054fca331/000000_000000/0000/tree_3.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/fd2322f65f5763020c4e1372fba100ac19cf5edbbedeb97f38b26117/000000_000000/0000/tree_4.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/2dcccb0a07af15977bb485bc7475ef6f6f8497cd944366c6bc102056/000000_000000/0000/tree_5.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/b50fedd1d853af209d99a657fc5842847641f8b27aa7a73c5ba84f0b/000000_000000/0000/tree_6.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/40c78831802f65693c98455bf91de64d2eb8d9d5e623c9bba693bf50/000000_000000/0000/tree_7.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/9c78402dcc5cab990b95eaf6da74a59b6e6c1d472440d5b2b0dd9773/000000_000000/0000/tree_8.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/9f404a918236a1581dcc628d6efc13c77531052c931620588816d0a5/000000_000000/0000/tree_9.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/b619358fafb5cb8522a49763589a95955cadbfee893b0bc60c4c035e/000000_000000/0000/tree_10.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/115f3e2089facf75431847935c156bfada9c0a55ffbb2b155ef97cdb/000000_000000/0000/tree_11.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/aa5085ac82c2404421ae79b997b9833cd8dde922246e4214804fffc1/000000_000000/0000/tree_12.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/ec483cb67b0a33c5b99d26521de6738824784648898e4f77beacf333/000000_000000/0000/tree_13.root +/store/group/phys_higgs/hbb/ntuples/VHbbPostNano/2017/V11/ggZH_HToBB_ZToNuNu_M125_13TeV_powheg_pythia8/ca14136cd486166e845ec0c707b46c089a6dc91a1378157d9c5786f0/000000_000000/0000/tree_14.root \ No newline at end of file